From e0c045cdfa47e469afe0ac87c0debd04f301fa07 Mon Sep 17 00:00:00 2001 From: Spencer Ofwiti Date: Tue, 11 May 2021 14:34:23 +0300 Subject: [PATCH] Add documentation to the helpers module. --- .../classes/CustomErrorStateMatcher.html | 50 ++- docs/compodoc/classes/CustomValidator.html | 57 ++- docs/compodoc/classes/HttpError.html | 118 ++++-- docs/compodoc/coverage.html | 196 +++++----- .../images/coverage-badge-documentation.svg | 6 +- .../injectables/GlobalErrorHandler.html | 160 ++++++-- .../interceptors/MockBackendInterceptor.html | 360 ++++++++++-------- docs/compodoc/js/search/search_index.js | 4 +- docs/compodoc/miscellaneous/functions.html | 171 +++++---- docs/compodoc/miscellaneous/variables.html | 60 +++ docs/typedoc/assets/js/search.js | 2 +- ...state_matcher.customerrorstatematcher.html | 26 +- ...pers_custom_validator.customvalidator.html | 31 +- ...obal_error_handler.globalerrorhandler.html | 58 ++- ...elpers_global_error_handler.httperror.html | 27 +- ...s_mock_backend.mockbackendinterceptor.html | 27 +- .../modules/app__helpers_array_sum.html | 18 +- .../modules/app__helpers_clipboard_copy.html | 18 +- .../modules/app__helpers_export_csv.html | 17 +- .../modules/app__helpers_http_getter.html | 7 +- .../modules/app__helpers_mock_backend.html | 11 +- .../modules/app__helpers_read_csv.html | 11 +- .../app__helpers_schema_validation.html | 20 +- src/app/_helpers/array-sum.ts | 13 + src/app/_helpers/clipboard-copy.ts | 13 + .../custom-error-state-matcher.spec.ts | 1 + .../_helpers/custom-error-state-matcher.ts | 15 +- src/app/_helpers/custom.validator.spec.ts | 1 + src/app/_helpers/custom.validator.ts | 16 + src/app/_helpers/export-csv.ts | 16 +- src/app/_helpers/global-error-handler.spec.ts | 3 +- src/app/_helpers/global-error-handler.ts | 83 +++- src/app/_helpers/http-getter.ts | 10 +- src/app/_helpers/index.ts | 10 +- src/app/_helpers/mock-backend.ts | 326 +++++++++------- src/app/_helpers/read-csv.ts | 14 + src/app/_helpers/schema-validation.ts | 12 + 37 files changed, 1403 insertions(+), 585 deletions(-) diff --git a/docs/compodoc/classes/CustomErrorStateMatcher.html b/docs/compodoc/classes/CustomErrorStateMatcher.html index f368d4a..9b06c8b 100644 --- a/docs/compodoc/classes/CustomErrorStateMatcher.html +++ b/docs/compodoc/classes/CustomErrorStateMatcher.html @@ -63,6 +63,13 @@ src/app/_helpers/custom-error-state-matcher.ts

+

+

Description

+

+

+

Custom provider that defines how form controls behave with regards to displaying error messages.

+ +

@@ -72,6 +79,11 @@ ErrorStateMatcher

+

+

Example

+

+
+

Index

@@ -130,14 +142,16 @@ - + +

Checks whether an invalid input has been made and an error should be made.

+
Parameters : @@ -147,6 +161,7 @@ Name Type Optional + Description @@ -161,6 +176,12 @@ + +
    +
  • Tracks the value and validation status of an individual form control.
  • +
+ + form @@ -173,6 +194,12 @@ + +
    +
  • Binding of an existing FormGroup to a DOM element.
  • +
+ + @@ -184,7 +211,8 @@
- +

true - If an invalid input has been made to the form control.

+
@@ -200,10 +228,22 @@
-
import {ErrorStateMatcher} from '@angular/material/core';
-import {FormControl, FormGroupDirective, NgForm} from '@angular/forms';
+        
import {FormControl, FormGroupDirective, NgForm} from '@angular/forms';
+import {ErrorStateMatcher} from '@angular/material/core';
 
+/**
+ * Custom provider that defines how form controls behave with regards to displaying error messages.
+ *
+ * @implements ErrorStateMatcher
+ */
 export class CustomErrorStateMatcher implements ErrorStateMatcher{
+  /**
+   * Checks whether an invalid input has been made and an error should be made.
+   *
+   * @param control - Tracks the value and validation status of an individual form control.
+   * @param form - Binding of an existing FormGroup to a DOM element.
+   * @returns true - If an invalid input has been made to the form control.
+   */
   isErrorState(control: FormControl | null, form: FormGroupDirective | NgForm | null): boolean {
     const isSubmitted: boolean = form && form.submitted;
     return !!(control && control.invalid && (control.dirty || control.touched || isSubmitted));
diff --git a/docs/compodoc/classes/CustomValidator.html b/docs/compodoc/classes/CustomValidator.html
index 7a416b8..e89687b 100644
--- a/docs/compodoc/classes/CustomValidator.html
+++ b/docs/compodoc/classes/CustomValidator.html
@@ -63,6 +63,13 @@
             src/app/_helpers/custom.validator.ts
         

+

+

Description

+

+

+

Provides methods to perform custom validation to form inputs.

+ +

@@ -131,14 +138,16 @@ - + +

Sets errors to the confirm password input field if it does not match with the value in the password input field.

+
Parameters : @@ -148,6 +157,7 @@ Name Type Optional + Description @@ -162,6 +172,12 @@ + +
    +
  • The control object of the form being validated.
  • +
+ + @@ -203,14 +219,16 @@ - + +

Sets errors to a form field if it does not match with the regular expression given.

+
Parameters : @@ -220,6 +238,7 @@ Name Type Optional + Description @@ -234,6 +253,12 @@ + +
    +
  • The regular expression to match with the form field.
  • +
+ + error @@ -246,6 +271,12 @@ + +
    +
  • Defines the map of errors to return from failed validation checks.
  • +
+ + @@ -257,7 +288,8 @@
- +

The map of errors returned from failed validation checks.

+
@@ -275,7 +307,15 @@
import {AbstractControl, ValidationErrors} from '@angular/forms';
 
+/**
+ * Provides methods to perform custom validation to form inputs.
+ */
 export class CustomValidator {
+  /**
+   * Sets errors to the confirm password input field if it does not match with the value in the password input field.
+   *
+   * @param control - The control object of the form being validated.
+   */
   static passwordMatchValidator(control: AbstractControl): void {
     const password: string = control.get('password').value;
     const confirmPassword: string = control.get('confirmPassword').value;
@@ -284,6 +324,13 @@ export class CustomValidator {
     }
   }
 
+  /**
+   * Sets errors to a form field if it does not match with the regular expression given.
+   *
+   * @param regex - The regular expression to match with the form field.
+   * @param error - Defines the map of errors to return from failed validation checks.
+   * @returns The map of errors returned from failed validation checks.
+   */
   static patternValidator(regex: RegExp, error: ValidationErrors): ValidationErrors | null {
     return (control: AbstractControl): { [key: string]: any } => {
       if (!control.value) {
diff --git a/docs/compodoc/classes/HttpError.html b/docs/compodoc/classes/HttpError.html
index b3789ee..5bdb86b 100644
--- a/docs/compodoc/classes/HttpError.html
+++ b/docs/compodoc/classes/HttpError.html
@@ -63,6 +63,13 @@
             src/app/_helpers/global-error-handler.ts
         

+

+

Description

+

+

+

A generalized http response error.

+ +

Extends

@@ -72,6 +79,11 @@

+

+

Example

+

+
+

Index

@@ -113,12 +125,14 @@ - + +

Initialize the HttpError class.

+
Parameters : @@ -127,6 +141,7 @@ + @@ -141,6 +156,12 @@ No + @@ -153,6 +174,12 @@ No +
Name Type OptionalDescription
+
    +
  • The message given by the error.
  • +
+
+
status +
    +
  • The status code given by the error.
  • +
+
+
@@ -189,10 +216,16 @@ - + + + +

The error's status code.

+
+ + @@ -208,14 +241,28 @@
-
import {ErrorHandler, Injectable} from '@angular/core';
-import {LoggingService} from '@app/_services/logging.service';
-import {HttpErrorResponse} from '@angular/common/http';
+        
import {HttpErrorResponse} from '@angular/common/http';
+import {ErrorHandler, Injectable} from '@angular/core';
 import {Router} from '@angular/router';
 
-// A generalized http response error
+// Application imports
+import {LoggingService} from '@app/_services/logging.service';
+
+/**
+ * A generalized http response error.
+ *
+ * @extends Error
+ */
 export class HttpError extends Error {
+  /** The error's status code. */
   public status: number;
+
+  /**
+   * Initialize the HttpError class.
+   *
+   * @param message - The message given by the error.
+   * @param status - The status code given by the error.
+   */
   constructor(message: string, status: number) {
     super(message);
     this.status = status;
@@ -223,10 +270,25 @@ export class HttpError extends Error {
   }
 }
 
+/**
+ * Provides a hook for centralized exception handling.
+ *
+ * @extends ErrorHandler
+ */
 @Injectable()
 export class GlobalErrorHandler extends ErrorHandler {
+  /**
+   * An array of sentence sections that denote warnings.
+   * @private
+   */
   private sentencesForWarningLogging: Array<string> = [];
 
+  /**
+   * Initialization of the Global Error Handler.
+   *
+   * @param loggingService - A service that provides logging capabilities.
+   * @param router - A service that provides navigation among views and URL manipulation capabilities.
+   */
   constructor(
     private loggingService: LoggingService,
     private router: Router
@@ -234,6 +296,11 @@ export class GlobalErrorHandler extends ErrorHandler {
     super();
   }
 
+  /**
+   * Handles different types of errors.
+   *
+   * @param error - An error objects thrown when a runtime errors occurs.
+   */
   handleError(error: Error): void {
     this.logError(error);
     const message: string = error.message ? error.message : error.toString();
@@ -254,24 +321,11 @@ export class GlobalErrorHandler extends ErrorHandler {
     throw error;
   }
 
-  logError(error: any): void {
-    const route: string = this.router.url;
-    if (error instanceof HttpErrorResponse) {
-      this.loggingService.sendErrorLevelMessage(
-        `There was an HTTP error on route ${route}.\n${error.message}.\nStatus code: ${(error as HttpErrorResponse).status}`,
-        this, {error});
-    } else if (error instanceof TypeError) {
-      this.loggingService.sendErrorLevelMessage(`There was a Type error on route ${route}.\n${error.message}`, this, {error});
-    } else if (error instanceof Error) {
-      this.loggingService.sendErrorLevelMessage(`There was a general error on route ${route}.\n${error.message}`, this, {error});
-    } else {
-      this.loggingService.sendErrorLevelMessage(`Nobody threw an error but something happened on route ${route}!`, this, {error});
-    }
-  }
-
   /**
+   * Checks if an error is of type warning.
    *
-   * @param errorTraceString
+   * @param errorTraceString - A description of the error and it's stack trace.
+   * @returns true - If the error is of type warning.
    * @private
    */
   private isWarning(errorTraceString: string): boolean {
@@ -288,6 +342,26 @@ export class GlobalErrorHandler extends ErrorHandler {
 
     return isWarning;
   }
+
+  /**
+   * Write appropriate logs according to the type of error.
+   *
+   * @param error - An error objects thrown when a runtime errors occurs.
+   */
+  logError(error: any): void {
+    const route: string = this.router.url;
+    if (error instanceof HttpErrorResponse) {
+      this.loggingService.sendErrorLevelMessage(
+        `There was an HTTP error on route ${route}.\n${error.message}.\nStatus code: ${(error as HttpErrorResponse).status}`,
+        this, {error});
+    } else if (error instanceof TypeError) {
+      this.loggingService.sendErrorLevelMessage(`There was a Type error on route ${route}.\n${error.message}`, this, {error});
+    } else if (error instanceof Error) {
+      this.loggingService.sendErrorLevelMessage(`There was a general error on route ${route}.\n${error.message}`, this, {error});
+    } else {
+      this.loggingService.sendErrorLevelMessage(`Nobody threw an error but something happened on route ${route}!`, this, {error});
+    }
+  }
 }
 
diff --git a/docs/compodoc/coverage.html b/docs/compodoc/coverage.html index 0d42668..b60384c 100644 --- a/docs/compodoc/coverage.html +++ b/docs/compodoc/coverage.html @@ -160,292 +160,280 @@ (3/3) - + src/app/_helpers/array-sum.ts function arraySum - - 0 % - (0/1) + + 100 % + (1/1) - + src/app/_helpers/clipboard-copy.ts function copyToClipboard - - 0 % - (0/1) + + 100 % + (1/1) - + src/app/_helpers/custom-error-state-matcher.ts class CustomErrorStateMatcher - - 0 % - (0/2) + + 100 % + (2/2) - + src/app/_helpers/custom.validator.ts class CustomValidator - - 0 % - (0/3) + + 100 % + (3/3) - + src/app/_helpers/export-csv.ts function exportCsv - - 0 % - (0/1) + + 100 % + (1/1) - - - - src/app/_helpers/export-csv.ts - - function - removeSpecialChar - - 0 % - (0/1) - - - + src/app/_helpers/global-error-handler.ts class HttpError - - 0 % - (0/3) + + 100 % + (3/3) - + src/app/_helpers/global-error-handler.ts injectable GlobalErrorHandler - - 0 % - (0/6) + + 100 % + (6/6) - + src/app/_helpers/http-getter.ts function HttpGetter - - 0 % - (0/1) + + 100 % + (1/1) - + src/app/_helpers/mock-backend.ts interceptor MockBackendInterceptor - - 0 % - (0/2) + + 100 % + (2/2) - + src/app/_helpers/mock-backend.ts variable accountTypes - - 0 % - (0/1) + + 100 % + (1/1) - + src/app/_helpers/mock-backend.ts variable actions - - 0 % - (0/1) + + 100 % + (1/1) - + src/app/_helpers/mock-backend.ts variable areaNames - - 0 % - (0/1) + + 100 % + (1/1) - + src/app/_helpers/mock-backend.ts variable areaTypes - - 0 % - (0/1) + + 100 % + (1/1) - + src/app/_helpers/mock-backend.ts variable categories - - 0 % - (0/1) + + 100 % + (1/1) - + src/app/_helpers/mock-backend.ts variable genders - - 0 % - (0/1) + + 100 % + (1/1) - + src/app/_helpers/mock-backend.ts variable MockBackendProvider - - 0 % - (0/1) + + 100 % + (1/1) - + src/app/_helpers/mock-backend.ts variable tokens - - 0 % - (0/1) + + 100 % + (1/1) - + src/app/_helpers/mock-backend.ts variable transactionTypes - - 0 % - (0/1) + + 100 % + (1/1) - + src/app/_helpers/read-csv.ts function parseData - - 0 % - (0/1) + + 100 % + (1/1) - + src/app/_helpers/read-csv.ts function readCsv - - 0 % - (0/1) + + 100 % + (1/1) - + src/app/_helpers/read-csv.ts variable objCsv - - 0 % - (0/1) + + 100 % + (1/1) - + src/app/_helpers/schema-validation.ts function personValidation - - 0 % - (0/1) + + 100 % + (1/1) - + src/app/_helpers/schema-validation.ts function vcardValidation - - 0 % - (0/1) + + 100 % + (1/1) diff --git a/docs/compodoc/images/coverage-badge-documentation.svg b/docs/compodoc/images/coverage-badge-documentation.svg index 33b8e5e..24a7cd7 100644 --- a/docs/compodoc/images/coverage-badge-documentation.svg +++ b/docs/compodoc/images/coverage-badge-documentation.svg @@ -1,9 +1,9 @@ - - + + documentation - 8% + 30% diff --git a/docs/compodoc/injectables/GlobalErrorHandler.html b/docs/compodoc/injectables/GlobalErrorHandler.html index b656e57..cbb18ad 100644 --- a/docs/compodoc/injectables/GlobalErrorHandler.html +++ b/docs/compodoc/injectables/GlobalErrorHandler.html @@ -59,6 +59,13 @@ src/app/_helpers/global-error-handler.ts

+

+

Description

+

+

+

Provides a hook for centralized exception handling.

+ +

Extends

@@ -67,6 +74,11 @@ ErrorHandler

+

+

Example

+

+
+

Index

@@ -129,12 +141,14 @@ - + +

Initialization of the Global Error Handler.

+
Parameters : @@ -143,6 +157,7 @@ + @@ -157,6 +172,12 @@ No + @@ -169,6 +190,12 @@ No +
Name Type OptionalDescription
+
    +
  • A service that provides logging capabilities.
  • +
+
+
router +
    +
  • A service that provides navigation among views and URL manipulation capabilities.
  • +
+
+
@@ -206,14 +233,16 @@ - + +

Handles different types of errors.

+
Parameters : @@ -223,6 +252,7 @@ Name Type Optional + Description @@ -237,6 +267,12 @@ + +
    +
  • An error objects thrown when a runtime errors occurs.
  • +
+ + @@ -278,14 +314,16 @@ - + +

Checks if an error is of type warning.

+
Parameters : @@ -295,6 +333,7 @@ Name Type Optional + Description @@ -309,6 +348,12 @@ + +
    +
  • A description of the error and it's stack trace.
  • +
+ + @@ -320,7 +365,8 @@
- +

true - If the error is of type warning.

+
@@ -348,14 +394,16 @@ - + +

Write appropriate logs according to the type of error.

+
Parameters : @@ -365,6 +413,7 @@ Name Type Optional + Description @@ -379,6 +428,12 @@ + +
    +
  • An error objects thrown when a runtime errors occurs.
  • +
+ + @@ -428,10 +483,16 @@ - + + + +

An array of sentence sections that denote warnings.

+
+ + @@ -441,14 +502,28 @@
-
import {ErrorHandler, Injectable} from '@angular/core';
-import {LoggingService} from '@app/_services/logging.service';
-import {HttpErrorResponse} from '@angular/common/http';
+        
import {HttpErrorResponse} from '@angular/common/http';
+import {ErrorHandler, Injectable} from '@angular/core';
 import {Router} from '@angular/router';
 
-// A generalized http response error
+// Application imports
+import {LoggingService} from '@app/_services/logging.service';
+
+/**
+ * A generalized http response error.
+ *
+ * @extends Error
+ */
 export class HttpError extends Error {
+  /** The error's status code. */
   public status: number;
+
+  /**
+   * Initialize the HttpError class.
+   *
+   * @param message - The message given by the error.
+   * @param status - The status code given by the error.
+   */
   constructor(message: string, status: number) {
     super(message);
     this.status = status;
@@ -456,10 +531,25 @@ export class HttpError extends Error {
   }
 }
 
+/**
+ * Provides a hook for centralized exception handling.
+ *
+ * @extends ErrorHandler
+ */
 @Injectable()
 export class GlobalErrorHandler extends ErrorHandler {
+  /**
+   * An array of sentence sections that denote warnings.
+   * @private
+   */
   private sentencesForWarningLogging: Array<string> = [];
 
+  /**
+   * Initialization of the Global Error Handler.
+   *
+   * @param loggingService - A service that provides logging capabilities.
+   * @param router - A service that provides navigation among views and URL manipulation capabilities.
+   */
   constructor(
     private loggingService: LoggingService,
     private router: Router
@@ -467,6 +557,11 @@ export class GlobalErrorHandler extends ErrorHandler {
     super();
   }
 
+  /**
+   * Handles different types of errors.
+   *
+   * @param error - An error objects thrown when a runtime errors occurs.
+   */
   handleError(error: Error): void {
     this.logError(error);
     const message: string = error.message ? error.message : error.toString();
@@ -487,24 +582,11 @@ export class GlobalErrorHandler extends ErrorHandler {
     throw error;
   }
 
-  logError(error: any): void {
-    const route: string = this.router.url;
-    if (error instanceof HttpErrorResponse) {
-      this.loggingService.sendErrorLevelMessage(
-        `There was an HTTP error on route ${route}.\n${error.message}.\nStatus code: ${(error as HttpErrorResponse).status}`,
-        this, {error});
-    } else if (error instanceof TypeError) {
-      this.loggingService.sendErrorLevelMessage(`There was a Type error on route ${route}.\n${error.message}`, this, {error});
-    } else if (error instanceof Error) {
-      this.loggingService.sendErrorLevelMessage(`There was a general error on route ${route}.\n${error.message}`, this, {error});
-    } else {
-      this.loggingService.sendErrorLevelMessage(`Nobody threw an error but something happened on route ${route}!`, this, {error});
-    }
-  }
-
   /**
+   * Checks if an error is of type warning.
    *
-   * @param errorTraceString
+   * @param errorTraceString - A description of the error and it's stack trace.
+   * @returns true - If the error is of type warning.
    * @private
    */
   private isWarning(errorTraceString: string): boolean {
@@ -521,6 +603,26 @@ export class GlobalErrorHandler extends ErrorHandler {
 
     return isWarning;
   }
+
+  /**
+   * Write appropriate logs according to the type of error.
+   *
+   * @param error - An error objects thrown when a runtime errors occurs.
+   */
+  logError(error: any): void {
+    const route: string = this.router.url;
+    if (error instanceof HttpErrorResponse) {
+      this.loggingService.sendErrorLevelMessage(
+        `There was an HTTP error on route ${route}.\n${error.message}.\nStatus code: ${(error as HttpErrorResponse).status}`,
+        this, {error});
+    } else if (error instanceof TypeError) {
+      this.loggingService.sendErrorLevelMessage(`There was a Type error on route ${route}.\n${error.message}`, this, {error});
+    } else if (error instanceof Error) {
+      this.loggingService.sendErrorLevelMessage(`There was a general error on route ${route}.\n${error.message}`, this, {error});
+    } else {
+      this.loggingService.sendErrorLevelMessage(`Nobody threw an error but something happened on route ${route}!`, this, {error});
+    }
+  }
 }
 
diff --git a/docs/compodoc/interceptors/MockBackendInterceptor.html b/docs/compodoc/interceptors/MockBackendInterceptor.html index 1a17c43..88cbf35 100644 --- a/docs/compodoc/interceptors/MockBackendInterceptor.html +++ b/docs/compodoc/interceptors/MockBackendInterceptor.html @@ -60,7 +60,20 @@ src/app/_helpers/mock-backend.ts

+

+

Description

+

+

+

Intercepts HTTP requests and handles some specified requests internally. +Provides a backend that can handle requests for certain data items.

+

+ +

+

Example

+

+
+

Index

@@ -118,14 +131,16 @@ - + +

Intercepts HTTP requests.

+
Parameters : @@ -135,6 +150,7 @@ Name Type Optional + Description @@ -149,6 +165,12 @@ + +
    +
  • An outgoing HTTP request with an optional typed body.
  • +
+ + next @@ -161,6 +183,12 @@ + +
    +
  • The next HTTP handler or the outgoing request dispatcher.
  • +
+ + @@ -172,7 +200,8 @@
- +

The response from the resolved request.

+
@@ -186,10 +215,18 @@
import {HTTP_INTERCEPTORS, HttpEvent, HttpHandler, HttpInterceptor, HttpRequest, HttpResponse} from '@angular/common/http';
 import {Injectable} from '@angular/core';
+
+// Third party imports
 import {Observable, of, throwError} from 'rxjs';
 import {delay, dematerialize, materialize, mergeMap} from 'rxjs/operators';
+
+// Application imports
 import {Action, AreaName, AreaType, Category, Token} from '@app/_models';
 
+/** A mock of the curated account types. */
+const accountTypes: Array<string> = ['user', 'cashier', 'vendor', 'tokenagent', 'group'];
+
+/** A mock of actions made by the admin staff. */
 const actions: Array<Action> = [
   { id: 1, user: 'Tom', role: 'enroller', action: 'Disburse RSV 100', approval: false },
   { id: 2, user: 'Christine', role: 'admin', action: 'Change user phone number', approval: true },
@@ -199,38 +236,93 @@ const actions: Array<Action> = [
   { id: 6, user: 'Patience', role: 'enroller', action: 'Change user information', approval: false }
 ];
 
-const tokens: Array<Token> = [
+/** A mock of curated area names. */
+const areaNames: Array<AreaName> = [
   {
-    name: 'Giftable Reserve', symbol: 'GRZ', address: '0xa686005CE37Dce7738436256982C3903f2E4ea8E', supply: '1000000001000000000000000000',
-    decimals: '18', reserves: {}
+    name: 'Mukuru Nairobi',
+    locations: ['kayaba', 'kayba', 'kambi', 'mukuru', 'masai', 'hazina', 'south', 'tetra', 'tetrapak', 'ruben', 'rueben', 'kingston',
+      'korokocho', 'kingstone', 'kamongo', 'lungalunga', 'sinai', 'sigei', 'lungu', 'lunga lunga', 'owino road', 'seigei']
   },
   {
-    name: 'Demo Token', symbol: 'DEMO', address: '0xc80D6aFF8194114c52AEcD84c9f15fd5c8abb187', supply: '99999999999999998976',
-    decimals: '18', reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '99999999999999998976'}},
-    reserveRatio: '1000000', owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'
+    name: 'Kinango Kwale',
+    locations: ['amani', 'bofu', 'chibuga', 'chikomani', 'chilongoni', 'chigojoni', 'chinguluni', 'chigato', 'chigale', 'chikole',
+      'chilongoni', 'chilumani', 'chigojoni', 'chikomani', 'chizini', 'chikomeni', 'chidzuvini', 'chidzivuni', 'chikuyu', 'chizingo',
+      'doti', 'dzugwe', 'dzivani', 'dzovuni', 'hanje', 'kasemeni', 'katundani', 'kibandaogo', 'kibandaongo', 'kwale', 'kinango',
+      'kidzuvini', 'kalalani', 'kafuduni', 'kaloleni', 'kilibole', 'lutsangani', 'peku', 'gona', 'guro', 'gandini', 'mkanyeni', 'myenzeni',
+      'miyenzeni', 'miatsiani', 'mienzeni', 'mnyenzeni', 'minyenzeni', 'miyani', 'mioleni', 'makuluni', 'mariakani', 'makobeni', 'madewani',
+      'mwangaraba', 'mwashanga', 'miloeni', 'mabesheni', 'mazeras', 'mazera', 'mlola', 'muugano', 'mulunguni', 'mabesheni', 'miatsani',
+      'miatsiani', 'mwache', 'mwangani', 'mwehavikonje', 'miguneni', 'nzora', 'nzovuni', 'vikinduni', 'vikolani', 'vitangani', 'viogato',
+      'vyogato', 'vistangani', 'yapha', 'yava', 'yowani', 'ziwani', 'majengo', 'matuga', 'vigungani', 'vidziweni', 'vinyunduni', 'ukunda',
+      'kokotoni', 'mikindani']
   },
   {
-    name: 'Foo Token', symbol: 'FOO', address: '0x9ceD86089f7aBB5A97B40eb0E7521e7aa308d354', supply: '1000000000000000001014',
-    decimals: '18', reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '1000000000000000001014'}},
-    reserveRatio: '1000000', owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'
+    name: 'Misc Nairobi',
+    locations: ['nairobi', 'west', 'lindi', 'kibera', 'kibira', 'kibra', 'makina', 'soweto', 'olympic', 'kangemi', 'ruiru', 'congo',
+      'kawangware', 'kwangware', 'donholm', 'dagoreti', 'dandora', 'kabete', 'sinai', 'donhom', 'donholm', 'huruma', 'kitengela',
+      'makadara', ',mlolongo', 'kenyatta', 'mlolongo', 'tassia', 'tasia', 'gatina', '56', 'industrial', 'kariobangi', 'kasarani', 'kayole',
+      'mathare', 'pipe', 'juja', 'uchumi', 'jogoo', 'umoja', 'thika', 'kikuyu', 'stadium', 'buru buru', 'ngong', 'starehe', 'mwiki',
+      'fuata', 'kware', 'kabiro', 'embakassi', 'embakasi', 'kmoja', 'east', 'githurai', 'landi', 'langata', 'limuru', 'mathere',
+      'dagoretti', 'kirembe', 'muugano', 'mwiki', 'toi market']
   },
   {
-    name: 'testb', symbol: 'tstb', address: '0xC63cFA91A3BFf41cE31Ff436f67D3ACBC977DB95', supply: '99000', decimals: '18',
-    reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '99000'}}, reserveRatio: '1000000',
-    owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'
+    name: 'Misc Mombasa',
+    locations: ['mombasa', 'likoni', 'bangla', 'bangladesh', 'kizingo', 'old town', 'makupa', 'mvita', 'ngombeni', 'ngómbeni', 'ombeni',
+      'magongo', 'miritini', 'changamwe', 'jomvu', 'ohuru', 'tudor', 'diani']
   },
   {
-    name: 'testa', symbol: 'tsta', address: '0x8fA4101ef19D0a078239d035659e92b278bD083C', supply: '9981', decimals: '18',
-    reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '9981'}}, reserveRatio: '1000000',
-    owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'
+    name: 'Kisauni',
+    locations: ['bamburi', 'kisauni', 'mworoni', 'nyali', 'shanzu', 'bombolulu', 'mtopanga', 'mjambere', 'majaoni', 'manyani', 'magogoni',
+      'junda', 'mwakirunge', 'mshomoroni']
   },
   {
-    name: 'testc', symbol: 'tstc', address: '0x4A6fA6bc3BfE4C9661bC692D9798425350C9e3D4', supply: '100990', decimals: '18',
-    reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '100990'}}, reserveRatio: '1000000',
-    owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'
+    name: 'Kilifi',
+    locations: ['kilfi', 'kilifi', 'mtwapa', 'takaungu', 'makongeni', 'mnarani', 'mnarani', 'office', 'g.e', 'ge', 'raibai', 'ribe']
+  },
+  {
+    name: 'Kakuma',
+    locations: ['kakuma']
+  },
+  {
+    name: 'Kitui',
+    locations: ['kitui', 'mwingi']
+  },
+  {
+    name: 'Nyanza',
+    locations: ['busia', 'nyalgunga', 'mbita', 'siaya', 'kisumu', 'nyalenda', 'hawinga', 'rangala', 'uyoma', 'mumias', 'homabay', 'homaboy',
+      'migori', 'kusumu']
+  },
+  {
+    name: 'Misc Rural Counties',
+    locations: ['makueni', 'meru', 'kisii', 'bomet', 'machakos', 'bungoma', 'eldoret', 'kakamega', 'kericho', 'kajiado', 'nandi', 'nyeri',
+      'wote', 'kiambu', 'mwea', 'nakuru', 'narok']
+  },
+  {
+    name: 'other',
+    locations: ['other', 'none', 'unknown']
   }
 ];
 
+/** A mock of curated area types. */
+const areaTypes: Array<AreaType> = [
+  {
+    name: 'urban',
+    area: ['urban', 'nairobi', 'mombasa']
+  },
+  {
+    name: 'rural',
+    area: ['rural', 'kakuma', 'kwale', 'kinango', 'kitui', 'nyanza']
+  },
+  {
+    name: 'periurban',
+    area: ['kilifi', 'periurban']
+  },
+  {
+    name: 'other',
+    area: ['other']
+  }
+];
+
+/** A mock of the user's business categories */
 const categories: Array<Category> = [
   {
     name: 'system',
@@ -333,96 +425,60 @@ const categories: Array<Category> = [
   }
 ];
 
-const areaNames: Array<AreaName> = [
-  {
-    name: 'Mukuru Nairobi',
-    locations: ['kayaba', 'kayba', 'kambi', 'mukuru', 'masai', 'hazina', 'south', 'tetra', 'tetrapak', 'ruben', 'rueben', 'kingston',
-      'korokocho', 'kingstone', 'kamongo', 'lungalunga', 'sinai', 'sigei', 'lungu', 'lunga lunga', 'owino road', 'seigei']
-  },
-  {
-    name: 'Kinango Kwale',
-    locations: ['amani', 'bofu', 'chibuga', 'chikomani', 'chilongoni', 'chigojoni', 'chinguluni', 'chigato', 'chigale', 'chikole',
-      'chilongoni', 'chilumani', 'chigojoni', 'chikomani', 'chizini', 'chikomeni', 'chidzuvini', 'chidzivuni', 'chikuyu', 'chizingo',
-      'doti', 'dzugwe', 'dzivani', 'dzovuni', 'hanje', 'kasemeni', 'katundani', 'kibandaogo', 'kibandaongo', 'kwale', 'kinango',
-      'kidzuvini', 'kalalani', 'kafuduni', 'kaloleni', 'kilibole', 'lutsangani', 'peku', 'gona', 'guro', 'gandini', 'mkanyeni', 'myenzeni',
-      'miyenzeni', 'miatsiani', 'mienzeni', 'mnyenzeni', 'minyenzeni', 'miyani', 'mioleni', 'makuluni', 'mariakani', 'makobeni', 'madewani',
-      'mwangaraba', 'mwashanga', 'miloeni', 'mabesheni', 'mazeras', 'mazera', 'mlola', 'muugano', 'mulunguni', 'mabesheni', 'miatsani',
-      'miatsiani', 'mwache', 'mwangani', 'mwehavikonje', 'miguneni', 'nzora', 'nzovuni', 'vikinduni', 'vikolani', 'vitangani', 'viogato',
-      'vyogato', 'vistangani', 'yapha', 'yava', 'yowani', 'ziwani', 'majengo', 'matuga', 'vigungani', 'vidziweni', 'vinyunduni', 'ukunda',
-      'kokotoni', 'mikindani']
-  },
-  {
-    name: 'Misc Nairobi',
-    locations: ['nairobi', 'west', 'lindi', 'kibera', 'kibira', 'kibra', 'makina', 'soweto', 'olympic', 'kangemi', 'ruiru', 'congo',
-      'kawangware', 'kwangware', 'donholm', 'dagoreti', 'dandora', 'kabete', 'sinai', 'donhom', 'donholm', 'huruma', 'kitengela',
-      'makadara', ',mlolongo', 'kenyatta', 'mlolongo', 'tassia', 'tasia', 'gatina', '56', 'industrial', 'kariobangi', 'kasarani', 'kayole',
-      'mathare', 'pipe', 'juja', 'uchumi', 'jogoo', 'umoja', 'thika', 'kikuyu', 'stadium', 'buru buru', 'ngong', 'starehe', 'mwiki',
-      'fuata', 'kware', 'kabiro', 'embakassi', 'embakasi', 'kmoja', 'east', 'githurai', 'landi', 'langata', 'limuru', 'mathere',
-      'dagoretti', 'kirembe', 'muugano', 'mwiki', 'toi market']
-  },
-  {
-    name: 'Misc Mombasa',
-    locations: ['mombasa', 'likoni', 'bangla', 'bangladesh', 'kizingo', 'old town', 'makupa', 'mvita', 'ngombeni', 'ngómbeni', 'ombeni',
-      'magongo', 'miritini', 'changamwe', 'jomvu', 'ohuru', 'tudor', 'diani']
-  },
-  {
-    name: 'Kisauni',
-    locations: ['bamburi', 'kisauni', 'mworoni', 'nyali', 'shanzu', 'bombolulu', 'mtopanga', 'mjambere', 'majaoni', 'manyani', 'magogoni',
-      'junda', 'mwakirunge', 'mshomoroni']
-  },
-  {
-    name: 'Kilifi',
-    locations: ['kilfi', 'kilifi', 'mtwapa', 'takaungu', 'makongeni', 'mnarani', 'mnarani', 'office', 'g.e', 'ge', 'raibai', 'ribe']
-  },
-  {
-    name: 'Kakuma',
-    locations: ['kakuma']
-  },
-  {
-    name: 'Kitui',
-    locations: ['kitui', 'mwingi']
-  },
-  {
-    name: 'Nyanza',
-    locations: ['busia', 'nyalgunga', 'mbita', 'siaya', 'kisumu', 'nyalenda', 'hawinga', 'rangala', 'uyoma', 'mumias', 'homabay', 'homaboy',
-      'migori', 'kusumu']
-  },
-  {
-    name: 'Misc Rural Counties',
-    locations: ['makueni', 'meru', 'kisii', 'bomet', 'machakos', 'bungoma', 'eldoret', 'kakamega', 'kericho', 'kajiado', 'nandi', 'nyeri',
-      'wote', 'kiambu', 'mwea', 'nakuru', 'narok']
-  },
-  {
-    name: 'other',
-    locations: ['other', 'none', 'unknown']
-  }
-];
-
-const areaTypes: Array<AreaType> = [
-  {
-    name: 'urban',
-    area: ['urban', 'nairobi', 'mombasa']
-  },
-  {
-    name: 'rural',
-    area: ['rural', 'kakuma', 'kwale', 'kinango', 'kitui', 'nyanza']
-  },
-  {
-    name: 'periurban',
-    area: ['kilifi', 'periurban']
-  },
-  {
-    name: 'other',
-    area: ['other']
-  }
-];
-
-const accountTypes: Array<string> = ['user', 'cashier', 'vendor', 'tokenagent', 'group'];
-const transactionTypes: Array<string> = ['transactions', 'conversions', 'disbursements', 'rewards', 'reclamation'];
+/** A mock of curated genders */
 const genders: Array<string> = ['male', 'female', 'other'];
 
+/** A mock of the tokens in the system. */
+const tokens: Array<Token> = [
+  {
+    name: 'Giftable Reserve', symbol: 'GRZ', address: '0xa686005CE37Dce7738436256982C3903f2E4ea8E', supply: '1000000001000000000000000000',
+    decimals: '18', reserves: {}
+  },
+  {
+    name: 'Demo Token', symbol: 'DEMO', address: '0xc80D6aFF8194114c52AEcD84c9f15fd5c8abb187', supply: '99999999999999998976',
+    decimals: '18', reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '99999999999999998976'}},
+    reserveRatio: '1000000', owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'
+  },
+  {
+    name: 'Foo Token', symbol: 'FOO', address: '0x9ceD86089f7aBB5A97B40eb0E7521e7aa308d354', supply: '1000000000000000001014',
+    decimals: '18', reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '1000000000000000001014'}},
+    reserveRatio: '1000000', owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'
+  },
+  {
+    name: 'testb', symbol: 'tstb', address: '0xC63cFA91A3BFf41cE31Ff436f67D3ACBC977DB95', supply: '99000', decimals: '18',
+    reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '99000'}}, reserveRatio: '1000000',
+    owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'
+  },
+  {
+    name: 'testa', symbol: 'tsta', address: '0x8fA4101ef19D0a078239d035659e92b278bD083C', supply: '9981', decimals: '18',
+    reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '9981'}}, reserveRatio: '1000000',
+    owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'
+  },
+  {
+    name: 'testc', symbol: 'tstc', address: '0x4A6fA6bc3BfE4C9661bC692D9798425350C9e3D4', supply: '100990', decimals: '18',
+    reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '100990'}}, reserveRatio: '1000000',
+    owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'
+  }
+];
+
+/** A mock of curated  transaction types. */
+const transactionTypes: Array<string> = ['transactions', 'conversions', 'disbursements', 'rewards', 'reclamation'];
+
+/**
+ * Intercepts HTTP requests and handles some specified requests internally.
+ * Provides a backend that can handle requests for certain data items.
+ *
+ * @implements HttpInterceptor
+ */
 @Injectable()
 export class MockBackendInterceptor implements HttpInterceptor {
+  /**
+   * Intercepts HTTP requests.
+   *
+   * @param request - An outgoing HTTP request with an optional typed body.
+   * @param next - The next HTTP handler or the outgoing request dispatcher.
+   * @returns The response from the resolved request.
+   */
   intercept(request: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> {
     const { url, method, headers, body } = request;
 
@@ -434,22 +490,17 @@ export class MockBackendInterceptor implements HttpInterceptor {
       .pipe(delay(500))
       .pipe(dematerialize());
 
+    /** Forward requests from select routes to their internal handlers. */
     function handleRoute(): Observable<any> {
       switch (true) {
+        case url.endsWith('/accounttypes') && method === 'GET':
+          return getAccountTypes();
         case url.endsWith('/actions') && method === 'GET':
           return getActions();
         case url.match(/\/actions\/\d+$/) && method === 'GET':
           return getActionById();
         case url.match(/\/actions\/\d+$/) && method === 'POST':
           return approveAction();
-        case url.endsWith('/tokens') && method === 'GET':
-          return getTokens();
-        case url.match(/\/tokens\/\w+$/) && method === 'GET':
-          return getTokenBySymbol();
-        case url.endsWith('/categories') && method === 'GET':
-          return getCategories();
-        case url.match(/\/categories\/\w+$/) && method === 'GET':
-          return getCategoryByProduct();
         case url.endsWith('/areanames') && method === 'GET':
           return getAreaNames();
         case url.match(/\/areanames\/\w+$/) && method === 'GET':
@@ -458,12 +509,18 @@ export class MockBackendInterceptor implements HttpInterceptor {
           return getAreaTypes();
         case url.match(/\/areatypes\/\w+$/) && method === 'GET':
           return getAreaTypeByArea();
-        case url.endsWith('/accounttypes') && method === 'GET':
-          return getAccountTypes();
-        case url.endsWith('/transactiontypes') && method === 'GET':
-          return getTransactionTypes();
+        case url.endsWith('/categories') && method === 'GET':
+          return getCategories();
+        case url.match(/\/categories\/\w+$/) && method === 'GET':
+          return getCategoryByProduct();
         case url.endsWith('/genders') && method === 'GET':
           return getGenders();
+        case url.endsWith('/tokens') && method === 'GET':
+          return getTokens();
+        case url.match(/\/tokens\/\w+$/) && method === 'GET':
+          return getTokenBySymbol();
+        case url.endsWith('/transactiontypes') && method === 'GET':
+          return getTransactionTypes();
         default:
           // pass through any requests not handled above
           return next.handle(request);
@@ -472,15 +529,6 @@ export class MockBackendInterceptor implements HttpInterceptor {
 
     // route functions
 
-    function getActions(): Observable<HttpResponse<any>> {
-      return ok(actions);
-    }
-
-    function getActionById(): Observable<HttpResponse<any>> {
-      const queriedAction: Action = actions.find(action => action.id === idFromUrl());
-      return ok(queriedAction);
-    }
-
     function approveAction(): Observable<HttpResponse<any>> {
       const queriedAction: Action = actions.find(action => action.id === idFromUrl());
       queriedAction.approval = body.approval;
@@ -488,23 +536,17 @@ export class MockBackendInterceptor implements HttpInterceptor {
       return ok(message);
     }
 
-    function getTokens(): Observable<HttpResponse<any>> {
-      return ok(tokens);
+    function getAccountTypes(): Observable<HttpResponse<any>> {
+      return ok(accountTypes);
     }
 
-    function getTokenBySymbol(): Observable<HttpResponse<any>> {
-      const queriedToken: Token = tokens.find(token => token.symbol === stringFromUrl());
-      return ok(queriedToken);
+    function getActions(): Observable<HttpResponse<any>> {
+      return ok(actions);
     }
 
-    function getCategories(): Observable<HttpResponse<any>> {
-      const categoryList: Array<string> = categories.map(category => category.name);
-      return ok(categoryList);
-    }
-
-    function getCategoryByProduct(): Observable<HttpResponse<any>> {
-      const queriedCategory: Category = categories.find(category => category.products.includes(stringFromUrl()));
-      return ok(queriedCategory.name);
+    function getActionById(): Observable<HttpResponse<any>> {
+      const queriedAction: Action = actions.find(action => action.id === idFromUrl());
+      return ok(queriedAction);
     }
 
     function getAreaNames(): Observable<HttpResponse<any>> {
@@ -527,24 +569,35 @@ export class MockBackendInterceptor implements HttpInterceptor {
       return ok(queriedAreaType.name);
     }
 
-    function getAccountTypes(): Observable<HttpResponse<any>> {
-      return ok(accountTypes);
+    function getCategories(): Observable<HttpResponse<any>> {
+      const categoryList: Array<string> = categories.map(category => category.name);
+      return ok(categoryList);
     }
 
-    function getTransactionTypes(): Observable<HttpResponse<any>> {
-      return ok(transactionTypes);
+    function getCategoryByProduct(): Observable<HttpResponse<any>> {
+      const queriedCategory: Category = categories.find(category => category.products.includes(stringFromUrl()));
+      return ok(queriedCategory.name);
     }
 
     function getGenders(): Observable<HttpResponse<any>> {
       return ok(genders);
     }
 
-    // helper functions
-
-    function ok(responseBody: any): Observable<HttpResponse<any>> {
-      return of(new HttpResponse({ status: 200, body: responseBody }));
+    function getTokens(): Observable<HttpResponse<any>> {
+      return ok(tokens);
     }
 
+    function getTokenBySymbol(): Observable<HttpResponse<any>> {
+      const queriedToken: Token = tokens.find(token => token.symbol === stringFromUrl());
+      return ok(queriedToken);
+    }
+
+    function getTransactionTypes(): Observable<HttpResponse<any>> {
+      return ok(transactionTypes);
+    }
+
+    // helper functions
+
     function error(message): Observable<any> {
       return throwError({ status: 400, error: { message } });
     }
@@ -554,6 +607,10 @@ export class MockBackendInterceptor implements HttpInterceptor {
       return parseInt(urlParts[urlParts.length - 1], 10);
     }
 
+    function ok(responseBody: any): Observable<HttpResponse<any>> {
+      return of(new HttpResponse({ status: 200, body: responseBody }));
+    }
+
     function stringFromUrl(): string {
       const urlParts: Array<string> = url.split('/');
       return urlParts[urlParts.length - 1];
@@ -561,6 +618,11 @@ export class MockBackendInterceptor implements HttpInterceptor {
   }
 }
 
+/**
+ * Exports the MockBackendInterceptor as an Angular provider.
+ *
+ * @exports
+ */
 export const MockBackendProvider = {
   provide: HTTP_INTERCEPTORS,
   useClass: MockBackendInterceptor,
diff --git a/docs/compodoc/js/search/search_index.js b/docs/compodoc/js/search/search_index.js
index 313e2a9..23af891 100644
--- a/docs/compodoc/js/search/search_index.js
+++ b/docs/compodoc/js/search/search_index.js
@@ -1,4 +1,4 @@
 var COMPODOC_SEARCH_INDEX = {
-    "index": {"version":"2.3.9","fields":["title","body"],"fieldVectors":[["title/interfaces/AccountDetails.html",[0,1.107,1,2.027]],["body/interfaces/AccountDetails.html",[0,1.88,1,3.599,2,1.935,3,0.115,4,0.092,5,0.081,6,2.836,7,0.348,8,1.08,9,1.318,10,5.33,11,4.046,12,3.574,13,5.213,14,4.656,15,5.213,16,4.231,17,3.887,18,0.699,19,4.051,20,1.495,21,0.011,22,2.054,23,5.377,24,4.09,25,4.09,26,4.09,27,3.855,28,3.855,29,2.078,30,4.09,31,3.218,32,3.653,33,2.105,34,4.09,35,4.09,36,4.09,37,3.738,38,4.09,39,3.653,40,3.874,41,2.688,42,2.629,43,2.688,44,2.443,45,2.458,46,3.855,47,2.339,48,0.99,49,3.653,50,2.836,51,2.629,52,2.836,53,3.653,54,3.653,55,3.01,56,0.115,57,0.005,58,0.007,59,0.005]],["title/classes/AccountIndex.html",[60,0.005,61,3.393]],["body/classes/AccountIndex.html",[0,0.725,3,0.074,4,0.059,5,0.052,7,0.222,8,0.78,9,0.952,18,0.554,20,1.361,21,0.011,22,2.028,48,1.33,51,1.236,54,4.978,56,0.074,57,0.003,58,0.005,59,0.003,60,0.003,61,3.416,62,1.084,63,2.223,64,4.36,65,3.16,66,5.138,67,5.582,68,4.979,69,3.759,70,3.759,71,7.342,72,3.16,73,3.894,74,4.782,75,5.854,76,6.454,77,0.717,78,3.988,79,3.349,80,4.28,81,4.28,82,4.28,83,6.665,84,0.599,85,3.759,86,0.857,87,4.28,88,1.433,89,3.849,90,6.589,91,2.814,92,1.037,93,0.547,94,5.039,95,3.059,96,2.223,97,2.785,98,2.785,99,4.28,100,2.785,101,4.28,102,3.759,103,4.28,104,2.786,105,6.293,106,4.28,107,5.85,108,4.28,109,6.293,110,6.293,111,2.785,112,1.327,113,2.703,114,2.689,115,4.28,116,3.759,117,4.28,118,2.785,119,3.416,120,4.32,121,3.16,122,3.416,123,2.163,124,3.759,125,4.28,126,2.785,127,3.416,128,2.785,129,4.28,130,2.785,131,3.416,132,4.28,133,5.213,134,1.712,135,2.382,136,4.28,137,4.28,138,2.785,139,5.854,140,0.26,141,3.608,142,2.446,143,1.019,144,1.195,145,1.434,146,2.223,147,2.956,148,2.223,149,2.446,150,2.223,151,2.223,152,1.393,153,2.056,154,2.446,155,3.894,156,3.759,157,2.446,158,2.446,159,4.579,160,2.446,161,4.28,162,2.785,163,2.859,164,2.785,165,2.785,166,2.785,167,2.785,168,4.579,169,2.785,170,5.213,171,2.64,172,2.785,173,2.785,174,2.785]],["title/components/AccountSearchComponent.html",[175,0.652,176,1.383]],["body/components/AccountSearchComponent.html",[3,0.076,4,0.061,5,0.054,7,0.23,8,0.801,9,0.469,18,0.615,21,0.011,22,1.509,33,1.781,56,0.076,57,0.003,58,0.005,59,0.003,60,0.003,67,3.877,77,0.736,79,2.804,84,0.946,86,0.985,88,0.966,91,2.57,92,0.511,93,0.6,95,2.347,112,0.997,113,2.248,114,2.473,123,3.343,134,1.666,140,0.426,144,1.237,145,1.485,152,1.43,163,2.556,175,0.817,176,1.938,177,1.609,178,1.055,179,1.197,180,1.088,181,0.966,182,7.272,183,6.113,184,2.532,185,1.314,186,2.449,187,0.912,188,1.824,189,1.824,190,2.861,191,3.086,192,4.814,193,1.824,194,5.326,195,1.824,196,4.395,197,5.326,198,5.326,199,5.326,200,3.933,201,5.326,202,5.326,203,5.326,204,5.326,205,5.326,206,5.326,207,2.739,208,5.956,209,5.956,210,5.956,211,3.245,212,5.326,213,5.326,214,5.326,215,2.301,216,4.989,217,4.334,218,3.771,219,4.395,220,2.883,221,1.469,222,2.883,223,2.883,224,2.883,225,5.188,226,2.883,227,2.399,228,2.222,229,2.883,230,2.883,231,3.955,232,2.883,233,2.883,234,2.883,235,2.883,236,2.883,237,2.883,238,2.883,239,2.883,240,2.883,241,2.883,242,2.883,243,2.883,244,1.197,245,0.345,246,2.129,247,1.547,248,1.428,249,1.428,250,1.024,251,2.129,252,2.129,253,1.637,254,2.883,255,3.933,256,3.933,257,2.883,258,2.532,259,2.883,260,2.883,261,2.883,262,2.883,263,2.883,264,2.883,265,4.395,266,2.883,267,2.883,268,2.883,269,4.395,270,2.883,271,4.395,272,3.877,273,3.035,274,4.395,275,4.395,276,3.508,277,2.883,278,2.883,279,4.395,280,2.883,281,2.176,282,4.398,283,3.877,284,4.395,285,0.815,286,1.658,287,1.658,288,0.838,289,2.248,290,1.088,291,0.966,292,2.01,293,0.938,294,1.088,295,1.088,296,0.938,297,1.088,298,0.966,299,1.088,300,0.938,301,1.088,302,0.938,303,1.088,304,0.938,305,0.731,306,1.088,307,0.966,308,1.658,309,1.024,310,0.938,311,1.088,312,0.938,313,1.088,314,0.938,315,1.088,316,0.966,317,1.658,318,1.024,319,0.938,320,0.731,321,0.938,322,1.088,323,0.966,324,1.658,325,1.024,326,0.966,327,0.793,328,0.938,329,0.966,330,0.938,331,0.938,332,1.088,333,0.938,334,1.088,335,0.938,336,1.088,337,0.994,338,1.055,339,1.088]],["title/components/AccountsComponent.html",[175,0.652,293,1.383]],["body/components/AccountsComponent.html",[1,1.422,3,0.079,4,0.063,5,0.055,7,0.238,8,0.822,9,0.885,11,3.397,16,3.397,18,0.635,20,1.09,21,0.011,22,1.536,33,1.735,56,0.144,57,0.004,58,0.005,59,0.004,60,0.004,67,5.23,77,0.755,79,2.515,84,0.971,86,0.977,88,0.999,91,2.118,92,0.964,93,0.715,112,1.146,113,1.702,135,2.762,140,0.471,144,1.28,145,1.536,152,0.971,163,1.935,175,0.834,176,0.971,177,1.651,178,1.092,179,1.238,180,1.126,181,0.999,185,1.348,186,2.787,187,0.943,188,1.872,189,1.872,190,2.871,191,3.099,192,3.738,193,1.872,195,1.872,207,2.787,217,4.222,218,3.815,221,1.883,228,2.058,244,1.238,245,0.357,248,1.477,249,1.477,250,1.059,251,2.202,252,2.202,253,1.671,272,1.941,281,2.233,282,3.945,285,0.843,286,1.702,287,1.702,288,0.867,289,2.287,290,1.126,291,0.999,292,2.052,293,1.972,294,1.126,295,1.126,296,0.971,297,1.126,298,0.999,299,1.126,300,0.971,301,1.126,302,0.971,303,1.126,304,0.971,305,1.378,306,1.126,307,0.999,308,1.702,309,1.059,310,0.971,311,1.126,312,0.971,313,1.126,314,0.971,315,1.126,316,0.999,317,1.702,318,1.059,319,0.971,320,0.756,321,0.971,322,1.126,323,0.999,324,1.702,325,1.059,326,0.999,327,0.82,328,0.971,329,0.999,330,0.971,331,0.971,332,1.126,333,0.971,334,1.126,335,0.971,336,1.126,337,1.029,338,1.092,339,1.126,340,2.62,341,5.437,342,4.51,343,5.437,344,3.755,345,3.755,346,4.776,347,4.34,348,4.776,349,3.755,350,3.755,351,3.114,352,4.186,353,6.061,354,6.061,355,4.51,356,2.62,357,2.95,358,4.51,359,3.114,360,2.983,361,2.983,362,2.983,363,2.983,364,2.983,365,4.51,366,2.983,367,2.983,368,2.983,369,2.983,370,3.755,371,2.983,372,4.186,373,2.983,374,4.838,375,2.983,376,3.6,377,3.961,378,2.647,379,2.983,380,3.755,381,2.935,382,3.114,383,2.983,384,3.755,385,3.114,386,2.06,387,1.536,388,1.601,389,1.601,390,1.84,391,1.672,392,1.477,393,1.941,394,2.202,395,1.601,396,2.983,397,2.62,398,2.983,399,2.381,400,2.983,401,2.62,402,2.62,403,2.62,404,4.51,405,2.202,406,2.983,407,4.015,408,3.114,409,2.202,410,2.06,411,4.51,412,2.202,413,2.06,414,2.983,415,4.51,416,4.51,417,2.983,418,2.983,419,2.983,420,2.983,421,3.961,422,3.6,423,3.114,424,4.51,425,4.51,426,4.51,427,3.114,428,4.51,429,2.935,430,4.51]],["title/modules/AccountsModule.html",[431,1.138,432,3.139]],["body/modules/AccountsModule.html",[3,0.126,4,0.101,5,0.088,21,0.011,56,0.126,57,0.006,58,0.007,59,0.006,60,0.006,91,1.548,140,0.54,143,2.299,176,2.598,183,3.513,245,0.569,247,2.553,285,1.345,291,2.674,293,2.598,302,2.598,387,2.45,388,2.553,389,2.553,431,1.273,432,6.483,433,1.742,434,2.356,435,3.774,436,2.45,437,2.553,438,1.912,439,4.179,440,4.179,441,4.179,442,5.515,443,4.113,444,5.515,445,3.371,446,2.553,447,2.269,448,4.758,449,2.607,450,3.687,451,2.667,452,4.758,453,2.793,454,4.179,455,2.935,456,4.179,457,3.798,458,3.286,459,5.014,460,2.793,461,3.513,462,4.179,463,3.513,464,4.179,465,4.088,466,4.338,467,4.638,468,3.513,469,4.338,470,3.874,471,2.935,472,4.088,473,3.097,474,3.097,475,3.874,476,2.935,477,3.874,478,2.935,479,4.088,480,3.097,481,4.338,482,3.286,483,4.758,484,6.281,485,4.758,486,4.338,487,3.097,488,6.281,489,4.758,490,4.758,491,5.014,492,4.179,493,5.517,494,3.798,495,3.286]],["title/modules/AccountsRoutingModule.html",[431,1.138,442,2.936]],["body/modules/AccountsRoutingModule.html",[3,0.155,4,0.124,5,0.109,21,0.011,45,2.428,48,1.33,56,0.155,57,0.007,58,0.009,59,0.007,60,0.007,88,1.959,140,0.511,143,2.141,175,1.238,176,2.331,183,4.32,192,3.608,245,0.7,250,2.078,291,2.399,293,2.331,302,2.331,433,2.141,438,2.351,442,4.948,449,2.973,454,5.139,456,6.293,457,4.67,458,4.04,462,5.139,463,4.32,464,5.139,492,5.139,496,5.85,497,3.434,498,3.692,499,4.015,500,4.86,501,4.04,502,4.04,503,3.808,504,3.608]],["title/interfaces/Action.html",[0,1.107,505,2.281]],["body/interfaces/Action.html",[0,2.1,2,2.592,3,0.154,4,0.124,5,0.108,7,0.466,8,1.305,12,3.543,17,3.007,18,0.661,20,1.475,21,0.011,22,1.961,29,2.784,45,3.347,56,0.154,57,0.007,58,0.009,59,0.007,93,0.724,135,2.92,227,2.379,505,4.578,506,4.033,507,4.734,508,4.52,509,2.952,510,4.2,511,3.8,512,4.414]],["title/classes/ActivatedRouteStub.html",[60,0.005,513,3.393]],["body/classes/ActivatedRouteStub.html",[3,0.134,4,0.107,5,0.094,7,0.404,8,1.192,9,1.064,18,0.522,21,0.011,33,2.058,56,0.134,57,0.006,58,0.008,59,0.006,60,0.006,62,1.97,64,3.495,77,1.095,84,1.089,86,0.916,92,1.159,93,0.612,96,5.22,112,0.847,140,0.397,152,2.357,221,1.613,228,2.068,250,1.797,253,2.227,513,5.22,514,6.965,515,4.444,516,2.836,517,6.539,518,6.539,519,6.539,520,8.687,521,3.926,522,5.35,523,7.658,524,4.828,525,5.22,526,4.984,527,7.245,528,6.364,529,6.539,530,7.356,531,5.744,532,5.06,533,6.539,534,5.06,535,6.539,536,7.658,537,6.539,538,4.445,539,4.828,540,6.539,541,5.06,542,2.413,543,4.445,544,4.445,545,6.539,546,5.06,547,5.06,548,5.06,549,5.06]],["title/components/AdminComponent.html",[175,0.652,296,1.383]],["body/components/AdminComponent.html",[3,0.081,4,0.065,5,0.057,7,0.244,8,0.837,9,1.124,18,0.623,20,1.101,21,0.011,33,1.164,51,1.357,56,0.146,57,0.004,58,0.005,59,0.004,60,0.004,77,0.769,84,0.988,86,0.966,88,1.023,91,1.494,92,1.225,93,0.748,112,1.2,134,1.361,135,2.315,140,0.458,152,0.994,171,1.885,175,0.847,176,0.994,177,1.681,178,1.119,179,1.268,180,1.153,181,1.023,185,1.373,186,2.537,187,0.966,188,1.906,189,1.906,190,2.879,191,3.108,192,2.833,193,1.906,195,1.906,207,2.821,217,4.262,221,1.95,227,1.696,228,0.966,244,1.268,245,0.366,248,1.513,249,1.513,253,1.412,281,2.274,285,0.864,286,1.733,287,1.733,288,0.888,289,2.315,290,1.153,291,1.023,292,2.082,293,0.994,294,1.153,295,1.153,296,1.996,297,1.153,298,1.023,299,1.153,300,0.994,301,1.153,302,0.994,303,1.153,304,0.994,305,0.774,306,1.153,307,1.023,308,1.733,309,1.085,310,0.994,311,1.153,312,0.994,313,1.153,314,0.994,315,1.153,316,1.023,317,1.733,318,1.085,319,0.994,320,0.774,321,0.994,322,1.153,323,1.023,324,1.733,325,1.085,326,1.023,327,0.841,328,0.994,329,1.023,330,0.994,331,0.994,332,1.153,333,0.994,334,1.153,335,0.994,336,1.153,337,1.054,338,1.119,339,1.153,345,3.811,347,4.405,349,3.811,350,3.811,351,3.172,352,4.237,356,2.684,357,2.975,359,3.172,370,3.811,380,3.811,381,2.989,382,3.172,384,3.811,385,3.172,386,2.111,387,1.574,388,1.64,389,1.64,390,1.885,391,1.713,392,1.513,405,2.257,407,2.257,408,2.111,409,2.257,410,2.111,412,2.257,413,2.111,423,3.172,505,4.402,507,2.696,508,3.873,509,1.681,550,2.684,551,3.601,552,5.518,553,4.593,554,4.665,555,4.593,556,3.666,557,4.593,558,4.593,559,4.593,560,4.593,561,3.056,562,4.133,563,4.593,564,3.056,565,4.593,566,3.056,567,3.056,568,3.056,569,4.593,570,3.056,571,3.056,572,3.056,573,3.056,574,3.056,575,3.056,576,6.136,577,6.909,578,3.056,579,3.056,580,3.056,581,1.989,582,2.684,583,3.056,584,2.684,585,2.684,586,2.439,587,3.056,588,3.056,589,3.056,590,4.593,591,3.056,592,3.056,593,4.593,594,3.056,595,3.056,596,2.684,597,3.056,598,3.056,599,3.056,600,3.056,601,3.056,602,3.056,603,3.056,604,5.518,605,3.056,606,3.056,607,3.056,608,2.684,609,2.684,610,3.056,611,3.056,612,4.593,613,3.056,614,3.056,615,4.593,616,3.056,617,6.136,618,6.136,619,6.136,620,6.136,621,4.593,622,2.574,623,3.391,624,4.593,625,2.684,626,2.257,627,3.056]],["title/modules/AdminModule.html",[431,1.138,628,3.139]],["body/modules/AdminModule.html",[3,0.145,4,0.117,5,0.102,21,0.011,56,0.145,57,0.007,58,0.008,59,0.007,60,0.007,140,0.535,143,2.526,245,0.659,285,1.557,296,2.701,387,2.837,388,2.956,389,2.956,431,1.474,433,2.016,434,2.727,435,4.045,436,2.837,437,2.956,438,2.213,443,4.276,445,3.704,446,2.956,447,2.626,449,2.864,450,4.051,451,3.087,453,3.233,455,3.397,465,4.492,466,4.767,469,4.767,470,4.257,471,3.397,472,4.492,473,3.585,474,3.585,475,4.257,476,3.397,477,4.257,478,3.397,479,4.492,480,3.585,486,4.767,487,3.585,628,6.39,629,4.838,630,4.838,631,4.838,632,5.734,633,5.508,634,5.508,635,4.838]],["title/modules/AdminRoutingModule.html",[431,1.138,632,2.936]],["body/modules/AdminRoutingModule.html",[3,0.168,4,0.135,5,0.118,21,0.011,48,1.45,56,0.168,57,0.008,58,0.009,59,0.008,60,0.008,140,0.488,143,2.334,175,0.979,245,0.763,250,2.265,296,2.456,433,2.334,438,2.563,449,3.132,497,3.744,498,3.832,499,4.23,500,3.744,504,3.934,632,5.212,635,5.602,636,6.378]],["title/components/AppComponent.html",[175,0.652,298,1.424]],["body/components/AppComponent.html",[3,0.09,4,0.072,5,0.064,7,0.273,8,0.911,9,0.813,18,0.551,20,0.573,21,0.011,22,1.643,33,1.643,48,1.636,51,2.217,56,0.09,57,0.004,58,0.006,59,0.004,60,0.004,77,0.836,78,1.763,79,2.448,84,1.075,86,0.912,88,1.146,91,1.625,92,0.885,93,0.645,112,0.573,113,1.885,140,0.358,163,2.958,175,0.905,176,1.114,177,1.828,178,1.253,179,1.42,180,1.292,181,1.146,187,1.082,188,2.073,189,2.073,190,2.911,191,3.149,193,2.073,195,2.073,221,1.232,228,2.05,244,1.42,245,0.41,249,1.695,253,1.993,285,0.968,286,1.885,287,1.885,288,0.995,289,2.447,290,1.292,291,1.146,292,2.226,293,1.114,294,1.292,295,1.292,296,1.114,297,1.292,298,2.172,299,1.292,300,1.114,301,1.292,302,1.114,303,1.292,304,1.114,305,1.643,306,1.292,307,1.146,308,1.885,309,1.216,310,1.114,311,1.292,312,1.114,313,1.292,314,1.114,315,1.292,316,1.146,317,1.885,318,1.216,319,1.114,320,0.867,321,1.114,322,1.292,323,1.146,324,1.885,325,1.216,326,1.146,327,1.374,328,1.114,329,1.146,330,1.114,331,1.114,332,1.292,333,1.114,334,1.292,335,1.114,336,1.292,337,1.18,338,1.253,339,1.292,357,3.085,378,2.932,392,1.695,394,4.355,395,1.837,399,2.732,401,4.387,509,1.253,626,3.688,637,3.006,638,2.572,639,5.898,640,4.995,641,5.181,642,5.181,643,5.181,644,5.898,645,4.995,646,4.387,647,4.995,648,4.995,649,2.732,650,4.441,651,4.585,652,4.839,653,4.995,654,4.995,655,5.176,656,3.423,657,6.484,658,3.423,659,3.423,660,3.423,661,4.995,662,3.423,663,2.228,664,4.995,665,4.387,666,4.387,667,3.423,668,3.45,669,3.423,670,4.355,671,3.423,672,3.006,673,3.006,674,3.006,675,4.995,676,3.423,677,3.423,678,5.181,679,4.355,680,4.387,681,4.995,682,4.995,683,4.995,684,3.987,685,4.995,686,3.45,687,3.423,688,2.527,689,3.423,690,2.732,691,3.423,692,3.423,693,3.423,694,3.006,695,3.423,696,3.423,697,3.423,698,2.111,699,4.073,700,2.732,701,2.527,702,2.732,703,2.732,704,2.732,705,3.006,706,3.006,707,3.423,708,4.387,709,3.006,710,4.387,711,3.006,712,3.423,713,3.423,714,3.423,715,3.423,716,4.995,717,3.423,718,3.423,719,3.423,720,1.763,721,3.423]],["title/modules/AppModule.html",[431,1.138,722,3.139]],["body/modules/AppModule.html",[3,0.125,4,0.1,5,0.088,21,0.011,56,0.125,57,0.006,58,0.007,59,0.006,60,0.006,114,2.572,123,1.972,140,0.528,143,2.297,144,2.038,145,2.447,245,0.568,248,2.352,285,1.343,298,2.868,387,2.447,431,1.271,433,1.739,434,2.352,435,3.771,436,3.619,437,3.771,438,1.909,443,4.111,445,3.368,446,2.55,447,2.265,449,2.604,453,2.789,455,2.93,459,5.009,460,2.789,461,3.508,465,4.084,722,6.499,723,4.173,724,4.173,725,4.173,726,4.173,727,4.173,728,5.513,729,5.513,730,5.298,731,5.513,732,5.513,733,4.751,734,6.275,735,5.009,736,2.789,737,5.009,738,4.751,739,4.751,740,6.275,741,4.751,742,5.966,743,6.275,744,2.447,745,4.634,746,4.334,747,4.173,748,4.751,749,3.792,750,3.792,751,4.751,752,4.084,753,4.173,754,4.751,755,4.751,756,4.751,757,4.173,758,4.751,759,4.751,760,4.751,761,4.751,762,5.519,763,5.966,764,5.609]],["title/modules/AppRoutingModule.html",[431,1.138,728,2.936]],["body/modules/AppRoutingModule.html",[3,0.16,4,0.128,5,0.112,21,0.011,48,1.374,56,0.16,57,0.007,58,0.009,59,0.007,60,0.007,140,0.477,143,2.212,245,0.723,250,2.147,433,2.212,438,2.428,449,3.033,497,3.547,498,3.745,499,4.096,500,4.611,501,4.174,502,4.174,503,3.933,728,5.047,746,5.047,747,5.308,765,6.044,766,7.307,767,4.824,768,6.419,769,6.044,770,6.044,771,6.044,772,6.044,773,4.824,774,6.044,775,6.044]],["title/interfaces/AreaName.html",[0,1.107,510,2.495]],["body/interfaces/AreaName.html",[0,2.129,2,2.699,3,0.161,4,0.129,5,0.113,7,0.486,8,1.337,12,3.631,17,3.131,18,0.586,20,1.453,21,0.011,22,1.54,29,2.899,45,2.523,56,0.161,57,0.007,58,0.009,59,0.007,93,0.796,135,3.158,227,1.869,505,4.226,506,4.198,507,3.568,508,3.407,509,2.225,510,4.622,511,5.322,512,4.523]],["title/interfaces/AreaType.html",[0,1.107,512,2.622]],["body/interfaces/AreaType.html",[0,2.129,2,2.699,3,0.161,4,0.129,5,0.113,7,0.486,8,1.337,12,3.631,17,3.131,18,0.586,20,1.453,21,0.011,22,1.54,29,3.899,45,2.523,56,0.161,57,0.007,58,0.009,59,0.007,93,0.796,135,3.158,227,1.869,505,4.226,506,4.198,507,3.568,508,3.407,509,2.225,510,4.304,511,3.957,512,4.857]],["title/components/AuthComponent.html",[175,0.652,300,1.383]],["body/components/AuthComponent.html",[3,0.087,4,0.07,5,0.061,7,0.264,8,0.887,9,0.791,18,0.568,20,0.552,21,0.011,33,1.463,37,1.634,48,1.448,56,0.087,57,0.004,58,0.006,59,0.004,60,0.004,77,0.814,79,2.949,84,1.046,86,0.95,88,1.105,91,1.582,92,0.862,93,0.636,112,1.137,113,2.404,114,1.78,123,2.819,134,1.199,140,0.412,152,1.582,163,2.477,175,0.886,176,1.073,177,1.78,178,1.208,179,1.369,180,1.245,181,1.105,185,1.453,186,2.655,187,1.043,188,2.018,189,2.018,190,2.901,191,3.136,193,2.018,195,2.018,200,4.264,207,2.93,211,3.59,216,5.427,218,3.944,221,1.753,225,4.264,227,1.959,228,1.826,231,4.19,244,1.369,245,0.395,246,2.436,247,1.771,248,1.634,249,1.634,250,1.172,253,2.517,255,2.436,256,2.436,273,3.358,281,2.407,283,3.165,285,0.933,286,1.835,287,2.179,288,0.959,289,2.404,290,1.245,291,1.105,292,2.179,293,1.073,294,1.245,295,1.245,296,1.073,297,1.245,298,1.105,299,1.245,300,2.073,301,1.245,302,1.073,303,1.245,304,1.073,305,1.232,306,1.245,307,1.105,308,1.835,309,1.172,310,1.073,311,1.245,312,1.073,313,1.245,314,1.073,315,1.245,316,1.105,317,1.835,318,1.172,319,1.073,320,0.836,321,1.073,322,1.245,323,1.105,324,1.835,325,1.172,326,1.105,327,0.907,328,1.073,329,1.105,330,1.073,331,1.073,332,1.245,333,1.073,334,1.245,335,1.073,336,1.245,337,1.138,338,1.208,339,1.245,395,1.771,525,5.086,582,4.271,649,2.634,650,4.383,670,3.59,674,2.898,699,3.358,767,3.881,776,2.898,777,5.774,778,4.862,779,5.774,780,5.072,781,4.609,782,6.242,783,5.086,784,6.371,785,4.862,786,5.774,787,4.862,788,3.299,789,3.299,790,3.299,791,3.299,792,4.862,793,3.299,794,3.299,795,3.299,796,3.299,797,3.299,798,3.299,799,3.299,800,3.903,801,3.299,802,2.898,803,3.299,804,3.299,805,2.634,806,3.299,807,4.862,808,3.299,809,2.898,810,2.436,811,2.898,812,3.299,813,3.299,814,2.147,815,3.299,816,2.436,817,2.278,818,2.898,819,3.299,820,3.299,821,3.299,822,3.299,823,3.299,824,3.299,825,3.299,826,3.299,827,3.299,828,3.299,829,2.725,830,4.862,831,2.436,832,2.999,833,4.862]],["title/guards/AuthGuard.html",[746,2.936,834,2.622]],["body/guards/AuthGuard.html",[3,0.118,4,0.094,5,0.083,7,0.356,9,0.978,18,0.48,21,0.011,56,0.118,57,0.005,58,0.007,59,0.005,60,0.008,64,4.7,65,4.441,74,2.901,77,1.007,84,0.959,86,0.72,92,1.066,93,0.563,112,1.22,113,2.269,114,2.491,119,4.801,120,4.441,121,4.441,123,1.85,127,4.801,134,1.483,140,0.413,143,1.632,155,4.198,175,0.923,181,2.014,185,1.798,218,4.518,227,1.849,245,0.533,250,1.583,253,2.24,498,2.868,509,2.201,515,4.491,521,3.37,542,2.126,562,3.371,581,5.303,638,2.296,746,4.154,767,5.816,773,6.257,800,3.474,834,4.494,835,3.559,836,3.916,837,4.801,838,5.283,839,4.441,840,5.283,841,3.559,842,4.458,843,5.283,844,3.228,845,6.4,846,5.283,847,4.154,848,5.283,849,5.283,850,3.916,851,6.885,852,6.4,853,4.458,854,5.283,855,6.014,856,4.441,857,3.709,858,4.801,859,4.801,860,5.283,861,4.801,862,6.4,863,5.816,864,4.801,865,5.283,866,5.283,867,5.978,868,6.014,869,5.283,870,6.014,871,1.902,872,3.559,873,3.559,874,2.392,875,3.292,876,3.916,877,3.916]],["title/modules/AuthModule.html",[431,1.138,878,3.139]],["body/modules/AuthModule.html",[3,0.149,4,0.119,5,0.104,21,0.011,56,0.149,57,0.007,58,0.008,59,0.007,60,0.007,140,0.53,143,2.56,245,0.673,247,3.02,285,1.591,300,2.716,335,2.716,431,1.506,433,2.06,434,2.787,435,4.085,436,2.898,437,3.02,438,2.261,445,3.754,446,3.02,447,2.683,449,2.903,450,4.106,451,3.154,453,3.303,470,4.314,471,3.471,475,4.314,476,3.471,477,4.314,478,3.471,481,4.831,482,3.887,486,4.831,487,3.663,491,5.584,878,6.411,879,4.943,880,4.943,881,4.943,882,5.764,883,5.628,884,5.628,885,4.943,886,5.628,887,4.943]],["title/modules/AuthRoutingModule.html",[431,1.138,882,2.936]],["body/modules/AuthRoutingModule.html",[3,0.165,4,0.132,5,0.116,21,0.011,48,1.423,56,0.165,57,0.007,58,0.009,59,0.007,60,0.007,140,0.484,143,2.292,175,0.961,245,0.749,250,2.224,300,2.429,433,2.292,438,2.516,449,3.098,497,3.676,498,3.803,499,4.184,500,4.382,501,4.325,502,4.325,503,4.076,504,3.863,882,5.156,885,5.501,888,6.263]],["title/injectables/AuthService.html",[650,2.622,871,1.344]],["body/injectables/AuthService.html",[0,0.687,3,0.07,4,0.056,5,0.049,7,0.211,8,0.748,9,1.001,18,0.59,20,0.441,21,0.011,22,1.039,23,2.833,33,0.668,48,1.737,51,1.821,56,0.07,57,0.003,58,0.005,59,0.003,60,0.003,77,0.687,79,3.215,84,0.883,86,0.964,92,1.091,93,0.576,112,1.297,113,2.788,114,1.501,123,1.702,134,1.91,135,0.995,140,0.439,144,1.131,145,1.358,152,2.289,155,1.626,163,3.019,221,1.822,227,1.548,228,0.834,245,0.315,253,1.892,273,2.833,305,1.832,320,0.668,357,2.824,394,4.195,395,3.303,397,2.316,399,4.535,447,1.257,460,1.547,522,1.947,539,3.718,622,1.478,625,4.423,638,1.358,650,2.53,652,4.429,663,4.429,680,2.316,684,2.104,744,1.358,752,2.67,753,2.316,782,4.991,800,3.245,802,3.603,811,2.316,817,1.821,829,1.478,831,3.718,839,1.947,844,1.415,871,1.297,874,1.415,876,2.316,889,1.415,890,2.316,891,3.826,892,5.035,893,5.035,894,5.682,895,4.535,896,4.535,897,5.682,898,5.682,899,5.682,900,4.102,901,5.682,902,4.991,903,4.102,904,4.102,905,1.947,906,4.813,907,4.102,908,2.636,909,2.636,910,2.636,911,2.636,912,2.636,913,2.636,914,2.636,915,4.102,916,2.636,917,4.102,918,2.636,919,2.636,920,4.102,921,2.636,922,4.102,923,4.102,924,2.636,925,5.035,926,4.102,927,2.636,928,3.603,929,2.636,930,2.636,931,2.636,932,2.636,933,2.636,934,2.636,935,2.636,936,1.478,937,2.636,938,2.636,939,2.833,940,2.636,941,4.102,942,2.636,943,2.636,944,2.636,945,2.636,946,3.603,947,6.518,948,2.636,949,2.636,950,5.035,951,6.518,952,5.035,953,3.274,954,5.035,955,5.682,956,5.035,957,4.102,958,2.316,959,4.102,960,4.102,961,4.102,962,2.201,963,4.102,964,4.102,965,5.682,966,4.423,967,4.535,968,2.636,969,2.636,970,4.102,971,5.035,972,5.035,973,5.035,974,2.636,975,2.636,976,5.035,977,2.636,978,2.316,979,2.316,980,2.636,981,4.102,982,2.636,983,2.636,984,2.636,985,2.636,986,2.636,987,2.636,988,2.636,989,2.636,990,2.636,991,2.636,992,4.102,993,2.636,994,2.636,995,2.636,996,4.102,997,4.423,998,2.636,999,2.636,1000,2.636,1001,2.636,1002,2.316,1003,2.636,1004,2.636,1005,2.636,1006,2.636,1007,1.821,1008,3.274,1009,2.316,1010,5.035,1011,2.401,1012,2.316,1013,1.947,1014,2.636,1015,2.316,1016,2.104,1017,2.104,1018,2.636,1019,2.636,1020,2.636,1021,2.636,1022,2.636,1023,2.636,1024,2.636,1025,2.636,1026,1.947,1027,2.636,1028,2.636,1029,4.102,1030,2.636,1031,4.102,1032,2.636,1033,2.636,1034,2.636,1035,4.102,1036,2.636,1037,2.636,1038,1.358,1039,2.636,1040,2.636,1041,3.603,1042,2.636,1043,4.102,1044,4.102,1045,2.636,1046,2.636,1047,2.636,1048,3.603,1049,2.636,1050,2.636,1051,2.636,1052,2.636,1053,2.636,1054,2.636,1055,2.636,1056,2.636,1057,2.636,1058,2.636]],["title/injectables/BlockSyncService.html",[871,1.344,1059,3.139]],["body/injectables/BlockSyncService.html",[3,0.086,4,0.068,5,0.06,7,0.259,8,0.874,9,1.188,18,0.612,20,1.256,21,0.011,22,2.191,33,1.447,47,2.573,48,1.705,51,2.803,56,0.086,57,0.004,58,0.006,59,0.004,60,0.004,73,3.522,77,0.803,79,2.797,84,1.032,86,0.917,92,1.295,93,0.684,95,2.583,112,1.182,113,2.382,134,1.182,140,0.455,144,1.389,145,1.667,152,2.441,221,1.801,228,1.806,245,0.387,253,1.755,272,3.121,327,1.319,357,3.032,378,2.814,391,1.814,392,1.603,393,2.107,638,1.667,642,5.016,643,5.016,651,4.353,871,1.516,874,1.737,889,1.737,936,1.814,962,1.737,1059,3.54,1060,6.846,1061,2.844,1062,4.795,1063,4.795,1064,4.795,1065,4.795,1066,4.795,1067,4.795,1068,3.237,1069,4.754,1070,4.795,1071,4.795,1072,5.988,1073,5.394,1074,3.237,1075,4.217,1076,4.795,1077,4.609,1078,5.71,1079,3.237,1080,4.795,1081,3.237,1082,3.388,1083,4.795,1084,3.237,1085,4.795,1086,6.313,1087,3.237,1088,4.795,1089,6.313,1090,6.313,1091,6.313,1092,7.501,1093,6.313,1094,6.313,1095,3.237,1096,3.522,1097,3.237,1098,3.237,1099,1.737,1100,3.237,1101,2.584,1102,3.237,1103,3.237,1104,3.237,1105,5.71,1106,3.237,1107,3.237,1108,2.844,1109,4.795,1110,3.237,1111,3.237,1112,3.237,1113,3.237,1114,3.237,1115,3.237,1116,3.237,1117,3.237,1118,4.795,1119,3.237,1120,3.237,1121,3.237,1122,3.237,1123,3.237,1124,4.795,1125,4.795,1126,3.237,1127,3.827,1128,4.795,1129,3.237,1130,3.237,1131,4.795,1132,3.237,1133,4.795,1134,3.237,1135,4.795,1136,4.795,1137,3.237,1138,3.237,1139,4.212,1140,3.237,1141,2.844,1142,3.237,1143,3.237,1144,3.237,1145,3.237,1146,3.237,1147,3.237,1148,3.237,1149,4.795,1150,3.237,1151,3.237,1152,3.827,1153,4.795,1154,3.237,1155,3.237,1156,3.237,1157,4.795,1158,3.237,1159,3.237,1160,3.237,1161,3.237,1162,3.237,1163,3.237,1164,3.237]],["title/classes/BlocksBloom.html",[60,0.005,1165,2.622]],["body/classes/BlocksBloom.html",[1,3.748,3,0.143,4,0.115,5,0.101,7,0.434,8,1.247,18,0.661,20,1.473,21,0.011,22,2.188,33,1.376,56,0.143,57,0.006,58,0.008,59,0.006,60,0.01,62,2.114,86,0.97,93,0.508,95,1.988,140,0.33,227,1.67,320,1.376,327,1.882,509,1.988,720,3.523,829,3.044,1082,4.44,1165,4.619,1166,3.535,1167,5.172,1168,5.172,1169,5.172,1170,5.172,1171,5.172,1172,5.431,1173,5.431,1174,5.431,1175,5.431,1176,5.431,1177,3.751,1178,4.998,1179,2.59,1180,3.535,1181,3.535,1182,3.751,1183,3.751,1184,3.35,1185,3.188,1186,3.751,1187,3.751,1188,3.751,1189,3.535,1190,3.535]],["title/interfaces/Category.html",[0,1.107,12,2.105]],["body/interfaces/Category.html",[0,2.129,2,2.699,3,0.161,4,0.129,5,0.113,7,0.486,8,1.337,12,3.899,17,4.211,18,0.586,20,1.453,21,0.011,22,1.54,29,2.899,45,2.523,56,0.161,57,0.007,58,0.009,59,0.007,93,0.796,135,3.158,227,1.869,505,4.226,506,4.198,507,3.568,508,3.407,509,2.225,510,4.304,511,3.957,512,4.523]],["title/classes/Conversion.html",[60,0.005,720,2.189]],["body/classes/Conversion.html",[1,3.836,3,0.14,4,0.112,5,0.098,7,0.423,8,1.228,18,0.675,20,1.457,21,0.011,22,2.179,33,1.343,56,0.14,57,0.006,58,0.008,59,0.006,60,0.01,62,2.064,86,1,93,0.496,95,1.94,140,0.322,227,1.63,320,1.343,327,1.853,509,2.711,720,3.814,829,2.972,1082,4.58,1165,4.155,1166,3.451,1167,3.661,1168,3.661,1169,3.661,1170,3.661,1171,3.661,1177,3.661,1178,5.152,1179,2.528,1180,3.451,1181,3.451,1182,3.661,1183,3.661,1184,3.27,1185,3.112,1186,5.115,1187,5.115,1188,5.115,1189,4.82,1190,4.82,1191,5.302,1192,5.302,1193,5.302,1194,5.302,1195,5.302,1196,5.302,1197,5.302]],["title/components/CreateAccountComponent.html",[175,0.652,302,1.383]],["body/components/CreateAccountComponent.html",[3,0.081,4,0.065,5,0.057,7,0.245,8,0.841,9,0.5,12,3.555,14,4.428,16,3.694,18,0.632,21,0.011,22,1.95,29,2.198,33,1.168,45,2.553,56,0.081,57,0.004,58,0.006,59,0.004,60,0.004,67,3,77,0.772,84,0.992,86,0.935,88,2.651,91,2.604,92,0.544,93,0.576,112,0.772,114,1.124,123,2.297,134,1.137,135,2.787,140,0.42,152,1.5,175,0.849,176,0.999,177,1.687,178,1.124,179,1.275,180,1.159,181,1.029,185,1.378,186,2.545,187,0.971,188,1.913,189,1.913,190,2.88,191,3.11,193,1.913,195,1.913,200,4.087,207,2.828,211,3.404,215,2.451,216,5.111,217,4.428,221,1.517,225,4.087,227,1.417,228,1.458,231,4.065,244,1.275,245,0.367,246,2.268,247,1.648,248,1.521,249,1.521,253,1.701,255,2.268,256,5.681,258,2.698,272,4.003,281,2.283,282,4.505,283,5.465,285,0.868,286,1.74,287,1.74,288,0.893,289,2.321,290,1.159,291,1.029,292,2.088,293,0.999,294,1.159,295,1.159,296,0.999,297,1.159,298,1.029,299,1.159,300,0.999,301,1.159,302,2.001,303,1.159,304,0.999,305,0.778,306,1.159,307,1.029,308,1.74,309,1.091,310,0.999,311,1.159,312,0.999,313,1.159,314,0.999,315,1.159,316,1.029,317,1.74,318,1.091,319,0.999,320,0.778,321,0.999,322,1.159,323,1.029,324,1.74,325,1.091,326,1.029,327,0.845,328,0.999,329,1.029,330,0.999,331,0.999,332,1.159,333,0.999,334,1.159,335,0.999,336,1.159,337,1.059,338,1.124,339,1.159,344,3.822,391,1.721,392,1.521,393,1.999,402,2.698,403,2.698,421,4.861,422,5.526,463,5.844,509,1.687,510,1.803,781,4.418,783,4.91,805,3.68,1198,6.952,1199,2.698,1200,5.534,1201,4.61,1202,4.087,1203,4.087,1204,5.534,1205,4.087,1206,5.534,1207,5.301,1208,4.61,1209,3.071,1210,3.071,1211,3.071,1212,3.071,1213,3.071,1214,3.071,1215,3.071,1216,3.071,1217,3.071,1218,3.071,1219,3.071,1220,3.071,1221,3.071,1222,5.534,1223,3.071,1224,6.592,1225,3.071,1226,3.071,1227,3.071,1228,3.071,1229,3.071,1230,3.071,1231,3.071,1232,3.071,1233,3.071,1234,3.071,1235,4.91,1236,4.61,1237,4.049,1238,4.61,1239,5.403,1240,5.403,1241,4.542,1242,4.61,1243,4.049]],["title/classes/CustomErrorStateMatcher.html",[60,0.005,231,2.622]],["body/classes/CustomErrorStateMatcher.html",[3,0.153,4,0.123,5,0.108,7,0.463,9,0.943,18,0.463,21,0.011,48,1.317,56,0.153,57,0.007,58,0.009,59,0.007,60,0.007,62,2.256,77,1.193,86,0.694,92,1.027,93,0.542,112,0.97,134,1.429,140,0.432,185,2.129,227,2.371,231,4.393,247,3.11,305,1.805,487,3.772,581,4.636,1075,6.208,1244,6.257,1245,5.091,1246,7.712,1247,7.123,1248,7.123,1249,8.044,1250,7.066,1251,8.044,1252,8.044,1253,5.796,1254,5.686,1255,7.123,1256,5.796,1257,5.796,1258,5.796,1259,5.796]],["title/classes/CustomValidator.html",[60,0.005,1260,3.393]],["body/classes/CustomValidator.html",[3,0.145,4,0.117,5,0.102,7,0.44,9,1.123,18,0.551,20,1.262,21,0.011,48,1.713,56,0.145,57,0.007,58,0.008,59,0.007,60,0.007,62,2.144,72,5.096,77,1.156,86,0.826,92,1.223,93,0.646,112,1.156,114,2.016,134,1.859,140,0.334,221,1.702,227,1.693,247,2.956,305,2.002,800,2.626,1038,3.554,1075,5.834,1254,5.509,1260,5.509,1261,4.838,1262,8.302,1263,6.902,1264,6.902,1265,6.902,1266,8.137,1267,5.508,1268,6.902,1269,7.538,1270,8.302,1271,5.508,1272,5.508,1273,5.508,1274,6.902,1275,5.508,1276,5.508,1277,5.508,1278,5.508,1279,5.508]],["title/components/ErrorDialogComponent.html",[175,0.652,304,1.383]],["body/components/ErrorDialogComponent.html",[3,0.122,4,0.098,5,0.086,7,0.369,8,1.123,9,0.751,18,0.492,21,0.011,42,3.28,56,0.122,57,0.006,58,0.007,59,0.006,60,0.006,78,3.568,84,0.994,86,0.737,88,1.546,91,2.003,92,0.818,93,0.692,140,0.374,175,1.063,176,1.502,177,2.254,178,1.69,179,1.916,180,1.742,181,1.546,187,1.46,188,2.555,189,2.555,190,2.984,191,3.241,193,2.555,195,2.555,244,1.916,245,0.552,285,1.305,286,2.323,287,2.323,288,1.342,289,2.788,290,1.742,291,1.546,292,2.614,293,1.502,294,1.742,295,1.742,296,1.502,297,1.742,298,1.546,299,1.742,300,1.502,301,1.742,302,1.502,303,1.742,304,2.404,305,2.081,306,1.742,307,1.546,308,2.323,309,1.64,310,1.502,311,1.742,312,1.502,313,1.742,314,1.502,315,1.742,316,1.546,317,2.323,318,1.64,319,1.502,320,1.17,321,1.502,322,1.742,323,1.546,324,2.323,325,1.64,326,1.546,327,1.27,328,1.502,329,1.546,330,1.502,331,1.502,332,1.742,333,1.502,334,1.742,335,1.502,336,1.742,337,1.592,338,1.69,339,1.742,381,3.005,562,3.451,1011,2.936,1280,6.085,1281,5.115,1282,4.055,1283,5.408,1284,6.927,1285,6.157,1286,4.617,1287,4.617,1288,4.617,1289,4.617,1290,4.617,1291,4.617,1292,3.685,1293,4.617,1294,6.157,1295,6.157]],["title/injectables/ErrorDialogService.html",[652,2.767,871,1.344]],["body/injectables/ErrorDialogService.html",[3,0.145,4,0.116,5,0.102,7,0.438,8,1.256,9,1.12,18,0.601,21,0.011,33,1.391,42,3.057,48,1.248,56,0.145,57,0.007,58,0.008,59,0.007,60,0.007,77,1.153,78,4.272,84,1.482,86,0.944,92,1.221,93,0.645,112,0.919,114,2.009,123,3.275,134,1.354,140,0.457,227,2.117,228,1.736,245,0.657,304,1.786,626,4.053,638,2.827,652,4.482,871,2.178,874,2.946,889,2.946,1281,4.053,1283,6.931,1292,4.381,1296,7.14,1297,4.821,1298,7.525,1299,6.887,1300,5.489,1301,8.129,1302,6.887,1303,6.887,1304,5.489,1305,5.489,1306,6.887,1307,4.821,1308,4.821,1309,7.525,1310,5.489,1311,5.489,1312,5.489,1313,5.489]],["title/interceptors/ErrorInterceptor.html",[729,2.936,814,2.767]],["body/interceptors/ErrorInterceptor.html",[3,0.131,4,0.105,5,0.092,7,0.396,9,1.05,18,0.516,20,0.831,21,0.011,56,0.131,57,0.006,58,0.008,59,0.006,60,0.006,73,3.061,77,1.081,84,1.39,86,0.773,92,1.145,93,0.604,112,0.831,134,1.77,140,0.49,185,1.483,218,4.415,245,0.594,249,2.457,250,1.763,253,2.206,305,1.926,357,3.414,392,2.457,509,1.817,521,3.764,526,4.672,542,2.367,652,5.258,673,4.36,729,4.46,744,2.556,816,3.665,871,2.042,966,4.36,1007,3.428,1009,4.36,1011,2.367,1041,4.36,1099,2.664,1314,3.665,1315,4.36,1316,4.768,1317,4.963,1318,4.963,1319,4.768,1320,5.613,1321,5.613,1322,4.963,1323,3.665,1324,3.665,1325,4.768,1326,5.155,1327,4.36,1328,4.963,1329,4.963,1330,7.178,1331,4.963,1332,4.963,1333,4.963,1334,6.458,1335,4.963,1336,4.963,1337,6.458,1338,6.458,1339,4.963,1340,4.46,1341,4.203,1342,5.155,1343,4.36,1344,4.963,1345,4.963,1346,4.963,1347,6.458,1348,4.963,1349,4.963,1350,4.36,1351,5.155,1352,4.963,1353,4.963,1354,6.458,1355,4.963,1356,4.963,1357,4.963,1358,4.36,1359,4.963,1360,4.963]],["title/components/FooterComponent.html",[175,0.652,307,1.424]],["body/components/FooterComponent.html",[3,0.127,4,0.102,5,0.089,7,0.385,21,0.01,56,0.127,57,0.006,58,0.008,59,0.006,60,0.006,77,1.06,84,1.523,86,0.758,88,1.613,91,2.06,93,0.662,112,0.807,140,0.292,175,1.085,176,1.567,177,2.318,178,1.763,179,1.999,180,1.818,181,1.613,185,1.893,186,3.253,187,1.523,188,2.628,189,2.628,190,2.993,191,3.252,193,2.628,195,2.628,207,3.455,221,1.562,244,1.999,245,0.576,285,1.362,286,2.39,287,2.39,288,1.4,289,2.836,290,1.818,291,1.613,292,2.67,293,1.567,294,1.818,295,1.818,296,1.567,297,1.818,298,1.613,299,1.818,300,1.567,301,1.818,302,1.567,303,1.818,304,1.567,305,1.221,306,1.818,307,2.517,308,2.39,309,1.711,310,1.567,311,1.818,312,1.567,313,1.818,314,1.567,315,1.818,316,1.613,317,2.39,318,1.711,319,1.567,320,1.221,321,1.567,322,1.818,323,1.613,324,2.39,325,1.711,326,1.613,327,1.325,328,1.567,329,1.613,330,1.567,331,1.567,332,1.818,333,1.567,334,1.818,335,1.567,336,1.818,337,1.661,338,1.763,339,1.818,1016,5.055,1017,5.055,1361,4.231,1362,4.676,1363,7.074,1364,6.333,1365,4.817,1366,4.817,1367,6.333]],["title/components/FooterStubComponent.html",[175,0.652,309,1.51]],["body/components/FooterStubComponent.html",[3,0.134,4,0.107,5,0.094,21,0.01,56,0.192,57,0.006,58,0.008,59,0.006,60,0.009,88,1.697,91,2.13,93,0.679,140,0.308,175,1.004,176,1.649,177,2.396,178,2.654,180,1.913,181,1.697,187,1.603,190,2.999,191,3.274,245,0.606,285,1.433,286,2.47,287,2.47,288,1.473,289,2.892,290,1.913,291,1.697,292,2.736,293,1.649,294,1.913,295,1.913,296,1.649,297,1.913,298,1.697,299,1.913,300,1.649,301,1.913,302,1.649,303,1.913,304,1.649,305,1.284,306,1.913,307,1.697,308,2.47,309,2.722,310,1.649,311,1.913,312,1.649,313,1.913,314,1.649,315,1.913,316,1.697,317,2.47,318,2.325,319,1.649,320,1.284,321,1.649,322,1.913,323,1.697,324,2.47,325,2.325,326,1.697,327,1.394,328,1.649,329,1.697,330,1.649,331,1.649,332,1.913,333,1.649,334,1.913,335,1.649,336,1.913,337,1.748,338,1.855,339,1.913,431,1.356,516,2.841,698,3.126,1362,4.834,1368,3.743,1369,5.788,1370,3.743]],["title/injectables/GlobalErrorHandler.html",[730,2.767,871,1.344]],["body/injectables/GlobalErrorHandler.html",[3,0.109,4,0.088,5,0.077,7,0.331,8,1.042,9,1.149,18,0.612,20,1.34,21,0.011,22,1.448,33,1.048,48,1.605,56,0.151,57,0.005,58,0.007,59,0.005,60,0.007,77,0.957,78,2.131,84,1.23,86,0.887,92,1.252,93,0.661,112,1.096,114,2.092,123,1.717,134,1.02,135,2.157,140,0.429,152,1.346,155,2.552,218,4.216,221,1.742,227,2.171,228,1.308,245,0.495,250,1.47,253,2.498,305,2.252,357,3.181,515,4.296,562,3.67,690,3.303,730,3.72,737,5.227,744,2.131,871,1.807,889,2.221,936,2.319,939,3.947,967,3.303,1007,4.522,1008,3.303,1011,1.973,1326,4.563,1340,2.858,1341,2.693,1371,6.118,1372,3.303,1373,4.835,1374,5.752,1375,5.716,1376,7.032,1377,5.716,1378,3.634,1379,5.716,1380,5.02,1381,4.138,1382,5.02,1383,4.138,1384,5.752,1385,5.02,1386,4.138,1387,3.634,1388,5.02,1389,3.634,1390,3.634,1391,3.634,1392,3.634,1393,3.634,1394,3.634,1395,5.02,1396,3.634,1397,3.303,1398,3.634,1399,3.634,1400,3.634,1401,3.634,1402,3.634,1403,3.634,1404,3.634,1405,3.634,1406,3.634,1407,3.634,1408,3.634,1409,5.02,1410,5.02,1411,3.303,1412,3.634,1413,3.634,1414,3.634,1415,3.634,1416,3.634,1417,3.634]],["title/interceptors/HttpConfigInterceptor.html",[731,2.936,814,2.767]],["body/interceptors/HttpConfigInterceptor.html",[3,0.153,4,0.123,5,0.108,7,0.463,9,0.943,18,0.463,20,0.97,21,0.011,48,1.317,56,0.153,57,0.007,58,0.009,59,0.007,60,0.007,77,1.193,84,1.66,86,0.852,92,1.027,93,0.542,112,0.97,134,1.429,140,0.468,185,1.732,245,0.694,320,1.954,521,3.819,526,5.019,542,2.764,731,4.919,744,2.985,871,2.252,946,5.091,958,5.091,1314,4.28,1316,5.26,1319,5.26,1320,5.94,1321,5.94,1323,5.26,1324,4.28,1325,5.26,1418,6.774,1419,5.091,1420,5.796,1421,5.796,1422,5.796,1423,5.796,1424,4.626]],["title/classes/HttpError.html",[60,0.005,939,2.936]],["body/classes/HttpError.html",[3,0.119,4,0.095,5,0.083,7,0.359,8,1.103,9,0.732,18,0.546,20,1.367,21,0.011,22,1.933,48,1.662,56,0.16,57,0.005,58,0.007,59,0.005,60,0.007,62,1.75,78,3.521,84,1.302,86,0.724,92,0.797,93,0.421,114,2.214,123,1.866,134,1.109,135,1.697,140,0.444,152,1.463,155,2.773,218,3.669,221,1.492,227,2.101,245,0.538,250,1.597,253,2.345,305,2.246,357,2.837,515,4.404,562,4.5,690,3.589,730,2.927,737,4.829,744,2.316,871,1.913,936,2.52,939,4.721,967,3.589,1007,4.721,1008,3.589,1011,2.884,1326,4.829,1340,3.106,1341,2.927,1371,5.457,1372,3.589,1373,5.048,1374,3.95,1376,6.902,1380,3.95,1382,3.95,1384,5.313,1385,3.95,1387,3.95,1388,5.313,1389,5.313,1390,3.95,1391,3.95,1392,3.95,1393,3.95,1394,3.95,1395,5.313,1396,3.95,1397,3.589,1398,3.95,1399,3.95,1400,3.95,1401,3.95,1402,3.95,1403,3.95,1404,3.95,1405,3.95,1406,3.95,1407,3.95,1408,3.95,1409,5.313,1410,5.313,1411,3.589,1412,3.95,1413,3.95,1414,3.95,1415,3.95,1416,3.95,1417,3.95,1425,6.049]],["title/injectables/LocationService.html",[871,1.344,1207,3.139]],["body/injectables/LocationService.html",[3,0.144,4,0.115,5,0.101,7,0.435,9,1.219,16,3.05,18,0.599,20,1.386,21,0.011,29,2.594,56,0.144,57,0.006,58,0.008,59,0.006,60,0.006,77,1.147,84,1.474,86,0.97,92,1.329,93,0.701,112,1.317,134,1.94,140,0.492,144,2.334,145,2.802,245,0.651,253,1.673,391,3.05,392,2.694,521,4.245,542,2.594,638,2.802,744,2.802,871,2.166,874,2.92,889,2.92,905,4.018,906,6.111,1207,5.057,1426,4.779,1427,6.016,1428,6.91,1429,6.016,1430,6.91,1431,5.441,1432,6.849,1433,5.441,1434,5.441,1435,6.849,1436,5.441,1437,5.441,1438,5.441,1439,5.441,1440,5.441,1441,5.441]],["title/interceptors/LoggingInterceptor.html",[732,2.936,814,2.767]],["body/interceptors/LoggingInterceptor.html",[3,0.138,4,0.11,5,0.097,7,0.416,9,1.084,18,0.532,20,1.116,21,0.011,22,1.689,48,1.67,50,4.338,56,0.138,57,0.006,58,0.008,59,0.006,60,0.006,77,1.116,84,1.434,86,0.798,92,1.181,93,0.624,112,0.873,134,1.644,140,0.486,185,1.558,245,0.624,253,1.602,305,1.321,357,3.397,392,2.581,521,3.638,526,4.782,542,2.486,562,4.486,655,4.161,732,4.603,744,2.685,871,2.108,936,2.922,997,4.579,1007,3.6,1011,2.486,1314,3.849,1316,4.922,1319,4.922,1320,5.718,1321,5.718,1323,4.922,1324,3.849,1325,4.922,1378,4.579,1424,4.161,1442,4.579,1443,5.213,1444,5.213,1445,5.854,1446,6.665,1447,5.213,1448,5.213,1449,6.665,1450,5.213,1451,5.213,1452,6.665,1453,5.213,1454,5.213,1455,5.213,1456,5.213]],["title/injectables/LoggingService.html",[357,1.764,871,1.344]],["body/injectables/LoggingService.html",[3,0.119,4,0.186,5,0.083,7,0.359,8,1.103,9,1.328,18,0.668,20,1.013,21,0.011,56,0.119,57,0.005,58,0.007,59,0.005,60,0.005,77,1.013,84,0.968,86,1,92,1.447,93,0.764,112,1.344,140,0.367,221,2.119,227,1.86,245,0.538,305,2.243,357,2.511,638,2.316,749,3.589,750,5.457,871,1.913,874,2.413,875,3.32,889,2.413,1011,3.829,1457,3.95,1458,6.836,1459,6.005,1460,6.049,1461,6.049,1462,6.049,1463,6.049,1464,6.049,1465,6.049,1466,6.049,1467,4.497,1468,7.311,1469,6.049,1470,6.049,1471,4.497,1472,6.049,1473,4.497,1474,6.049,1475,4.497,1476,6.049,1477,4.497,1478,6.049,1479,4.497,1480,6.049,1481,4.497,1482,6.049,1483,4.497,1484,4.497,1485,6.049,1486,4.497,1487,4.497,1488,4.497,1489,3.95,1490,4.497,1491,4.497,1492,4.497,1493,4.497,1494,4.497,1495,4.497,1496,4.497]],["title/directives/MenuSelectionDirective.html",[288,1.236,331,1.383]],["body/directives/MenuSelectionDirective.html",[3,0.148,4,0.119,5,0.104,7,0.449,9,0.914,18,0.449,21,0.011,48,1.808,56,0.148,57,0.007,58,0.008,59,0.007,60,0.007,77,1.17,84,1.504,86,0.836,92,0.996,93,0.526,112,0.941,140,0.341,187,1.776,190,2.34,221,1.723,245,0.672,253,2.148,288,2.031,330,1.828,331,2.273,626,4.148,641,4.934,665,4.934,666,4.934,698,3.465,699,5.252,700,4.484,701,4.148,702,4.484,703,4.484,704,4.484,705,4.934,706,4.934,708,4.934,709,4.934,710,4.934,711,4.934,1497,6.071,1498,4.934,1499,6.987,1500,7.957,1501,4.484,1502,6.66,1503,6.071,1504,6.352,1505,5.618,1506,5.618,1507,4.484,1508,4.148,1509,5.618,1510,5.618]],["title/directives/MenuToggleDirective.html",[288,1.236,333,1.383]],["body/directives/MenuToggleDirective.html",[3,0.153,4,0.122,5,0.107,7,0.461,9,0.939,18,0.461,21,0.011,48,1.75,56,0.153,57,0.007,58,0.008,59,0.007,60,0.007,77,1.19,84,1.53,86,0.85,92,1.024,93,0.54,112,0.967,140,0.35,187,1.826,190,2.38,221,1.753,245,0.691,253,2.185,288,2.066,330,1.879,333,2.312,584,5.072,698,3.561,699,5.317,700,4.609,701,4.264,702,4.609,703,4.609,704,4.609,1497,6.146,1501,4.609,1502,6.705,1503,6.146,1504,6.413,1507,4.609,1508,4.264,1511,4.609,1512,7.107,1513,8.034,1514,5.774,1515,5.774,1516,5.774,1517,5.072,1518,5.774,1519,5.774,1520,5.774]],["title/interfaces/Meta.html",[0,1.107,37,2.105]],["body/interfaces/Meta.html",[0,1.951,1,3.813,2,2.122,3,0.126,4,0.101,5,0.089,6,3.111,7,0.382,8,1.149,10,3.53,11,2.679,12,2.367,13,4.351,14,3.886,15,4.351,16,3.531,17,3.245,18,0.598,19,3.381,20,1.489,21,0.011,22,1.898,24,4.351,25,4.351,26,4.351,27,4.101,28,4.101,29,2.279,30,4.351,31,3.53,32,3.886,33,2.141,34,4.351,35,4.351,36,4.351,37,3.959,38,4.351,39,3.886,40,4.493,41,2.948,42,3.457,43,2.948,44,2.679,45,3.232,46,4.101,47,2.565,48,1.086,49,3.886,50,3.111,51,2.797,52,3.111,53,3.886,54,3.886,55,3.301,56,0.126,57,0.006,58,0.008,59,0.006]],["title/interfaces/MetaResponse.html",[0,1.107,46,2.767]],["body/interfaces/MetaResponse.html",[0,1.959,1,3.587,2,2.145,3,0.128,4,0.102,5,0.09,6,3.145,7,0.386,8,1.157,10,3.568,11,2.708,12,2.393,13,4.382,14,3.914,15,4.382,16,3.557,17,3.268,18,0.566,19,3.405,20,1.49,21,0.011,22,1.907,24,4.382,25,4.382,26,4.382,27,4.13,28,4.13,29,2.304,30,4.382,31,3.568,32,3.914,33,2.146,34,4.382,35,4.382,36,4.382,37,4.047,38,4.382,39,3.914,40,4.038,41,2.98,42,2.817,43,2.98,44,2.708,45,3.243,46,4.611,47,4.038,48,1.098,49,3.914,50,3.145,51,2.817,52,3.145,53,3.914,54,3.914,55,3.337,56,0.128,57,0.006,58,0.008,59,0.006]],["title/interceptors/MockBackendInterceptor.html",[814,2.767,1521,3.139]],["body/interceptors/MockBackendInterceptor.html",[3,0.037,4,0.03,5,0.026,7,0.113,9,0.229,11,2.454,12,1.211,17,3.473,18,0.113,20,0.41,21,0.011,22,0.62,29,1.845,42,0.626,45,1.991,47,0.757,48,1.677,52,2.109,56,0.065,57,0.002,58,0.003,59,0.002,60,0.002,77,0.41,86,0.169,92,0.25,93,0.752,95,1.756,112,0.236,114,1.602,123,1.345,134,1.959,135,2.443,140,0.266,144,0.605,171,1.999,181,0.472,185,0.421,228,0.446,245,0.169,282,2.109,305,0.357,320,0.98,329,0.472,344,0.974,372,0.974,378,0.828,392,0.698,393,0.918,495,0.974,505,3.188,507,3.024,508,2.689,509,2.174,510,1.436,511,3.996,512,1.509,515,0.79,521,3.618,524,4.979,526,2.109,539,1.041,542,0.672,551,1.436,554,0.918,556,1.953,562,1.816,622,0.79,668,0.974,742,1.953,744,0.726,745,1.041,762,1.041,763,1.125,764,1.125,817,1.69,831,2.393,832,1.509,834,0.87,844,0.757,847,0.974,857,0.87,871,0.774,1011,1.167,1013,1.806,1096,0.87,1127,1.953,1179,2.288,1202,1.041,1203,1.041,1205,1.041,1241,1.041,1314,1.041,1316,1.806,1319,1.806,1320,2.857,1321,2.857,1323,1.806,1324,1.041,1325,1.806,1327,2.149,1340,0.974,1342,1.953,1350,1.238,1351,5.281,1397,1.125,1424,1.125,1427,2.149,1428,2.149,1429,2.149,1430,2.149,1445,2.149,1521,2.393,1522,1.953,1523,1.125,1524,1.41,1525,2.446,1526,2.446,1527,2.446,1528,1.41,1529,1.125,1530,3.088,1531,1.125,1532,2.393,1533,1.125,1534,1.125,1535,1.953,1536,1.125,1537,0.974,1538,1.125,1539,1.125,1540,1.125,1541,1.041,1542,1.125,1543,1.041,1544,1.125,1545,0.828,1546,1.238,1547,1.041,1548,1.238,1549,3.83,1550,3.314,1551,1.238,1552,3.83,1553,3.83,1554,3.83,1555,2.846,1556,1.238,1557,2.149,1558,3.232,1559,5.218,1560,3.494,1561,3.232,1562,3.845,1563,2.149,1564,1.238,1565,2.149,1566,1.238,1567,1.238,1568,1.238,1569,2.149,1570,1.238,1571,1.238,1572,1.238,1573,2.149,1574,1.238,1575,1.238,1576,1.238,1577,2.149,1578,2.846,1579,2.149,1580,2.149,1581,1.238,1582,1.238,1583,1.238,1584,1.238,1585,1.125,1586,1.238,1587,1.238,1588,1.238,1589,1.238,1590,1.238,1591,1.238,1592,1.238,1593,1.238,1594,1.238,1595,1.238,1596,1.238,1597,1.238,1598,1.238,1599,1.238,1600,1.238,1601,1.238,1602,1.238,1603,1.238,1604,1.238,1605,1.125,1606,1.238,1607,1.238,1608,1.238,1609,1.238,1610,1.238,1611,1.238,1612,1.238,1613,1.238,1614,1.238,1615,1.238,1616,1.238,1617,1.238,1618,1.238,1619,1.238,1620,1.238,1621,1.238,1622,2.149,1623,3.398,1624,1.238,1625,1.238,1626,1.238,1627,1.238,1628,1.238,1629,1.238,1630,1.238,1631,1.238,1632,1.238,1633,1.238,1634,1.238,1635,1.238,1636,1.238,1637,1.238,1638,1.238,1639,1.238,1640,1.238,1641,1.238,1642,1.238,1643,1.238,1644,1.238,1645,1.238,1646,1.238,1647,2.149,1648,1.238,1649,1.238,1650,1.238,1651,1.041,1652,1.238,1653,1.238,1654,1.238,1655,1.238,1656,1.238,1657,1.238,1658,1.238,1659,1.238,1660,1.238,1661,1.238,1662,1.238,1663,1.238,1664,1.238,1665,1.238,1666,1.238,1667,1.238,1668,1.238,1669,1.238,1670,1.238,1671,1.238,1672,1.238,1673,1.238,1674,1.238,1675,1.238,1676,1.238,1677,1.238,1678,1.238,1679,1.238,1680,1.238,1681,1.238,1682,2.149,1683,1.238,1684,1.238,1685,1.238,1686,1.238,1687,1.238,1688,1.238,1689,1.238,1690,1.238,1691,2.149,1692,1.238,1693,1.125,1694,1.238,1695,1.238,1696,1.238,1697,1.238,1698,1.238,1699,1.238,1700,1.238,1701,1.238,1702,1.238,1703,2.149,1704,1.238,1705,1.238,1706,1.238,1707,1.238,1708,1.238,1709,1.238,1710,1.238,1711,1.238,1712,1.238,1713,1.238,1714,1.238,1715,1.238,1716,1.238,1717,1.238,1718,1.238,1719,1.238,1720,1.238,1721,2.149,1722,1.953,1723,1.238,1724,1.238,1725,1.238,1726,1.238,1727,1.238,1728,1.238,1729,1.238,1730,1.238,1731,1.238,1732,1.238,1733,1.238,1734,1.238,1735,1.238,1736,1.238,1737,1.238,1738,1.238,1739,1.238,1740,1.238,1741,1.238,1742,1.125,1743,1.238,1744,1.238,1745,1.238,1746,1.238,1747,1.238,1748,1.238,1749,1.238,1750,1.238,1751,1.238,1752,1.238,1753,1.238,1754,1.238,1755,1.238,1756,1.238,1757,1.238,1758,1.238,1759,1.238,1760,1.238,1761,1.125,1762,1.238,1763,1.238,1764,1.238,1765,1.238,1766,1.238,1767,1.238,1768,1.238,1769,1.238,1770,1.238,1771,1.238,1772,1.238,1773,1.238,1774,1.238,1775,1.238,1776,1.238,1777,1.238,1778,1.238,1779,1.238,1780,2.149,1781,1.238,1782,1.238,1783,1.238,1784,1.238,1785,1.238,1786,1.238,1787,1.238,1788,1.125,1789,1.238,1790,1.125,1791,1.238,1792,1.238,1793,1.238,1794,1.238,1795,1.238,1796,1.125,1797,1.238,1798,1.238,1799,1.238,1800,1.238,1801,1.238,1802,1.238,1803,1.238,1804,1.238,1805,1.125,1806,1.238,1807,1.238,1808,1.953,1809,1.238,1810,1.238,1811,1.238,1812,1.238,1813,1.238,1814,1.125,1815,1.238,1816,1.125,1817,1.238,1818,1.238,1819,1.953,1820,1.238,1821,1.238,1822,1.238,1823,1.238,1824,2.149,1825,1.238,1826,1.238,1827,1.238,1828,1.238,1829,1.238,1830,1.238,1831,1.238,1832,1.238,1833,1.238,1834,1.238,1835,1.238,1836,1.238,1837,1.238,1838,1.238,1839,1.238,1840,1.238,1841,1.238,1842,1.238,1843,1.238,1844,1.238,1845,1.238,1846,1.238,1847,1.238,1848,1.238,1849,1.238,1850,1.238,1851,1.238,1852,1.238,1853,1.238,1854,1.238,1855,1.238,1856,1.238,1857,1.238,1858,1.238,1859,1.238,1860,1.238,1861,1.238,1862,1.238,1863,1.238,1864,1.238,1865,1.238,1866,1.238,1867,1.238,1868,2.149,1869,1.238,1870,1.238,1871,1.238,1872,1.238,1873,1.238,1874,1.238,1875,1.238,1876,1.238,1877,1.238,1878,1.238,1879,1.238,1880,1.238,1881,1.238,1882,1.238,1883,1.238,1884,1.238,1885,1.238,1886,2.846,1887,1.238,1888,1.238,1889,1.238,1890,1.238,1891,1.238,1892,1.238,1893,1.238,1894,1.238,1895,1.238,1896,1.238,1897,1.238,1898,1.238,1899,1.238,1900,1.238,1901,1.238,1902,1.238,1903,1.238,1904,1.238,1905,1.238,1906,1.238,1907,1.238,1908,1.238,1909,1.238,1910,1.238,1911,1.238,1912,1.238,1913,1.238,1914,1.238,1915,1.238,1916,1.238,1917,1.238,1918,1.238,1919,1.238,1920,1.238,1921,1.238,1922,1.238,1923,1.238,1924,1.238,1925,1.238,1926,1.238,1927,1.238,1928,1.238,1929,1.238,1930,1.238,1931,1.238,1932,1.238,1933,1.238,1934,1.238,1935,1.238,1936,1.238,1937,1.238,1938,1.238,1939,1.238,1940,1.238,1941,1.238,1942,1.238,1943,1.238,1944,1.238,1945,1.238,1946,1.238,1947,1.238,1948,1.238,1949,1.238,1950,1.238,1951,1.238,1952,1.238,1953,1.238,1954,1.238,1955,1.238,1956,1.238,1957,1.238,1958,1.238,1959,1.238,1960,1.238,1961,1.238,1962,1.238,1963,1.238,1964,1.238,1965,1.238,1966,1.238,1967,1.238,1968,1.238,1969,1.238,1970,1.238,1971,1.238,1972,1.238,1973,1.238,1974,1.238,1975,2.149,1976,1.238,1977,1.953,1978,1.238,1979,1.238,1980,1.238,1981,1.238,1982,1.238,1983,1.238,1984,1.238,1985,1.238,1986,1.238,1987,1.238,1988,1.238,1989,1.238,1990,1.238,1991,1.238,1992,1.238,1993,1.238,1994,1.125,1995,1.238,1996,1.238,1997,1.238,1998,1.238,1999,1.238,2000,1.238,2001,1.238,2002,1.238,2003,1.238,2004,1.238,2005,1.238,2006,2.149,2007,2.149,2008,1.238,2009,1.953,2010,1.238,2011,1.238,2012,1.238,2013,1.238,2014,1.238,2015,1.953,2016,1.238,2017,1.238,2018,1.238,2019,1.238,2020,1.238,2021,1.238,2022,1.238,2023,1.238,2024,1.238,2025,1.238,2026,1.238,2027,1.238,2028,1.238,2029,1.238,2030,1.238,2031,1.238,2032,1.238,2033,1.238,2034,1.238,2035,1.238,2036,1.238,2037,1.125,2038,1.125,2039,1.238,2040,1.238,2041,1.238,2042,2.149,2043,1.238,2044,1.238,2045,1.238,2046,1.238,2047,1.238,2048,1.238,2049,1.238,2050,2.149,2051,1.238,2052,1.238,2053,1.238,2054,1.238,2055,1.238,2056,1.238,2057,1.238,2058,1.238,2059,1.238,2060,1.238,2061,1.238,2062,1.238,2063,1.238,2064,1.238,2065,1.238,2066,1.238,2067,1.238,2068,1.238,2069,1.238,2070,1.238,2071,1.238,2072,1.238,2073,1.238,2074,1.238,2075,1.238,2076,1.238,2077,1.125,2078,1.238,2079,1.238,2080,1.238,2081,1.238,2082,1.238,2083,1.953,2084,1.238,2085,1.238,2086,1.238,2087,1.238,2088,1.238,2089,1.238,2090,1.238,2091,1.125,2092,1.238,2093,1.238,2094,1.238,2095,1.238,2096,1.238,2097,1.238,2098,1.238,2099,1.238,2100,1.238,2101,1.238,2102,1.238,2103,1.238,2104,1.238,2105,1.238,2106,1.238,2107,1.238,2108,1.238,2109,1.238,2110,1.238,2111,1.238,2112,1.238,2113,1.238,2114,1.238,2115,1.238,2116,1.238,2117,1.238,2118,1.238,2119,1.238,2120,1.238,2121,1.238,2122,1.238,2123,1.238,2124,1.238,2125,1.238,2126,1.238,2127,1.238,2128,1.238,2129,1.238,2130,1.238,2131,1.238,2132,1.238,2133,1.238,2134,1.238,2135,1.238,2136,1.238,2137,1.238,2138,1.238,2139,1.238,2140,1.238,2141,1.238,2142,1.953,2143,2.149,2144,3.398,2145,1.238,2146,1.238,2147,1.238,2148,1.238,2149,1.238,2150,1.238,2151,1.238,2152,1.238,2153,1.238,2154,1.238,2155,1.238,2156,1.238,2157,1.238,2158,1.238,2159,1.238,2160,2.149,2161,1.238,2162,1.238,2163,2.149,2164,1.238,2165,1.238,2166,1.238,2167,2.846,2168,2.846,2169,1.238,2170,1.238,2171,2.149,2172,2.149,2173,2.149,2174,1.238,2175,1.238,2176,1.238,2177,1.238,2178,1.238,2179,1.238,2180,1.238,2181,1.238,2182,1.238,2183,1.238,2184,1.238,2185,1.238,2186,1.238,2187,1.238,2188,1.238,2189,1.238,2190,1.238,2191,1.238,2192,1.238,2193,1.238,2194,1.238,2195,1.238,2196,1.238,2197,1.238,2198,1.238,2199,1.238,2200,1.238,2201,1.238,2202,1.238,2203,1.238,2204,1.238,2205,1.238,2206,1.238,2207,2.149,2208,1.238,2209,1.238,2210,1.238,2211,1.238,2212,1.238,2213,1.238,2214,1.238,2215,1.238,2216,1.238,2217,1.238,2218,1.238,2219,1.238,2220,2.149,2221,1.238,2222,1.238,2223,1.238,2224,2.149,2225,1.238,2226,1.238,2227,1.238,2228,1.238,2229,1.238,2230,1.238,2231,1.238,2232,1.238,2233,1.238,2234,1.238,2235,1.238,2236,1.238,2237,1.238,2238,1.238,2239,1.238,2240,1.238,2241,1.238,2242,1.238,2243,1.238,2244,1.238,2245,1.238,2246,1.238,2247,1.238,2248,1.238,2249,1.238,2250,1.238,2251,2.846,2252,1.238,2253,1.238,2254,1.238,2255,1.238,2256,1.238,2257,1.238,2258,1.238,2259,1.238,2260,1.238,2261,1.238,2262,1.238,2263,1.238,2264,1.238,2265,2.149,2266,1.238,2267,1.238,2268,1.238,2269,1.238,2270,1.238,2271,1.238,2272,1.238,2273,2.149,2274,1.238,2275,1.238,2276,1.238,2277,1.238,2278,1.238,2279,1.125,2280,1.238,2281,1.238,2282,1.238,2283,1.238,2284,0.87,2285,1.238,2286,1.238,2287,1.238,2288,1.238,2289,1.238,2290,1.238,2291,1.238,2292,2.149,2293,1.238,2294,1.238,2295,2.149,2296,1.238,2297,1.238,2298,1.238,2299,1.238,2300,1.238,2301,1.238,2302,1.238,2303,1.238,2304,1.238,2305,1.238,2306,1.238,2307,1.238,2308,1.238,2309,1.238,2310,1.238,2311,1.238,2312,2.846,2313,1.238,2314,1.238,2315,1.238,2316,1.238,2317,1.238,2318,1.238,2319,1.238,2320,1.238,2321,1.238,2322,1.238,2323,1.238,2324,1.238,2325,1.238,2326,1.238,2327,1.238,2328,1.238,2329,1.238,2330,1.238,2331,2.149,2332,1.238,2333,1.238,2334,1.238,2335,1.238,2336,1.238,2337,1.238,2338,1.238,2339,1.238,2340,1.238,2341,1.238,2342,1.238,2343,1.238,2344,1.238,2345,1.238,2346,1.238,2347,1.238,2348,1.238,2349,2.149,2350,1.238,2351,1.238,2352,1.238,2353,1.238,2354,2.846,2355,2.846,2356,1.238,2357,2.149,2358,1.238,2359,1.238,2360,1.238,2361,1.238,2362,1.238,2363,1.238,2364,1.238,2365,1.238,2366,1.238,2367,1.238,2368,1.238,2369,1.238,2370,1.238,2371,1.238,2372,2.846,2373,1.238,2374,1.238,2375,1.238,2376,1.238,2377,1.238,2378,1.238,2379,1.238,2380,1.238,2381,1.238,2382,1.238,2383,1.238,2384,1.238,2385,1.238,2386,1.238,2387,1.238,2388,1.238,2389,1.238,2390,1.238,2391,1.125,2392,2.149,2393,2.149,2394,1.238,2395,1.238,2396,1.125,2397,1.238,2398,1.238,2399,1.238,2400,1.238,2401,1.125,2402,1.125,2403,1.41,2404,1.41,2405,1.41,2406,1.41,2407,1.125,2408,1.41,2409,2.446,2410,1.238,2411,1.238,2412,1.41,2413,1.41,2414,1.41,2415,1.41,2416,1.41,2417,1.41,2418,5.707,2419,1.41,2420,1.41,2421,2.446,2422,2.446,2423,2.149,2424,1.41,2425,1.41,2426,2.149,2427,1.41,2428,2.149,2429,1.41,2430,2.446,2431,1.41,2432,2.446,2433,1.41,2434,1.41,2435,1.41,2436,1.41,2437,1.41,2438,2.446,2439,1.41,2440,2.446,2441,1.41,2442,2.446,2443,1.238,2444,1.238,2445,1.41,2446,1.41,2447,1.238,2448,1.953,2449,1.41,2450,2.446,2451,2.446,2452,2.446,2453,3.241,2454,1.41,2455,1.41,2456,2.446,2457,1.238,2458,1.41,2459,1.41,2460,1.41,2461,1.41,2462,1.125,2463,2.446,2464,1.41,2465,1.41,2466,1.41,2467,1.41,2468,1.41,2469,1.41,2470,1.41,2471,1.41,2472,1.41,2473,1.41,2474,1.41,2475,1.41,2476,1.41,2477,1.41,2478,1.41,2479,1.41,2480,1.41,2481,1.41,2482,1.41,2483,1.41,2484,1.41,2485,1.41,2486,1.41,2487,1.41,2488,1.41,2489,1.41,2490,1.41,2491,1.41,2492,1.41,2493,1.41,2494,1.41,2495,1.41,2496,1.41,2497,2.446,2498,2.446,2499,1.41,2500,1.41]],["title/interfaces/MutableKeyStore.html",[0,1.107,891,2.495]],["body/interfaces/MutableKeyStore.html",[0,0.707,2,1.205,3,0.072,4,0.057,5,0.05,7,0.217,9,1.295,18,0.636,20,1.445,21,0.011,37,1.344,48,1.657,56,0.072,57,0.003,58,0.005,59,0.003,60,0.003,77,0.703,79,2.738,86,1.009,92,1.412,93,0.745,95,0.994,112,1.411,113,3.031,114,1.877,123,1.127,134,2.044,135,3.169,140,0.255,152,0.883,163,3.128,185,1.254,221,1.752,395,2.753,460,1.593,524,2.004,679,2.004,752,2.731,800,4.079,810,5.246,816,2.004,891,3.388,895,4.981,896,4.981,962,1.457,1011,1.294,1038,1.398,1099,1.457,1373,3.788,2501,4.964,2502,2.004,2503,3.543,2504,5.481,2505,5.481,2506,5.481,2507,3.686,2508,3.686,2509,3.686,2510,5.481,2511,5.481,2512,3.686,2513,3.686,2514,3.686,2515,5.481,2516,5.481,2517,3.686,2518,3.686,2519,3.686,2520,3.686,2521,3.686,2522,5.481,2523,3.686,2524,3.686,2525,3.686,2526,2.898,2527,2.715,2528,2.715,2529,2.715,2530,4.506,2531,2.715,2532,4.506,2533,2.715,2534,5.794,2535,2.715,2536,4.506,2537,2.715,2538,2.715,2539,2.715,2540,4.506,2541,2.715,2542,4.506,2543,2.715,2544,2.384,2545,2.715,2546,4.506,2547,2.715,2548,2.715,2549,2.715,2550,4.506,2551,2.715,2552,4.506,2553,4.506,2554,2.715,2555,4.506,2556,2.715,2557,4.506,2558,2.715,2559,4.506,2560,2.715,2561,2.715,2562,4.506,2563,2.715,2564,4.506,2565,2.715,2566,4.506,2567,2.715,2568,4.506,2569,2.715,2570,2.384,2571,2.384,2572,2.384,2573,1.875,2574,2.004,2575,2.463,2576,2.004,2577,2.167,2578,2.384,2579,2.384,2580,3.686,2581,3.686,2582,4.506,2583,2.384,2584,4.506,2585,4.506,2586,2.384,2587,2.384,2588,2.384,2589,2.167,2590,2.384,2591,2.384,2592,2.384,2593,2.384,2594,2.384,2595,2.384,2596,2.384,2597,2.384,2598,2.384,2599,2.384,2600,2.384,2601,2.167,2602,2.167,2603,2.384,2604,2.384,2605,2.384,2606,2.384,2607,2.384,2608,2.384,2609,2.384,2610,2.384,2611,3.686,2612,2.384,2613,2.384,2614,2.384,2615,2.167,2616,1.767,2617,2.167,2618,1.875,2619,2.384,2620,1.875,2621,1.875,2622,2.167,2623,2.384,2624,2.384]],["title/classes/MutablePgpKeyStore.html",[60,0.005,752,2.767]],["body/classes/MutablePgpKeyStore.html",[0,0.712,3,0.072,4,0.058,5,0.051,7,0.219,9,1.297,18,0.551,20,1.383,21,0.011,37,1.355,48,1.661,56,0.072,57,0.003,58,0.005,59,0.003,60,0.003,62,1.065,74,1.781,77,0.707,79,3.387,86,1.01,92,1.414,93,0.746,95,1.001,112,1.413,113,3.059,114,1.887,123,1.136,134,2.047,135,3.172,140,0.256,152,0.89,163,3.136,185,1.541,221,1.701,395,2.766,460,1.606,524,2.02,679,2.02,752,3.355,800,4.082,810,5.26,816,2.02,891,3.402,895,4.999,896,4.999,962,1.468,1011,1.305,1038,1.409,1099,1.468,1373,3.117,2501,4.969,2502,2.02,2503,2.916,2504,5.501,2505,5.501,2506,5.501,2507,3.708,2508,3.708,2509,3.708,2510,5.501,2511,5.501,2512,3.708,2513,3.708,2514,3.708,2515,5.501,2516,5.501,2517,3.708,2518,3.708,2519,3.708,2520,3.708,2521,3.708,2522,5.501,2523,3.708,2524,3.708,2525,3.708,2526,2.916,2530,4.528,2532,4.528,2534,5.813,2536,4.528,2540,4.528,2542,4.528,2544,2.403,2546,4.528,2550,4.528,2552,4.528,2553,4.528,2555,4.528,2557,4.528,2559,4.528,2562,4.528,2564,4.528,2566,4.528,2568,4.528,2570,2.403,2571,2.403,2572,2.403,2573,1.89,2574,2.02,2575,2.478,2576,2.02,2577,2.184,2578,2.403,2579,2.403,2580,3.708,2581,3.708,2582,4.528,2583,2.403,2584,4.528,2585,4.528,2586,2.403,2587,2.403,2588,2.403,2589,2.184,2590,2.403,2591,2.403,2592,2.403,2593,2.403,2594,2.403,2595,2.403,2596,2.403,2597,2.403,2598,2.403,2599,2.403,2600,2.403,2601,2.184,2602,2.184,2603,2.403,2604,2.403,2605,2.403,2606,2.403,2607,2.403,2608,2.403,2609,2.403,2610,2.403,2611,3.708,2612,2.403,2613,2.403,2614,2.403,2615,2.184,2616,1.781,2617,2.184,2618,1.89,2619,2.403,2620,1.89,2621,1.89,2622,2.184,2623,2.403,2624,2.403,2625,2.736,2626,2.736,2627,2.736,2628,2.736,2629,2.736,2630,2.736,2631,2.736,2632,2.736,2633,2.736,2634,2.736,2635,2.736,2636,2.736,2637,2.736,2638,2.736,2639,2.736,2640,2.736,2641,2.736,2642,2.736,2643,2.736,2644,2.736,2645,2.736,2646,2.736,2647,2.736,2648,2.736,2649,2.736]],["title/components/OrganizationComponent.html",[175,0.652,310,1.383]],["body/components/OrganizationComponent.html",[3,0.1,4,0.08,5,0.07,7,0.302,8,0.977,9,0.614,18,0.542,21,0.011,33,1.358,56,0.1,57,0.005,58,0.006,59,0.005,60,0.005,77,0.898,84,1.154,86,0.916,88,1.265,91,1.744,92,0.669,93,0.635,112,0.898,114,1.382,123,2.587,134,1.322,140,0.378,152,1.744,175,0.956,176,1.229,177,1.962,178,1.382,179,1.567,180,1.425,181,1.265,185,1.602,186,2.866,187,1.194,188,2.225,189,2.225,190,2.937,191,3.182,193,2.225,195,2.225,200,4.603,207,3.12,211,3.959,215,3.014,216,5.497,221,1.673,225,4.603,227,1.648,228,2.552,231,4.42,244,1.567,245,0.452,246,2.788,247,2.026,248,1.87,253,1.161,255,2.788,256,3.959,281,2.654,283,4.416,285,1.068,286,2.023,287,2.023,288,1.098,289,2.56,290,1.425,291,1.265,292,2.352,293,1.229,294,1.425,295,1.425,296,1.229,297,1.425,298,1.265,299,1.425,300,1.229,301,1.425,302,1.229,303,1.425,304,1.229,305,0.957,306,1.425,307,1.265,308,2.023,309,1.341,310,2.208,311,1.425,312,1.229,313,1.425,314,1.229,315,1.425,316,1.265,317,2.023,318,1.341,319,1.229,320,0.957,321,1.229,322,1.425,323,1.265,324,2.023,325,1.341,326,1.265,327,1.039,328,1.229,329,1.265,330,1.229,331,1.229,332,1.425,333,1.229,334,1.425,335,1.229,336,1.425,337,1.302,338,1.382,339,1.425,781,4.976,783,5.416,805,4.279,857,2.329,1077,4.172,1243,4.709,1341,4.416,1651,5.01,2650,3.317,2651,5.291,2652,6.233,2653,5.361,2654,6.233,2655,6.233,2656,5.361,2657,3.776,2658,3.776,2659,3.776,2660,3.776,2661,3.776,2662,3.776,2663,3.776,2664,7.166,2665,4.976,2666,3.776,2667,3.776,2668,3.776,2669,3.776,2670,5.361,2671,5.361,2672,4.709,2673,5.361,2674,5.361,2675,5.361,2676,5.361,2677,4.709,2678,5.361,2679,5.361,2680,5.361,2681,5.361,2682,5.361,2683,5.361]],["title/classes/PGPSigner.html",[60,0.005,2684,2.936]],["body/classes/PGPSigner.html",[0,1.374,3,0.097,4,0.078,5,0.069,7,0.295,8,0.962,9,1.092,18,0.662,20,1.439,21,0.011,33,1.337,40,4.627,41,4.381,42,2.341,43,4.381,44,3.981,47,2.831,48,1.679,51,2.341,56,0.097,57,0.004,58,0.006,59,0.004,60,0.004,62,1.437,77,0.883,78,4.228,79,2.554,84,0.794,86,0.991,92,1.19,93,0.628,104,4.371,112,1.124,113,2.323,114,1.931,134,1.301,140,0.32,163,1.583,185,1.577,221,1.876,227,2.271,228,1.668,305,1.337,357,3.066,395,1.981,663,3.433,686,2.549,688,2.725,736,2.166,800,1.76,891,4.337,936,2.069,1011,2.515,1026,3.895,1038,1.901,2418,4.21,2501,4.897,2503,4.906,2526,3.643,2573,2.549,2575,2.166,2616,2.402,2618,3.643,2620,2.549,2621,2.549,2684,4.251,2685,2.402,2686,4.913,2687,4.913,2688,4.913,2689,5.67,2690,4.633,2691,4.633,2692,4.21,2693,5.275,2694,4.21,2695,3.691,2696,3.691,2697,3.691,2698,3.691,2699,3.691,2700,3.691,2701,3.691,2702,3.691,2703,4.913,2704,5.102,2705,3.691,2706,2.946,2707,4.913,2708,3.691,2709,4.913,2710,3.691,2711,2.946,2712,2.725,2713,2.946,2714,2.946,2715,4.21,2716,2.946,2717,2.946,2718,2.946,2719,2.946,2720,2.946,2721,2.946,2722,2.946,2723,4.21,2724,2.946,2725,2.946,2726,2.946,2727,4.21,2728,2.946,2729,4.21,2730,2.946,2731,2.946,2732,2.946,2733,2.946,2734,2.946,2735,2.946,2736,2.946,2737,2.946,2738,2.946,2739,2.946,2740,2.946,2741,2.946]],["title/components/PagesComponent.html",[175,0.652,312,1.383]],["body/components/PagesComponent.html",[3,0.127,4,0.102,5,0.09,7,0.385,8,1.156,18,0.385,20,1.061,21,0.01,33,1.223,56,0.127,57,0.006,58,0.008,59,0.006,60,0.006,84,1.524,86,0.759,88,1.616,91,2.063,93,0.663,140,0.293,175,1.086,176,1.57,177,2.32,178,1.766,179,2.002,180,1.821,181,1.616,187,1.526,188,2.631,189,2.631,190,2.993,191,3.252,193,2.631,195,2.631,228,1.526,244,2.002,245,0.577,281,3.139,285,1.364,286,2.392,287,2.392,288,1.402,289,2.837,290,1.821,291,1.616,292,2.672,293,1.57,294,1.821,295,1.821,296,1.57,297,1.821,298,1.616,299,1.821,300,1.57,301,1.821,302,1.57,303,1.821,304,1.57,305,1.223,306,1.821,307,1.616,308,2.392,309,1.714,310,1.57,311,1.821,312,2.447,313,1.821,314,1.57,315,1.821,316,1.616,317,2.392,318,1.714,319,1.57,320,1.223,321,1.57,322,1.821,323,1.616,324,2.392,325,1.714,326,1.616,327,1.327,328,1.57,329,1.616,330,1.57,331,1.57,332,1.821,333,1.57,334,1.821,335,1.57,336,1.821,337,1.664,338,1.766,339,1.821,736,3.721,847,4.89,2742,4.238,2743,6.339,2744,7.08,2745,6.339,2746,6.339,2747,6.339,2748,5.06,2749,6.339]],["title/modules/PagesModule.html",[431,1.138,2750,3.139]],["body/modules/PagesModule.html",[3,0.148,4,0.119,5,0.104,21,0.011,56,0.148,57,0.007,58,0.008,59,0.007,60,0.007,140,0.53,143,2.557,245,0.672,285,1.588,312,2.715,431,1.503,433,2.056,434,2.782,435,4.081,436,2.893,437,3.015,438,2.257,443,4.297,445,3.75,446,3.015,447,2.679,449,2.9,450,4.101,451,3.149,453,3.297,455,3.465,470,4.309,471,3.465,472,4.548,473,3.656,474,3.656,475,4.309,476,3.465,477,4.309,478,3.465,481,4.826,482,3.88,2750,6.409,2751,4.934,2752,4.934,2753,4.934,2754,5.762,2755,5.618,2756,5.618,2757,5.618,2758,6.987,2759,4.934,2760,4.934]],["title/modules/PagesRoutingModule.html",[431,1.138,2754,2.936]],["body/modules/PagesRoutingModule.html",[3,0.15,4,0.12,5,0.106,21,0.011,48,1.293,56,0.15,57,0.007,58,0.008,59,0.007,60,0.007,67,3.703,140,0.464,143,2.082,175,0.873,245,0.681,250,2.021,281,3.487,312,2.291,433,2.082,438,2.286,449,2.923,497,3.34,498,3.647,499,3.947,500,4.979,501,3.929,502,3.929,503,3.703,504,3.509,551,3.34,768,7.215,1077,3.189,1082,3.053,1545,3.34,2754,4.864,2761,5.69,2762,5.69,2763,5.69,2764,5.69,2765,5.69,2766,5.69,2767,5.69,2768,5.69,2769,5.69,2770,5.69,2771,5.69,2772,5.69]],["title/directives/PasswordToggleDirective.html",[288,1.236,335,1.383]],["body/directives/PasswordToggleDirective.html",[3,0.141,4,0.113,5,0.099,7,0.425,9,0.865,18,0.593,20,1.306,21,0.011,45,3.078,48,1.535,56,0.141,57,0.006,58,0.008,59,0.006,60,0.006,77,1.131,84,1.453,86,0.934,92,0.943,93,0.498,112,0.891,140,0.323,187,1.682,190,2.261,221,1.665,245,0.637,253,2.076,288,1.963,330,1.731,335,2.197,699,4.663,953,4.247,1038,3.82,1501,4.247,1502,6.569,1503,5.921,1504,6.228,1507,4.247,1508,3.928,1511,4.247,2773,7.073,2774,6.752,2775,7.802,2776,5.39,2777,7.418,2778,6.752,2779,5.32,2780,5.32,2781,5.477,2782,5.32,2783,5.32,2784,5.32,2785,5.32,2786,7.418,2787,7.418,2788,7.418,2789,6.752,2790,7.802,2791,6.752,2792,6.752]],["title/injectables/RegistryService.html",[871,1.344,1069,2.767]],["body/injectables/RegistryService.html",[3,0.142,4,0.114,5,0.1,7,0.431,8,1.242,18,0.596,21,0.011,33,1.892,56,0.142,57,0.006,58,0.008,59,0.006,60,0.006,68,4.382,77,1.14,84,1.607,86,0.988,112,1.14,134,1.68,140,0.491,141,5.172,144,2.314,145,2.778,152,2.687,153,5.029,228,2.361,245,0.645,248,2.671,638,2.778,871,2.154,874,2.895,889,2.895,962,2.895,1069,4.433,1099,2.895,2793,4.738,2794,8.258,2795,7.842,2796,7.842,2797,5.394,2798,5.394,2799,5.394,2800,5.959,2801,5.394,2802,6.455,2803,6.811,2804,6.811,2805,6.811,2806,6.811,2807,6.811,2808,5.394,2809,5.394,2810,5.394,2811,4.305,2812,4.305,2813,4.738]],["title/guards/RoleGuard.html",[834,2.622,2814,3.393]],["body/guards/RoleGuard.html",[3,0.114,4,0.091,5,0.08,7,0.345,9,0.958,18,0.47,21,0.011,48,0.982,56,0.114,57,0.005,58,0.007,59,0.005,60,0.008,64,4.626,65,4.348,74,2.813,77,0.986,84,0.93,86,0.705,92,1.044,93,0.551,112,1.204,113,2.222,114,2.452,119,4.701,120,4.348,121,4.348,123,2.444,127,4.701,134,1.652,140,0.407,143,1.582,155,4.132,171,2.666,175,0.904,181,1.972,185,1.76,218,4.494,227,1.81,245,0.517,250,1.535,283,3.833,498,2.808,508,4.649,509,2.155,515,4.597,521,3.317,542,2.061,581,5.265,638,2.226,773,6.2,834,4.437,835,3.45,837,4.701,838,5.173,839,5.311,841,3.45,843,5.173,844,3.16,845,6.318,846,5.173,847,4.067,848,5.173,849,5.173,850,3.796,851,6.822,852,6.318,854,5.173,856,4.348,857,3.632,858,4.701,859,4.701,860,5.173,861,4.701,862,6.318,863,5.742,864,4.701,865,5.173,866,5.173,867,5.884,869,6.318,871,1.862,872,3.45,873,3.45,874,2.319,875,3.191,877,3.796,2814,4.701,2815,3.796,2816,4.322,2817,4.322,2818,5.889,2819,5.889,2820,5.889,2821,5.889,2822,4.322,2823,4.322,2824,4.322,2825,4.322,2826,4.322,2827,4.322,2828,4.322]],["title/directives/RouterLinkDirectiveStub.html",[288,1.236,337,1.466]],["body/directives/RouterLinkDirectiveStub.html",[3,0.158,4,0.127,5,0.111,7,0.478,8,1.325,18,0.58,21,0.011,33,1.517,56,0.158,57,0.007,58,0.009,59,0.007,60,0.007,86,0.936,140,0.363,187,1.893,190,2.433,221,1.476,228,1.893,245,0.716,288,2.463,330,1.948,337,2.505,338,2.977,516,3.355,531,5.257,646,6.381,672,5.257,1075,5.364,1508,5.776,2776,5.799,2781,4.42,2829,7.145,2830,6.493,2831,7.822,2832,5.985,2833,5.257,2834,5.985,2835,5.985,2836,5.985,2837,5.985,2838,5.985,2839,5.985]],["title/pipes/SafePipe.html",[2284,2.622,2840,2.936]],["body/pipes/SafePipe.html",[3,0.162,4,0.13,5,0.114,9,0.999,18,0.49,20,1.324,21,0.011,56,0.162,57,0.007,58,0.009,59,0.007,60,0.007,77,1.028,86,0.735,92,1.088,93,0.74,112,1.028,134,1.514,140,0.448,185,1.835,187,1.941,245,0.735,735,4.9,736,3.603,847,4.24,875,4.533,2142,6.699,2284,4.55,2840,5.095,2841,4.9,2842,5.392,2843,7.377,2844,5.392,2845,7.377,2846,6.946,2847,6.139,2848,6.479,2849,7.377,2850,6.139,2851,6.139]],["title/classes/Settings.html",[60,0.005,1077,2.383]],["body/classes/Settings.html",[3,0.155,4,0.124,5,0.109,7,0.469,8,1.309,9,0.955,18,0.662,21,0.011,33,1.488,44,4.348,56,0.155,57,0.007,58,0.009,59,0.007,60,0.009,62,2.286,68,4.553,84,1.264,86,0.992,92,1.041,93,0.55,228,1.857,273,5.581,1077,4.348,2852,4.688,2853,7.281,2854,6.813,2855,6.306,2856,6.307,2857,7.181,2858,5.872,2859,5.872,2860,6.813,2861,5.872,2862,5.158]],["title/components/SettingsComponent.html",[175,0.652,314,1.383]],["body/components/SettingsComponent.html",[3,0.091,4,0.073,5,0.064,7,0.275,8,0.914,9,0.816,18,0.61,20,1.157,21,0.011,32,4.01,33,1.271,45,2.081,48,0.782,56,0.156,57,0.004,58,0.006,59,0.004,60,0.004,77,0.84,84,1.079,86,0.959,88,1.153,91,2.483,92,0.889,93,0.728,112,1.089,135,2.453,140,0.452,152,1.632,175,0.908,176,1.12,177,1.836,178,1.26,179,1.428,180,1.299,181,1.153,185,1.499,186,2.721,187,1.088,188,2.081,189,2.081,190,2.913,191,3.151,192,3.093,193,2.081,195,2.081,207,2.989,221,1.882,228,1.088,244,1.428,245,0.412,248,1.704,249,1.704,253,1.058,281,2.483,285,0.973,286,1.892,287,1.892,288,1,289,2.453,290,1.299,291,1.153,292,2.233,293,1.12,294,1.299,295,1.299,296,1.12,297,1.299,298,1.153,299,1.299,300,1.12,301,1.299,302,1.12,303,1.299,304,1.12,305,0.872,306,1.299,307,1.153,308,1.892,309,1.222,310,1.12,311,1.299,312,1.12,313,1.299,314,2.115,315,1.299,316,1.153,317,1.892,318,1.222,319,1.12,320,0.872,321,1.12,322,1.299,323,1.153,324,1.892,325,1.222,326,1.153,327,0.947,328,1.12,329,1.153,330,1.12,331,1.12,332,1.299,333,1.12,334,1.299,335,1.12,336,1.299,337,1.187,338,1.26,339,1.299,345,4.086,347,4.723,349,4.086,350,4.086,351,3.464,352,4.49,359,3.464,370,4.086,380,4.086,381,3.264,382,3.464,384,4.086,385,3.464,386,2.377,387,1.772,388,1.847,389,1.847,390,2.123,405,2.541,407,2.541,408,2.377,409,2.541,410,2.377,412,2.541,413,2.377,423,3.464,427,4.49,509,1.836,551,2.944,622,1.929,649,2.747,650,4.449,678,4.405,832,4.01,840,4.405,902,6.336,1038,3.715,1048,5.197,1077,4.432,2651,4.801,2863,3.023,2864,5.917,2865,5.015,2866,5.015,2867,3.442,2868,3.442,2869,3.442,2870,3.442,2871,3.442,2872,3.442,2873,4.405,2874,3.442,2875,3.442,2876,3.442,2877,3.442,2878,3.023,2879,3.442,2880,3.442,2881,3.442,2882,3.442,2883,3.442,2884,3.442,2885,4.369,2886,3.442,2887,5.015,2888,5.015,2889,5.015,2890,5.015,2891,5.015,2892,5.015,2893,5.015,2894,5.711,2895,6.501,2896,5.015,2897,5.015,2898,5.015,2899,5.015,2900,5.015]],["title/modules/SettingsModule.html",[431,1.138,2901,3.139]],["body/modules/SettingsModule.html",[3,0.138,4,0.111,5,0.097,21,0.011,56,0.138,57,0.006,58,0.008,59,0.006,60,0.006,140,0.539,143,2.447,245,0.627,247,2.812,285,1.481,310,2.667,314,2.667,387,2.698,388,2.812,389,2.812,431,1.402,433,1.918,434,2.594,435,3.952,436,2.698,437,2.812,438,2.105,443,4.221,445,3.588,446,2.812,447,2.498,449,2.775,450,3.925,451,2.936,453,3.075,455,3.231,465,4.352,466,4.618,467,4.937,468,3.869,469,4.618,470,4.124,471,3.231,472,4.352,473,3.41,474,3.41,475,4.124,476,3.231,477,4.124,478,3.231,479,4.352,480,3.41,481,4.618,482,3.618,491,5.338,2901,6.414,2902,4.602,2903,4.602,2904,4.602,2905,5.661,2906,5.239,2907,5.239,2908,4.602,2909,4.602,2910,6.687,2911,5.239,2912,6.687,2913,5.239]],["title/modules/SettingsRoutingModule.html",[431,1.138,2905,2.936]],["body/modules/SettingsRoutingModule.html",[3,0.162,4,0.13,5,0.114,21,0.011,48,1.395,56,0.162,57,0.007,58,0.009,59,0.007,60,0.007,140,0.498,143,2.247,175,1.132,245,0.735,250,2.18,310,2.4,314,2.4,433,2.247,438,2.467,449,3.061,497,3.603,498,3.771,499,4.135,500,4.642,501,4.24,502,4.24,503,3.996,504,3.786,2651,4.533,2905,5.095,2908,5.392,2909,5.392,2914,6.139]],["title/modules/SharedModule.html",[431,1.138,443,2.189]],["body/modules/SharedModule.html",[3,0.124,4,0.099,5,0.087,21,0.011,56,0.124,57,0.006,58,0.007,59,0.006,60,0.006,140,0.522,143,1.72,245,0.562,250,1.67,285,1.329,304,2.59,307,2.864,316,2.864,323,2.864,331,2.782,333,2.59,431,1.258,433,1.72,434,2.327,435,3.751,436,2.421,437,2.523,438,2.808,443,4.588,445,3.344,446,2.523,447,2.241,449,2.586,450,3.657,451,2.635,479,4.055,480,3.059,499,3.492,887,4.129,1281,3.471,1292,3.752,1307,4.129,1308,4.129,2840,5.906,2915,4.129,2916,4.129,2917,4.129,2918,5.906,2919,4.701,2920,4.701,2921,4.701,2922,4.701,2923,6.231,2924,4.701,2925,4.701,2926,4.701,2927,6.231,2928,4.701]],["title/components/SidebarComponent.html",[175,0.652,316,1.424]],["body/components/SidebarComponent.html",[3,0.126,4,0.101,5,0.088,7,0.381,21,0.01,56,0.126,57,0.006,58,0.008,59,0.006,60,0.006,67,4.092,77,1.053,84,1.515,86,0.752,88,1.596,91,2.046,93,0.659,112,0.798,140,0.289,175,1.08,176,1.551,177,2.301,178,1.744,179,1.978,180,1.798,181,1.596,185,1.879,186,3.236,187,1.507,188,2.61,189,2.61,190,2.99,191,3.249,193,2.61,195,2.61,207,3.441,221,1.551,244,1.978,245,0.57,285,1.347,286,2.373,287,2.373,288,1.385,289,2.824,290,1.798,291,1.596,292,2.655,293,1.551,294,1.798,295,1.798,296,1.551,297,1.798,298,1.596,299,1.798,300,1.551,301,1.798,302,1.551,303,1.798,304,1.551,305,1.208,306,1.798,307,1.596,308,2.373,309,1.693,310,1.551,311,1.798,312,1.551,313,1.798,314,1.551,315,1.798,316,2.506,317,2.373,318,1.693,319,1.551,320,1.208,321,1.551,322,1.798,323,1.596,324,2.373,325,1.693,326,1.596,327,1.311,328,1.551,329,2.357,330,1.551,331,1.551,332,1.798,333,1.551,334,1.798,335,1.551,336,1.798,337,1.643,338,1.744,339,1.798,551,3.691,670,4.643,698,3.878,1077,3.524,1545,3.691,2929,4.186,2930,7.037,2931,6.288,2932,4.765,2933,4.765,2934,6.288]],["title/components/SidebarStubComponent.html",[175,0.652,318,1.51]],["body/components/SidebarStubComponent.html",[3,0.134,4,0.107,5,0.094,21,0.01,56,0.192,57,0.006,58,0.008,59,0.006,60,0.009,88,1.697,91,2.13,93,0.679,140,0.308,175,1.004,176,1.649,177,2.396,178,2.654,180,1.913,181,1.697,187,1.603,190,2.999,191,3.274,245,0.606,285,1.433,286,2.47,287,2.47,288,1.473,289,2.892,290,1.913,291,1.697,292,2.736,293,1.649,294,1.913,295,1.913,296,1.649,297,1.913,298,1.697,299,1.913,300,1.649,301,1.913,302,1.649,303,1.913,304,1.649,305,1.284,306,1.913,307,1.697,308,2.47,309,2.325,310,1.649,311,1.913,312,1.649,313,1.913,314,1.649,315,1.913,316,1.697,317,2.47,318,2.722,319,1.649,320,1.284,321,1.649,322,1.913,323,1.697,324,2.47,325,2.325,326,1.697,327,1.394,328,1.649,329,1.697,330,1.649,331,1.649,332,1.913,333,1.649,334,1.913,335,1.649,336,1.913,337,1.748,338,1.855,339,1.913,431,1.356,516,2.841,698,4.037,1362,3.743,1368,3.743,1369,5.788,1370,3.743]],["title/interfaces/Signable.html",[0,1.107,2704,2.936]],["body/interfaces/Signable.html",[0,1.58,2,2.005,3,0.119,4,0.096,5,0.084,7,0.361,18,0.361,20,1.432,21,0.011,40,4.614,41,4.226,42,2.693,43,4.853,44,3.84,47,3.256,48,1.788,51,2.693,56,0.119,57,0.005,58,0.007,59,0.005,60,0.005,77,1.016,78,3.772,79,1.874,86,0.54,104,4.459,112,0.756,113,2.289,114,2.221,134,1.496,140,0.368,163,1.938,185,1.35,221,1.94,227,2.349,305,1.537,357,2.843,395,2.424,663,3.949,686,3.119,688,3.335,736,2.651,800,2.153,891,4.021,936,2.531,1011,2.893,1026,3.335,1038,2.326,2501,3.561,2503,4.19,2573,3.119,2575,2.651,2616,2.939,2618,4.19,2620,3.119,2621,3.119,2684,4.19,2685,2.939,2686,3.605,2687,3.605,2688,3.605,2689,4.843,2692,3.605,2694,3.605,2703,4.843,2704,5.277,2707,4.843,2709,4.843,2711,3.605,2712,3.335,2713,3.605,2714,3.605,2715,4.843,2716,3.605,2717,3.605,2718,3.605,2719,3.605,2720,3.605,2721,3.605,2722,3.605,2723,4.843,2724,3.605,2725,3.605,2726,3.605,2727,4.843,2728,3.605,2729,4.843,2730,3.605,2731,3.605,2732,3.605,2733,3.605,2734,3.605,2735,3.605,2736,3.605,2737,3.605,2738,3.605,2739,3.605,2740,3.605,2741,3.605,2935,4.516]],["title/interfaces/Signature.html",[0,1.107,40,2.281]],["body/interfaces/Signature.html",[0,1.943,1,3.557,2,2.099,3,0.125,4,0.1,5,0.088,6,3.078,7,0.378,8,1.141,10,3.492,11,2.651,12,2.342,13,4.321,14,3.859,15,4.321,16,3.506,17,3.222,18,0.62,19,3.357,20,1.499,21,0.011,22,1.891,24,4.321,25,4.321,26,4.321,27,4.072,28,4.072,29,2.255,30,4.321,31,3.492,32,3.859,33,2.137,34,4.321,35,4.321,36,4.321,37,3.842,38,4.321,39,3.859,40,4.164,41,4.601,42,3.445,43,4.601,44,4.182,45,2.596,46,4.072,47,2.538,48,1.075,49,3.859,50,3.078,51,2.777,52,3.078,53,3.859,54,3.859,55,3.266,56,0.125,57,0.006,58,0.007,59,0.006]],["title/interfaces/Signer.html",[0,1.107,104,2.767]],["body/interfaces/Signer.html",[0,1.454,2,1.775,3,0.106,4,0.085,5,0.074,7,0.319,9,1.191,18,0.606,20,1.436,21,0.011,40,4.667,41,3.966,42,2.478,43,4.515,44,3.604,47,2.996,48,1.724,51,2.478,56,0.106,57,0.005,58,0.007,59,0.005,60,0.005,77,0.935,78,3.584,79,1.66,86,0.907,92,1.298,93,0.685,104,4.53,112,1.27,113,2.427,114,2.043,134,1.377,140,0.339,163,1.716,185,1.195,221,1.989,227,2.44,305,1.415,357,2.669,395,2.146,663,3.633,686,2.762,688,2.953,736,2.347,800,1.907,891,3.775,936,2.242,1011,2.662,1026,2.953,1038,2.06,2501,4.568,2503,3.855,2526,3.855,2573,2.762,2575,2.347,2616,2.603,2618,3.855,2620,2.762,2621,2.762,2684,3.855,2685,2.603,2686,3.192,2687,5.133,2688,5.133,2689,5.844,2690,4.903,2691,4.903,2692,3.192,2694,3.192,2703,5.133,2704,5.237,2706,3.192,2707,5.133,2709,5.133,2711,3.192,2712,2.953,2713,4.456,2714,4.456,2715,5.133,2716,3.192,2717,3.192,2718,3.192,2719,3.192,2720,3.192,2721,3.192,2722,3.192,2723,4.456,2724,3.192,2725,3.192,2726,3.192,2727,4.456,2728,3.192,2729,4.456,2730,3.192,2731,3.192,2732,3.192,2733,3.192,2734,3.192,2735,3.192,2736,3.192,2737,3.192,2738,3.192,2739,3.192,2740,3.192,2741,3.192,2936,3.999,2937,3.999,2938,3.999,2939,3.999,2940,3.999,2941,3.999]],["title/interfaces/Staff.html",[0,1.107,622,2.383]],["body/interfaces/Staff.html",[0,1.602,2,2.731,3,0.162,4,0.13,5,0.114,7,0.491,8,1.347,18,0.671,20,1.485,21,0.011,22,2.006,32,5.063,56,0.162,57,0.007,58,0.009,59,0.007,93,0.768,622,4.436,2873,7.211,2942,5.403,2943,8.209,2944,8.209]],["title/interfaces/Token.html",[0,1.107,320,1.077]],["body/interfaces/Token.html",[0,1.482,2,2.526,3,0.15,4,0.12,5,0.106,7,0.454,8,1.284,9,1.3,11,3.189,18,0.695,20,1.506,21,0.011,23,4.864,56,0.15,57,0.007,58,0.008,59,0.007,93,0.748,95,2.925,320,1.938,1179,3.811,1549,4.542,1550,5.52,1552,6.38,1554,6.38,1558,4.201,1560,6.38,1561,5.902,2945,4.998]],["title/components/TokenDetailsComponent.html",[175,0.652,319,1.383]],["body/components/TokenDetailsComponent.html",[3,0.107,4,0.086,5,0.076,7,0.325,8,1.03,9,0.662,18,0.451,21,0.011,56,0.107,57,0.005,58,0.007,59,0.005,60,0.005,77,0.946,84,1.216,86,0.776,88,1.362,91,1.838,92,0.721,93,0.713,95,2.067,112,0.681,140,0.447,175,0.996,176,1.323,177,2.067,178,1.489,179,1.688,180,1.535,181,1.362,185,1.688,186,2.984,187,1.286,188,2.344,189,2.344,190,2.955,191,3.204,193,2.344,195,2.344,207,3.223,221,1.393,244,1.688,245,0.487,249,2.014,250,1.445,253,1.736,272,2.647,281,2.797,285,1.15,286,2.131,287,2.131,288,1.182,289,2.645,290,1.535,291,1.362,292,2.449,293,1.323,294,1.535,295,1.535,296,1.323,297,1.535,298,1.362,299,1.535,300,1.323,301,1.535,302,1.323,303,1.535,304,1.323,305,1.031,306,1.535,307,1.362,308,2.131,309,1.445,310,1.323,311,1.535,312,1.323,313,1.535,314,1.323,315,1.535,316,1.362,317,2.131,318,1.445,319,2.281,320,2.169,321,1.323,322,1.535,323,1.362,324,2.131,325,1.445,326,1.362,327,1.119,328,1.323,329,1.362,330,1.323,331,1.323,332,1.535,333,1.323,334,1.535,335,1.323,336,1.535,337,1.403,338,1.489,339,1.535,391,2.28,392,2.014,429,3.676,515,3.166,530,4.961,586,3.247,623,5.177,1179,2.693,1545,3.315,1547,4.171,1550,3.901,1558,4.171,1561,4.171,1994,4.509,2462,4.509,2946,6.158,2947,5.177,2948,3.247,2949,5.7,2950,4.961,2951,4.067,2952,7.011,2953,5.4,2954,5.648,2955,4.067,2956,4.067,2957,4.067,2958,4.067,2959,6.158,2960,4.961,2961,5.648,2962,5.648,2963,5.648,2964,5.648,2965,5.648,2966,5.648,2967,5.648,2968,4.961,2969,5.648,2970,5.648]],["title/pipes/TokenRatioPipe.html",[2284,2.622,2918,2.936]],["body/pipes/TokenRatioPipe.html",[3,0.167,4,0.134,5,0.117,9,1.029,18,0.505,21,0.01,33,1.603,56,0.167,57,0.008,58,0.009,59,0.008,60,0.008,77,1.059,86,0.757,92,1.121,93,0.703,112,1.059,134,1.56,140,0.384,185,1.891,187,2.001,245,0.757,429,4.888,1543,4.671,2284,3.902,2841,5.05,2844,5.557,2846,7.036,2848,6.597,2918,5.187,2971,6.597,2972,5.557,2973,7.51,2974,6.326,2975,6.326,2976,6.326,2977,6.326]],["title/classes/TokenRegistry.html",[60,0.005,2978,2.936]],["body/classes/TokenRegistry.html",[0,0.827,3,0.084,4,0.067,5,0.059,7,0.254,8,0.862,9,0.918,18,0.56,20,1.361,21,0.011,22,2.041,45,1.318,48,1.283,53,1.958,54,5.014,56,0.084,57,0.004,58,0.006,59,0.004,60,0.004,62,1.236,64,4.318,65,3.489,66,5.492,68,4.99,69,4.151,70,4.151,71,6.551,72,3.489,73,4.123,74,4.724,75,6.156,76,6.694,77,0.791,78,3.925,79,3.308,84,0.683,85,4.151,86,0.869,88,1.583,89,4.168,90,6.814,91,2.427,92,1.001,93,0.626,94,5.336,95,3.087,96,2.534,105,6.156,109,6.156,110,6.156,112,1.318,113,2.644,131,4.991,134,1.542,135,1.198,139,6.156,140,0.287,141,3.857,142,2.788,143,1.162,144,1.362,145,1.635,146,2.534,147,3.264,148,2.534,150,2.534,151,2.534,152,1.538,153,2.344,154,2.788,155,3.857,156,4.151,157,2.788,158,2.788,159,4.151,160,2.788,163,2.422,320,2.229,1096,1.958,1235,4.991,1240,4.151,1545,4.553,2978,3.264,2979,5.954,2980,2.534,2981,4.725,2982,7.008,2983,4.725,2984,3.175,2985,3.175,2986,4.725,2987,3.175,2988,6.814,2989,6.253,2990,3.175,2991,3.175,2992,4.725,2993,4.725,2994,3.175,2995,7.757,2996,3.175,2997,4.725,2998,3.175,2999,2.788,3000,3.175,3001,3.175,3002,3.175,3003,3.175,3004,3.175,3005,3.175]],["title/injectables/TokenService.html",[871,1.344,2953,2.936]],["body/injectables/TokenService.html",[3,0.125,4,0.1,5,0.088,7,0.38,8,1.144,9,1.143,18,0.638,20,1.363,21,0.011,22,1.204,33,1.204,48,1.426,56,0.125,57,0.006,58,0.007,59,0.006,60,0.006,68,4.124,77,1.051,79,3.43,84,1.351,86,0.974,92,1.246,93,0.658,95,2.297,112,1.177,113,2.932,134,1.733,140,0.494,144,2.038,145,2.447,152,2.286,163,3.207,168,5.512,228,1.502,245,0.568,253,1.929,521,3.479,542,2.265,638,2.447,744,2.447,871,1.984,874,2.55,889,2.55,905,3.508,906,5.894,962,2.55,1069,5.298,1099,2.55,1101,3.792,1152,3.792,1179,2.265,2426,6.565,2428,5.512,2802,5.609,2811,3.792,2812,3.792,2953,4.334,2978,5.513,3006,4.173,3007,7.027,3008,6.275,3009,6.275,3010,6.275,3011,4.751,3012,6.275,3013,4.751,3014,4.751,3015,7.771,3016,4.751,3017,4.751,3018,4.173,3019,4.751,3020,4.173,3021,4.751,3022,4.751,3023,4.751,3024,4.751,3025,4.751,3026,4.751,3027,4.751,3028,4.751,3029,4.751,3030,4.751,3031,4.751,3032,4.751,3033,4.751]],["title/classes/TokenServiceStub.html",[60,0.005,3034,3.393]],["body/classes/TokenServiceStub.html",[3,0.168,4,0.135,5,0.118,7,0.509,9,1.038,18,0.509,20,1.346,21,0.011,56,0.168,57,0.008,58,0.009,59,0.008,60,0.008,62,2.483,77,1.264,86,0.763,92,1.131,93,0.706,112,1.068,134,1.573,516,3.575,844,4.05,1179,3.598,1532,4.71,1547,4.71,3034,6.024,3035,6.629,3036,7.547,3037,7.547,3038,6.378]],["title/components/TokensComponent.html",[175,0.652,321,1.383]],["body/components/TokensComponent.html",[3,0.094,4,0.075,5,0.066,7,0.283,8,0.935,9,0.979,18,0.6,20,1.008,21,0.011,33,1.299,56,0.159,57,0.004,58,0.006,59,0.004,60,0.004,77,0.858,79,3.026,84,1.103,86,0.953,88,1.188,91,1.668,92,1.067,93,0.745,95,2.414,112,1.104,113,2.488,135,2.488,140,0.476,152,1.154,163,2.583,175,0.924,176,1.154,177,1.876,178,1.298,179,1.472,180,1.339,181,1.188,185,1.532,186,2.768,187,1.122,188,2.128,189,2.128,190,2.921,191,3.161,192,3.162,193,2.128,195,2.128,207,3.032,218,4.034,221,1.626,228,1.122,244,1.472,245,0.424,248,1.757,249,1.757,250,1.26,253,1.851,281,2.538,285,1.003,286,1.935,287,1.935,288,1.031,289,2.488,290,1.339,291,1.188,292,2.272,293,1.154,294,1.339,295,1.339,296,1.154,297,1.339,298,1.188,299,1.339,300,1.154,301,1.339,302,1.154,303,1.339,304,1.154,305,0.899,306,1.339,307,1.188,308,1.935,309,1.26,310,1.154,311,1.339,312,1.154,313,1.339,314,1.154,315,1.339,316,1.188,317,1.935,318,1.26,319,1.154,320,1.525,321,2.146,322,1.339,323,1.188,324,1.935,325,1.26,326,1.188,327,0.976,328,1.154,329,1.188,330,1.154,331,1.154,332,1.339,333,1.154,334,1.339,335,1.154,336,1.339,337,1.223,338,1.298,339,1.339,345,4.158,349,4.158,350,4.158,351,3.541,352,4.554,357,3.12,359,3.541,370,4.158,380,4.158,381,3.337,382,3.541,384,4.158,385,3.541,386,2.45,387,1.827,388,1.904,389,1.904,390,2.188,405,2.62,407,2.62,408,2.45,409,2.62,410,2.45,412,2.62,413,2.45,423,3.541,429,3.337,586,2.832,1179,3.144,1545,4.673,1550,4.554,2462,4.092,2953,5.035,2959,4.503,2960,4.503,2968,4.503,2978,2.45,3039,3.116,3040,6.02,3041,5.127,3042,6.02,3043,5.127,3044,3.548,3045,5.127,3046,3.548,3047,3.548,3048,3.548,3049,5.127,3050,3.548,3051,3.548,3052,3.548,3053,3.548,3054,3.548,3055,3.548,3056,3.548,3057,5.127,3058,5.127,3059,3.548,3060,3.548,3061,3.548,3062,3.548]],["title/modules/TokensModule.html",[431,1.138,3063,3.139]],["body/modules/TokensModule.html",[3,0.138,4,0.111,5,0.097,21,0.011,56,0.138,57,0.006,58,0.008,59,0.006,60,0.006,140,0.538,143,2.447,245,0.627,285,1.481,319,2.667,321,2.667,387,2.698,388,2.812,389,2.812,431,1.402,433,1.918,434,2.594,435,3.952,436,2.698,437,2.812,438,2.105,443,4.221,445,3.588,446,2.812,447,2.498,449,2.775,450,3.925,451,2.936,453,3.075,455,3.231,458,3.618,465,4.352,466,4.618,467,4.937,468,3.869,469,4.618,470,4.124,471,3.231,472,4.352,473,3.41,474,3.41,475,4.124,476,3.231,477,4.124,478,3.231,479,4.352,480,3.41,486,4.618,487,3.41,2947,3.869,3063,6.414,3064,4.602,3065,4.602,3066,4.602,3067,5.661,3068,5.239,3069,5.239,3070,4.602,3071,4.602,3072,6.687,3073,6.687,3074,5.239,3075,6.687,3076,5.239]],["title/modules/TokensRoutingModule.html",[431,1.138,3067,2.936]],["body/modules/TokensRoutingModule.html",[3,0.164,4,0.131,5,0.115,21,0.011,45,2.578,48,1.412,56,0.164,57,0.007,58,0.009,59,0.007,60,0.007,140,0.5,143,2.274,175,1.14,245,0.743,250,2.207,319,2.417,321,2.417,433,2.274,438,2.496,449,3.083,458,4.291,497,3.647,498,3.79,499,4.164,500,4.361,504,3.832,2947,4.587,3067,5.131,3070,5.457,3071,5.457,3077,6.213]],["title/components/TopbarComponent.html",[175,0.652,323,1.424]],["body/components/TopbarComponent.html",[3,0.129,4,0.103,5,0.09,7,0.389,21,0.01,56,0.129,57,0.006,58,0.008,59,0.006,60,0.006,77,1.068,84,1.531,86,0.763,88,1.631,91,2.075,93,0.666,112,0.815,140,0.296,175,1.091,176,1.585,177,2.334,178,1.782,179,2.021,180,1.838,181,1.631,185,1.906,186,3.27,187,1.54,188,2.647,189,2.647,190,2.995,191,3.255,193,2.647,195,2.647,207,3.47,221,1.573,244,2.021,245,0.583,285,1.377,286,2.407,287,2.407,288,1.416,289,2.848,290,1.838,291,1.631,292,2.684,293,1.585,294,1.838,295,1.838,296,1.585,297,1.838,298,1.631,299,1.838,300,1.585,301,1.838,302,1.585,303,1.838,304,1.585,305,1.234,306,1.838,307,1.631,308,2.407,309,1.73,310,1.585,311,1.838,312,1.585,313,1.838,314,1.585,315,1.838,316,1.631,317,2.407,318,1.73,319,1.585,320,1.234,321,1.585,322,1.838,323,2.527,324,2.407,325,1.73,326,1.631,327,1.34,328,1.585,329,1.631,330,1.585,331,1.585,332,1.838,333,1.585,334,1.838,335,1.585,336,1.838,337,1.679,338,1.782,339,1.838,1370,4.71,3078,4.278,3079,7.112,3080,6.378,3081,4.87,3082,4.87]],["title/components/TopbarStubComponent.html",[175,0.652,325,1.51]],["body/components/TopbarStubComponent.html",[3,0.134,4,0.107,5,0.094,21,0.01,56,0.192,57,0.006,58,0.008,59,0.006,60,0.009,88,1.697,91,2.13,93,0.679,140,0.308,175,1.004,176,1.649,177,2.396,178,2.654,180,1.913,181,1.697,187,1.603,190,2.999,191,3.274,245,0.606,285,1.433,286,2.47,287,2.47,288,1.473,289,2.892,290,1.913,291,1.697,292,2.736,293,1.649,294,1.913,295,1.913,296,1.649,297,1.913,298,1.697,299,1.913,300,1.649,301,1.913,302,1.649,303,1.913,304,1.649,305,1.284,306,1.913,307,1.697,308,2.47,309,2.325,310,1.649,311,1.913,312,1.649,313,1.913,314,1.649,315,1.913,316,1.697,317,2.47,318,2.325,319,1.649,320,1.284,321,1.649,322,1.913,323,1.697,324,2.47,325,2.722,326,1.697,327,1.394,328,1.649,329,1.697,330,1.649,331,1.649,332,1.913,333,1.649,334,1.913,335,1.649,336,1.913,337,1.748,338,1.855,339,1.913,431,1.356,516,2.841,698,3.126,1362,3.743,1368,3.743,1369,5.788,1370,4.834]],["title/classes/Transaction.html",[60,0.005,327,1.169]],["body/classes/Transaction.html",[1,3.912,3,0.139,4,0.111,5,0.098,7,0.42,8,1.222,9,1.09,18,0.69,20,1.468,21,0.011,22,2.159,33,1.869,56,0.139,57,0.006,58,0.008,59,0.006,60,0.01,62,2.046,86,1.01,93,0.492,95,1.924,140,0.319,227,1.616,320,1.869,327,2.029,509,1.924,720,3.451,829,2.946,1082,4.573,1165,4.133,1166,3.421,1167,3.631,1168,3.631,1169,3.631,1170,3.631,1171,3.631,1177,3.631,1178,5.06,1179,2.507,1180,3.421,1181,3.421,1182,3.631,1183,3.631,1184,4.55,1185,4.33,1186,3.631,1187,3.631,1188,3.631,1189,3.421,1190,3.421,3083,5.257,3084,5.257,3085,5.257,3086,5.257,3087,5.257,3088,5.257,3089,5.257,3090,5.257]],["title/components/TransactionDetailsComponent.html",[175,0.652,326,1.424]],["body/components/TransactionDetailsComponent.html",[3,0.077,4,0.114,5,0.054,7,0.429,8,0.809,9,0.722,18,0.515,20,1.247,21,0.011,53,2.738,56,0.077,57,0.003,58,0.005,59,0.003,60,0.003,77,0.743,79,3.249,84,0.955,86,0.924,88,0.978,91,1.444,92,0.787,93,0.723,95,2.899,112,1.137,113,2.744,140,0.412,163,2.573,175,0.824,176,0.95,177,1.625,178,1.069,179,1.212,180,1.102,181,0.978,185,1.327,186,2.468,187,0.924,188,1.842,189,1.842,190,2.865,191,3.091,193,1.842,195,1.842,207,2.757,218,3.645,221,1.479,244,1.212,245,0.35,248,1.446,249,1.446,250,1.038,251,2.157,252,2.157,253,1.65,285,0.826,286,1.675,287,1.675,288,0.849,289,2.263,290,1.102,291,0.978,292,2.026,293,0.95,294,1.102,295,1.102,296,0.95,297,1.102,298,0.978,299,1.102,300,0.95,301,1.102,302,0.95,303,1.102,304,0.95,305,0.74,306,1.102,307,0.978,308,1.675,309,1.038,310,0.95,311,1.102,312,0.95,313,1.102,314,0.95,315,1.102,316,0.978,317,1.675,318,1.038,319,0.95,320,1.888,321,0.95,322,1.102,323,0.978,324,1.675,325,1.038,326,2.008,327,2.282,328,0.95,329,2.008,330,0.95,331,0.95,332,1.102,333,0.95,334,1.102,335,0.95,336,1.102,337,1.007,338,1.069,339,1.102,427,3.066,429,2.889,494,2.332,495,2.017,623,4.428,651,4.353,720,1.504,829,2.488,841,2.332,1179,3.238,1180,2.889,1181,2.889,1184,4.189,1185,3.986,1190,4.42,2457,2.566,2776,3.543,2781,3.278,2948,2.332,2949,4.716,2950,3.899,3091,6.876,3092,6.249,3093,5.369,3094,5.369,3095,5.369,3096,4.439,3097,5.997,3098,5.997,3099,5.997,3100,5.997,3101,5.369,3102,5.997,3103,4.439,3104,2.921,3105,4.439,3106,2.921,3107,2.921,3108,2.921,3109,2.921,3110,2.921,3111,2.921,3112,2.921,3113,2.921,3114,2.332,3115,2.921,3116,2.921,3117,5.369,3118,2.921,3119,2.921,3120,2.921,3121,2.921,3122,2.921,3123,2.921,3124,2.921,3125,2.921,3126,2.921,3127,2.921,3128,2.921,3129,2.921,3130,2.921,3131,2.921,3132,2.921,3133,2.921,3134,5.369,3135,2.921,3136,2.921,3137,5.997,3138,5.997,3139,4.439,3140,5.965,3141,4.439,3142,4.439,3143,6.791,3144,5.997,3145,3.899,3146,4.439,3147,4.439,3148,4.439,3149,3.899,3150,3.899,3151,4.439,3152,4.439,3153,5.997,3154,5.997,3155,5.997,3156,4.439,3157,4.439,3158,4.439,3159,5.997,3160,4.439,3161,4.439,3162,4.439,3163,4.439,3164,5.997,3165,4.439]],["title/injectables/TransactionService.html",[651,2.622,871,1.344]],["body/injectables/TransactionService.html",[3,0.074,4,0.059,5,0.052,7,0.223,8,0.783,9,1.167,18,0.61,19,1.5,20,1.341,21,0.011,22,2.11,33,1.761,37,1.384,42,1.905,48,1.873,49,3.615,56,0.074,57,0.006,58,0.005,59,0.003,60,0.003,68,3.067,77,0.719,79,3.053,84,0.924,86,0.958,91,0.909,92,1.271,93,0.671,95,1.912,112,1.201,113,2.519,134,1.559,140,0.5,141,4.287,144,1.199,145,1.439,147,1.93,152,2.058,163,2.864,217,4.287,221,1.445,228,1.652,245,0.334,251,2.064,252,2.064,253,2.205,305,1.324,327,1.739,329,1.75,357,2.884,391,1.567,392,1.384,393,1.819,394,3.169,509,1.023,521,3.131,542,1.333,638,1.439,650,4.287,651,2.647,720,2.21,744,1.439,810,2.064,871,1.357,874,1.5,889,1.5,905,2.064,906,4.929,928,3.77,936,1.567,962,2.303,1002,2.455,1038,1.439,1069,4.523,1072,4.679,1073,4.929,1082,2.303,1099,2.303,1101,2.231,1108,2.455,1152,3.426,1189,1.819,2615,2.231,2616,1.819,2617,2.231,2622,2.231,2802,4.17,2811,2.231,2812,2.231,2813,2.455,3018,2.455,3020,2.455,3145,2.455,3149,2.455,3150,2.455,3166,2.231,3167,5.224,3168,5.224,3169,5.224,3170,4.292,3171,4.292,3172,4.292,3173,3.77,3174,5.861,3175,3.77,3176,3.77,3177,4.292,3178,4.292,3179,4.292,3180,6.893,3181,2.795,3182,4.292,3183,2.795,3184,4.292,3185,2.795,3186,3.77,3187,2.795,3188,2.795,3189,3.77,3190,2.795,3191,3.77,3192,2.795,3193,4.292,3194,5.861,3195,5.861,3196,2.795,3197,4.292,3198,4.292,3199,2.795,3200,2.795,3201,4.292,3202,2.795,3203,2.795,3204,2.795,3205,2.795,3206,2.795,3207,2.795,3208,2.455,3209,2.795,3210,2.455,3211,2.795,3212,2.795,3213,2.795,3214,2.795,3215,2.795,3216,4.292,3217,2.795,3218,2.455,3219,2.231,3220,2.795,3221,2.795,3222,4.292,3223,4.292,3224,2.795,3225,2.455,3226,5.224,3227,2.795,3228,4.292,3229,5.224,3230,2.795,3231,4.292,3232,3.77,3233,2.795,3234,2.795,3235,2.795,3236,2.795,3237,2.795,3238,2.795,3239,2.795,3240,2.795,3241,4.292,3242,4.292,3243,2.795,3244,2.795,3245,4.292,3246,4.292,3247,2.455,3248,4.292,3249,2.795,3250,2.795,3251,2.795,3252,2.795,3253,2.795,3254,2.795,3255,2.795,3256,2.795,3257,2.795,3258,2.795,3259,2.795,3260,2.795,3261,2.795,3262,2.795,3263,2.795,3264,2.795,3265,2.795,3266,2.795,3267,2.795,3268,2.795,3269,2.795,3270,2.795,3271,2.795,3272,2.795,3273,2.795,3274,2.795,3275,2.795,3276,2.795,3277,2.795,3278,2.795,3279,2.795,3280,2.795,3281,2.795,3282,2.795,3283,2.795,3284,2.795,3285,2.795,3286,2.795,3287,2.795,3288,2.795,3289,2.795,3290,2.795,3291,2.795,3292,2.795,3293,2.795,3294,2.795,3295,2.795]],["title/classes/TransactionServiceStub.html",[60,0.005,3296,3.393]],["body/classes/TransactionServiceStub.html",[3,0.153,4,0.122,5,0.107,7,0.461,9,1.252,18,0.615,21,0.011,22,2.195,56,0.153,57,0.007,58,0.008,59,0.007,60,0.007,62,2.248,77,1.19,86,0.921,92,1.365,93,0.721,112,1.289,134,1.424,140,0.35,221,1.981,327,1.588,516,3.236,521,3.812,542,2.753,720,2.974,844,4.312,1072,4.609,1073,5.685,2833,5.072,3173,6.242,3175,6.242,3176,6.242,3180,6.763,3186,6.242,3189,6.242,3191,6.242,3296,5.673,3297,7.057,3298,5.774,3299,5.072,3300,5.774,3301,5.774]],["title/components/TransactionsComponent.html",[175,0.652,328,1.383]],["body/components/TransactionsComponent.html",[3,0.08,4,0.064,5,0.056,7,0.243,8,0.834,9,0.895,18,0.663,20,1.099,21,0.011,22,1.16,33,1.909,56,0.145,57,0.004,58,0.005,59,0.004,60,0.004,77,0.766,84,0.985,86,0.987,88,1.018,91,1.489,92,0.975,93,0.645,112,1.155,135,2.779,140,0.447,152,0.989,175,0.844,176,0.989,177,1.675,178,1.113,179,1.262,180,1.148,181,1.018,185,1.368,186,2.53,187,0.962,188,1.899,189,1.899,190,2.877,191,3.106,192,2.822,193,1.899,195,1.899,207,2.814,217,4.414,221,1.948,228,1.935,244,1.262,245,0.364,248,1.506,249,1.506,253,1.691,272,1.979,281,2.266,285,0.86,286,1.727,287,1.727,288,0.884,289,2.31,290,1.148,291,1.018,292,2.076,293,0.989,294,1.148,295,1.148,296,0.989,297,1.148,298,1.018,299,1.148,300,0.989,301,1.148,302,0.989,303,1.148,304,0.989,305,0.771,306,1.148,307,1.018,308,1.727,309,1.08,310,0.989,311,1.148,312,0.989,313,1.148,314,0.989,315,1.148,316,1.018,317,1.727,318,1.08,319,0.989,320,0.771,321,0.989,322,1.148,323,1.018,324,1.727,325,1.08,326,1.018,327,2.072,328,1.992,329,2.645,330,0.989,331,0.989,332,1.148,333,0.989,334,1.148,335,0.989,336,1.148,337,1.049,338,1.113,339,1.148,345,3.8,346,4.832,348,4.832,349,3.8,350,3.8,351,3.16,352,4.227,359,3.16,370,3.8,372,4.227,374,4.886,376,3.653,377,4.019,378,2.686,380,3.8,381,2.978,382,3.16,384,3.8,385,3.16,386,2.1,387,1.566,388,1.632,389,1.632,390,1.876,391,1.704,392,1.506,393,1.979,408,3.16,410,3.16,413,2.1,422,3.653,423,3.16,427,3.16,429,3.984,651,4.414,1059,5.092,1184,3.775,1185,3.593,2665,3.653,3225,2.671,3247,4.019,3302,2.671,3303,5.502,3304,5.502,3305,4.576,3306,5.502,3307,5.502,3308,5.502,3309,5.502,3310,6.121,3311,6.121,3312,4.576,3313,3.041,3314,4.576,3315,3.041,3316,3.041,3317,3.041,3318,3.041,3319,3.041,3320,4.576,3321,3.041,3322,3.041,3323,3.041,3324,3.041,3325,3.041,3326,3.041,3327,3.041,3328,3.041,3329,3.041,3330,3.041,3331,3.041,3332,4.576,3333,3.041,3334,3.041,3335,4.576,3336,4.576,3337,3.041,3338,3.041,3339,3.041,3340,3.041,3341,4.576,3342,4.576,3343,3.041,3344,3.041,3345,6.121,3346,4.576,3347,4.576,3348,4.576,3349,4.576,3350,4.576,3351,4.576,3352,4.576]],["title/modules/TransactionsModule.html",[431,1.138,444,2.936]],["body/modules/TransactionsModule.html",[3,0.135,4,0.108,5,0.095,21,0.011,56,0.135,57,0.006,58,0.008,59,0.006,60,0.006,140,0.538,143,2.403,245,0.609,285,1.44,326,2.898,328,2.647,387,2.623,388,2.733,389,2.733,431,1.363,433,1.864,434,2.522,435,3.9,436,2.623,437,2.733,438,2.92,443,4.19,444,6.005,445,3.524,446,2.733,447,2.429,449,2.725,450,3.854,451,2.855,453,2.99,455,3.141,458,3.518,459,5.242,460,2.99,461,3.761,465,4.274,466,4.535,467,4.849,468,3.761,469,4.535,470,4.05,471,3.141,472,4.274,473,3.315,474,3.315,475,4.05,476,3.141,477,4.05,478,3.141,479,4.274,480,3.315,481,4.535,482,3.518,486,4.535,487,3.315,493,5.768,494,4.066,495,3.518,3092,4.066,3353,4.474,3354,4.474,3355,4.474,3356,4.474,3357,5.619,3358,5.093,3359,5.093,3360,4.474,3361,5.093]],["title/modules/TransactionsRoutingModule.html",[431,1.138,3357,2.936]],["body/modules/TransactionsRoutingModule.html",[3,0.168,4,0.135,5,0.118,21,0.011,48,1.45,56,0.168,57,0.008,58,0.009,59,0.008,60,0.008,140,0.488,143,2.334,175,0.979,245,0.763,250,2.265,328,2.456,433,2.334,438,2.563,449,3.132,497,3.744,498,3.832,499,4.23,500,3.744,504,3.934,3357,5.212,3360,5.602,3362,6.378]],["title/classes/Tx.html",[60,0.005,1082,2.281]],["body/classes/Tx.html",[1,3.748,3,0.143,4,0.115,5,0.101,7,0.434,8,1.247,18,0.661,20,1.462,21,0.011,22,2.201,33,1.376,56,0.143,57,0.006,58,0.008,59,0.006,60,0.01,62,2.114,86,0.97,93,0.508,95,1.988,140,0.33,227,2.103,320,1.376,327,1.882,509,1.988,720,3.523,829,4.198,1082,4.507,1165,4.219,1166,3.535,1167,3.751,1168,3.751,1169,3.751,1170,3.751,1171,3.751,1177,3.751,1178,4.998,1179,2.59,1180,4.874,1181,4.874,1182,5.172,1183,5.172,1184,3.35,1185,3.188,1186,3.751,1187,3.751,1188,3.751,1189,3.535,1190,3.535,3363,5.431,3364,5.431,3365,5.431,3366,5.431,3367,5.431]],["title/classes/TxToken.html",[60,0.005,1178,2.622]],["body/classes/TxToken.html",[1,3.782,3,0.147,4,0.118,5,0.103,7,0.445,8,1.267,18,0.634,20,1.477,21,0.011,22,2.163,33,1.411,56,0.147,57,0.007,58,0.008,59,0.007,60,0.01,62,2.167,86,0.906,93,0.709,95,2.772,140,0.338,227,1.711,320,1.411,327,1.911,509,2.038,720,3.578,829,3.12,1082,4.467,1165,4.285,1166,3.624,1167,3.845,1168,3.845,1169,3.845,1170,3.845,1171,3.845,1177,3.845,1178,5.134,1179,3.611,1180,3.624,1181,3.624,1182,3.845,1183,3.845,1184,3.434,1185,3.268,1186,3.845,1187,3.845,1188,3.845,1189,3.624,1190,3.624,3368,5.567,3369,5.567,3370,5.567]],["title/classes/UserServiceStub.html",[60,0.005,3371,3.393]],["body/classes/UserServiceStub.html",[3,0.077,4,0.061,5,0.054,7,0.232,8,0.805,9,0.972,11,4.32,14,4.754,16,1.625,18,0.654,19,1.556,20,1.245,21,0.011,22,1.629,27,1.887,28,1.887,33,1.118,45,3.557,51,2.652,56,0.077,57,0.003,58,0.005,59,0.003,60,0.003,62,1.129,77,0.739,86,0.81,92,1.059,93,0.755,95,2.821,112,1,114,2.577,123,2.922,134,1.473,140,0.176,144,1.244,171,4.676,228,1.396,282,5.148,320,1.118,374,6.152,378,3.506,505,4.288,507,4.691,508,4.479,509,3.11,516,1.625,521,2.646,538,2.547,542,1.382,551,2.591,554,3.478,556,3.523,562,4.32,608,6.184,609,5.247,668,4.677,800,1.382,817,3.048,832,3.684,844,3.778,857,2.722,1096,4.176,1529,4.768,1530,6.052,1531,4.768,1532,5.358,1533,3.523,1534,3.523,1535,4.768,1536,3.523,1537,4.126,1538,3.523,1539,3.523,1540,3.523,1541,4.411,1542,3.523,1543,3.259,1544,3.523,1693,3.523,1788,3.523,1808,3.523,1819,3.523,1977,2.314,2009,3.523,2015,3.523,2083,2.314,2091,4.266,2401,5.62,2402,4.768,2423,3.877,2885,3.946,3299,2.547,3371,3.523,3372,6.184,3373,4.414,3374,4.414,3375,2.899,3376,5.344,3377,5.344,3378,5.344,3379,7.707,3380,5.344,3381,5.344,3382,7.707,3383,7.707,3384,4.414,3385,4.414,3386,4.414,3387,4.414,3388,4.414,3389,4.414,3390,4.414,3391,4.414,3392,4.414,3393,4.414,3394,4.414,3395,4.414,3396,4.414,3397,4.414,3398,4.414,3399,4.414,3400,4.414,3401,4.414,3402,4.414,3403,4.414,3404,4.414,3405,4.414,3406,2.899,3407,4.414,3408,2.899,3409,4.414,3410,2.899,3411,2.899,3412,4.414,3413,2.899,3414,2.899,3415,2.899,3416,2.899,3417,2.899,3418,2.899,3419,2.899,3420,2.899,3421,2.899,3422,2.547,3423,2.899]],["title/classes/W3.html",[60,0.005,2855,3.139]],["body/classes/W3.html",[3,0.165,4,0.132,5,0.116,7,0.499,8,1.359,18,0.596,21,0.011,44,4.625,56,0.165,57,0.007,58,0.009,59,0.007,60,0.009,62,2.433,68,3.669,86,0.892,273,5.149,1077,4.179,2852,4.989,2853,6.549,2854,5.49,2855,6.227,2856,5.49,2860,7.249,2862,5.49,3424,6.25,3425,6.25]],["title/coverage.html",[3426,4.648]],["body/coverage.html",[0,2.025,1,1.28,5,0.05,6,4.04,12,1.329,18,0.214,19,2.232,21,0.011,37,1.329,40,1.44,46,1.747,49,1.655,51,4,57,0.003,58,0.005,59,0.003,60,0.01,61,2.143,63,4.066,104,1.747,141,2.566,144,2.185,147,2.873,152,0.873,175,1.27,176,0.873,182,3.654,183,1.982,184,2.358,217,1.655,231,1.655,288,1.804,291,0.899,293,0.873,296,0.873,298,0.899,300,0.873,302,0.873,304,0.873,305,1.291,307,0.899,309,0.953,310,0.873,312,0.873,314,0.873,316,0.899,318,0.953,319,0.873,320,0.68,321,0.873,323,0.899,325,0.953,326,0.899,327,0.738,328,0.873,331,0.873,333,0.873,335,0.873,337,0.926,340,2.358,344,1.854,357,1.114,378,4.155,390,1.655,431,1.363,457,2.143,463,1.982,505,1.44,506,3.962,510,1.575,512,1.655,513,2.143,514,2.358,515,1.504,516,3.967,550,2.358,554,1.747,581,1.747,622,1.504,637,2.358,650,1.655,651,1.655,652,1.747,720,1.382,729,1.854,730,1.747,731,1.854,732,1.854,745,1.982,746,1.854,752,1.747,776,2.358,800,2.428,814,3.734,834,2.566,836,2.358,844,2.733,871,2.348,890,2.358,891,1.575,939,1.854,1059,1.982,1060,2.358,1061,2.358,1069,1.747,1077,1.504,1082,1.44,1165,1.655,1166,4.04,1178,1.655,1198,2.358,1199,2.358,1202,1.982,1203,1.982,1205,1.982,1207,1.982,1244,2.358,1245,2.358,1260,2.143,1261,2.358,1280,2.358,1281,1.982,1282,2.358,1296,2.358,1297,2.358,1315,2.358,1361,2.358,1368,3.761,1371,3.32,1372,3.32,1418,2.358,1419,2.358,1426,2.358,1442,2.358,1457,2.358,1497,3.32,1498,2.358,1511,3.32,1521,1.982,1522,5.928,1523,5.928,1545,1.575,2077,2.143,2284,2.566,2391,2.143,2396,2.143,2418,5.801,2501,4.02,2502,3.761,2575,1.575,2576,1.982,2650,2.358,2684,1.854,2685,3.734,2704,1.854,2742,2.358,2773,2.358,2793,2.358,2800,2.143,2814,2.143,2815,2.358,2829,2.358,2830,2.143,2840,1.854,2842,2.358,2852,3.32,2855,1.982,2863,2.358,2918,1.854,2929,2.358,2942,2.358,2945,2.358,2946,2.358,2947,1.982,2948,4.066,2953,1.854,2971,2.358,2972,2.358,2978,1.854,2979,4.066,2980,4.066,2988,2.358,3006,2.358,3034,2.143,3035,2.358,3039,2.358,3078,2.358,3091,2.358,3092,2.143,3114,2.143,3166,3.32,3296,2.143,3297,2.358,3302,2.358,3371,2.143,3372,2.358,3426,2.143,3427,2.684,3428,2.684,3429,2.684,3430,8.316,3431,5.737,3432,2.684,3433,4.16,3434,2.358,3435,2.358,3436,2.358,3437,8.584,3438,2.358,3439,2.358,3440,5.737,3441,8.079,3442,3.654,3443,4.955,3444,2.358,3445,6.85,3446,2.358,3447,2.358,3448,4.066,3449,2.358,3450,2.358,3451,2.358,3452,3.654,3453,3.654,3454,2.358,3455,2.358,3456,6.207,3457,6.207,3458,5.093,3459,5.093,3460,4.16,3461,4.16,3462,2.684,3463,5.737,3464,4.16,3465,2.684,3466,4.16,3467,3.654,3468,2.684,3469,2.684,3470,2.684,3471,2.684,3472,4.16,3473,2.358,3474,2.358,3475,2.358,3476,2.358,3477,2.684,3478,2.684]],["title/dependencies.html",[434,2.534,3479,3.54]],["body/dependencies.html",[19,2.94,21,0.011,37,2.713,42,2.432,57,0.007,58,0.008,59,0.007,141,3.379,245,0.656,247,2.94,250,1.946,434,2.713,436,2.822,451,3.071,460,3.216,461,4.046,542,2.613,585,4.813,735,5.491,736,4.038,749,4.374,750,4.374,829,3.071,962,4.035,1099,3.692,2575,3.216,2759,4.813,2760,4.813,3208,4.813,3210,4.813,3219,4.374,3480,7.474,3481,5.479,3482,6.879,3483,5.479,3484,5.479,3485,5.479,3486,5.479,3487,5.479,3488,5.479,3489,5.479,3490,5.479,3491,5.479,3492,5.479,3493,5.479,3494,5.479,3495,5.479,3496,5.479,3497,5.479,3498,5.479,3499,6.879,3500,5.479,3501,6.879,3502,6.879,3503,5.479,3504,5.479,3505,5.479,3506,5.479,3507,5.479,3508,5.479,3509,5.479,3510,5.479,3511,5.479,3512,5.479,3513,5.479,3514,5.479,3515,5.479,3516,5.479,3517,5.479,3518,5.479,3519,5.479,3520,5.479,3521,5.479,3522,5.479,3523,5.479,3524,5.479,3525,5.479]],["title/miscellaneous/functions.html",[2448,4.086,3526,2.304]],["body/miscellaneous/functions.html",[7,0.427,9,1.378,18,0.644,19,2.87,20,0.895,21,0.011,22,1.355,42,2.374,57,0.006,58,0.008,59,0.006,92,1.501,93,0.793,112,1.431,113,2.556,135,2.556,221,1.834,227,1.644,390,4.178,953,4.268,2448,4.268,2781,3.948,2800,5.935,3114,5.407,3434,4.697,3435,5.95,3436,5.95,3438,4.697,3439,5.95,3442,4.697,3443,6.577,3444,5.95,3446,4.697,3447,5.95,3448,4.268,3449,5.95,3450,5.95,3452,4.697,3453,6.531,3454,5.95,3455,5.95,3526,3.48,3527,5.347,3528,5.347,3529,6.774,3530,5.347,3531,5.95,3532,6.774,3533,5.347,3534,5.347,3535,5.347,3536,5.347,3537,6.774,3538,6.774,3539,5.347,3540,5.347,3541,5.347,3542,5.347,3543,5.347,3544,5.347,3545,5.347,3546,5.347]],["title/index.html",[7,0.283,3547,3.109,3548,3.109]],["body/index.html",[4,0.104,5,0.133,21,0.009,39,3.032,57,0.006,58,0.008,59,0.006,73,3.032,88,1.646,93,0.709,144,3.457,152,2.088,175,1.096,178,1.799,191,2.349,228,1.555,276,3.924,329,1.646,395,2.638,431,2.197,433,1.799,447,2.344,460,4.73,515,3.597,522,5.276,539,5.95,551,2.886,670,3.63,694,4.318,780,4.318,809,4.318,818,4.318,832,3.032,856,3.63,859,3.924,962,2.638,1099,2.638,1239,5.637,1341,3.2,1459,5.637,1722,5.703,2407,5.123,2885,3.63,3480,4.318,3549,4.916,3550,4.916,3551,6.418,3552,4.916,3553,7.857,3554,7.46,3555,7.574,3556,5.637,3557,4.916,3558,4.916,3559,5.637,3560,4.916,3561,4.916,3562,4.916,3563,4.916,3564,4.318,3565,4.916,3566,4.318,3567,4.916,3568,7.857,3569,6.902,3570,4.916,3571,4.916,3572,4.318,3573,4.916,3574,7.574,3575,6.433,3576,7.145,3577,6.418,3578,4.916,3579,4.916,3580,5.637,3581,4.916,3582,4.916,3583,4.916,3584,4.916,3585,4.916,3586,4.916,3587,5.637,3588,5.637,3589,6.418,3590,7.574,3591,4.916,3592,5.637,3593,4.916,3594,6.653,3595,4.916,3596,4.916,3597,4.916,3598,4.318,3599,4.916,3600,4.916,3601,4.916,3602,4.916,3603,4.916,3604,4.916,3605,4.318,3606,4.318,3607,3.924,3608,4.916,3609,4.916]],["title/license.html",[3547,3.109,3548,3.109,3610,3.109]],["body/license.html",[0,1.04,2,1.01,4,0.16,5,0.031,17,1.171,18,0.132,21,0.002,22,0.419,29,0.432,39,4.167,42,1.01,57,0.002,58,0.002,59,0.002,60,0.001,72,2.069,73,2.652,74,2.119,77,0.152,78,3.48,86,0.109,89,2.069,95,0.332,102,0.797,116,0.797,120,2.404,121,1.679,122,3.65,124,3.206,131,1.319,134,0.224,140,0.055,152,1.3,171,2.008,175,0.5,221,0.224,253,0.279,276,0.724,283,1.824,327,1.099,372,1.571,376,0.724,391,0.926,427,0.626,447,0.432,503,0.59,509,2.097,522,4.934,525,2.237,526,0.59,528,0.797,543,1.451,544,1.451,554,0.59,562,0.508,581,0.59,596,0.797,622,0.508,623,1.22,655,0.724,663,1.075,668,2.249,679,0.67,684,0.724,686,2.249,701,0.67,762,2.404,800,0.432,832,2.008,837,1.319,839,2.695,844,0.886,856,1.22,857,2.652,858,0.724,861,3.844,863,2.237,864,4.177,872,3.65,873,4.019,962,0.487,978,0.797,979,1.451,1012,0.797,1013,2.404,1015,0.797,1016,1.319,1017,1.319,1038,0.467,1073,1.22,1096,2.008,1099,0.487,1139,0.797,1141,1.451,1185,1.645,1235,1.816,1237,1.451,1241,0.67,1250,4.422,1254,2.914,1341,4.734,1342,0.724,1343,0.797,1351,1.319,1358,1.998,1411,5.27,1489,1.451,1517,0.797,1537,1.571,1541,0.67,1585,0.724,1605,0.724,1651,1.679,1742,0.724,1761,0.724,1790,0.724,1796,0.724,1805,0.724,1814,6.725,1816,3.844,2037,0.724,2038,2.914,2279,0.724,2407,2.599,2410,1.451,2411,1.451,2443,0.797,2444,2.462,2447,1.998,2526,0.626,2574,4.746,2589,1.319,2601,1.816,2602,1.319,2651,1.22,2665,0.724,2672,2.86,2677,0.797,2706,4.321,2748,1.816,2830,0.724,2878,1.998,2885,3.376,2894,0.797,3140,0.797,3232,1.451,3422,1.451,3426,1.319,3476,0.797,3554,3.777,3556,2.462,3559,0.797,3564,2.462,3566,2.462,3569,0.797,3572,0.797,3580,3.206,3588,1.998,3592,0.797,3594,0.797,3598,1.998,3605,3.777,3606,3.51,3610,7.445,3611,6.228,3612,0.907,3613,0.907,3614,2.274,3615,7.073,3616,4.301,3617,6.331,3618,6.894,3619,3.65,3620,0.907,3621,0.907,3622,1.652,3623,3.256,3624,6.756,3625,3.256,3626,2.274,3627,5.579,3628,2.274,3629,0.907,3630,0.907,3631,0.907,3632,1.652,3633,5.233,3634,3.65,3635,0.907,3636,3.65,3637,0.907,3638,0.907,3639,4.301,3640,0.907,3641,0.907,3642,0.907,3643,5.579,3644,7.755,3645,5.579,3646,2.274,3647,2.274,3648,1.652,3649,1.652,3650,3.995,3651,3.995,3652,5.579,3653,3.256,3654,0.907,3655,2.803,3656,4.301,3657,1.652,3658,4.301,3659,2.274,3660,0.907,3661,1.652,3662,0.907,3663,2.274,3664,6.228,3665,3.256,3666,1.652,3667,2.803,3668,0.907,3669,0.907,3670,1.652,3671,2.803,3672,2.803,3673,5.233,3674,1.652,3675,6.427,3676,1.652,3677,2.803,3678,3.995,3679,3.256,3680,0.907,3681,4.301,3682,3.256,3683,7.178,3684,2.274,3685,3.995,3686,0.907,3687,0.907,3688,4.301,3689,1.652,3690,5.035,3691,4.815,3692,3.256,3693,1.652,3694,0.907,3695,0.907,3696,5.73,3697,1.652,3698,0.907,3699,5.414,3700,1.652,3701,0.907,3702,2.274,3703,0.907,3704,0.907,3705,0.907,3706,0.907,3707,0.907,3708,0.907,3709,0.907,3710,0.907,3711,0.907,3712,0.907,3713,1.652,3714,0.907,3715,0.907,3716,0.907,3717,1.652,3718,1.652,3719,0.907,3720,0.907,3721,1.652,3722,1.652,3723,5.579,3724,0.907,3725,1.652,3726,1.652,3727,0.907,3728,0.907,3729,1.652,3730,2.274,3731,1.652,3732,2.274,3733,0.907,3734,0.907,3735,3.65,3736,0.907,3737,0.907,3738,3.256,3739,0.907,3740,0.907,3741,2.803,3742,0.907,3743,0.907,3744,1.652,3745,2.274,3746,0.907,3747,0.907,3748,4.572,3749,0.907,3750,5.579,3751,2.803,3752,3.256,3753,3.65,3754,2.274,3755,0.907,3756,2.274,3757,6.117,3758,1.652,3759,0.907,3760,0.907,3761,0.907,3762,2.274,3763,7.643,3764,4.815,3765,0.907,3766,0.907,3767,1.652,3768,1.652,3769,0.907,3770,4.815,3771,0.907,3772,2.803,3773,4.301,3774,0.907,3775,2.274,3776,2.274,3777,1.652,3778,3.65,3779,7.548,3780,2.274,3781,4.572,3782,2.803,3783,3.995,3784,1.652,3785,0.907,3786,1.652,3787,2.274,3788,4.572,3789,2.803,3790,0.907,3791,1.652,3792,1.652,3793,2.803,3794,2.803,3795,0.907,3796,2.274,3797,0.907,3798,6.827,3799,1.652,3800,0.907,3801,4.301,3802,0.907,3803,2.274,3804,5.73,3805,2.803,3806,1.652,3807,4.301,3808,5.035,3809,3.65,3810,0.907,3811,0.907,3812,4.301,3813,0.907,3814,1.652,3815,5.414,3816,0.907,3817,1.652,3818,2.274,3819,0.907,3820,2.274,3821,0.907,3822,0.907,3823,0.907,3824,0.907,3825,2.274,3826,2.274,3827,0.907,3828,0.907,3829,0.907,3830,1.652,3831,0.907,3832,2.274,3833,2.274,3834,3.65,3835,2.274,3836,2.274,3837,0.907,3838,0.907,3839,3.256,3840,3.65,3841,0.907,3842,0.907,3843,0.907,3844,0.907,3845,2.274,3846,0.907,3847,0.907,3848,0.907,3849,0.907,3850,0.907,3851,1.652,3852,0.907,3853,6.602,3854,4.301,3855,0.907,3856,1.652,3857,0.907,3858,0.907,3859,1.652,3860,1.652,3861,0.907,3862,0.907,3863,0.907,3864,1.652,3865,2.274,3866,0.907,3867,1.652,3868,0.907,3869,0.907,3870,0.907,3871,0.907,3872,4.815,3873,3.995,3874,2.803,3875,0.907,3876,3.256,3877,0.907,3878,1.652,3879,0.907,3880,0.907,3881,2.274,3882,0.907,3883,0.907,3884,0.907,3885,2.274,3886,2.274,3887,0.907,3888,0.907,3889,1.652,3890,1.652,3891,1.652,3892,0.907,3893,1.652,3894,0.907,3895,0.907,3896,0.907,3897,0.907,3898,0.907,3899,0.907,3900,2.274,3901,0.907,3902,0.907,3903,5.73,3904,0.907,3905,0.907,3906,0.907,3907,3.256,3908,3.256,3909,0.907,3910,0.907,3911,2.274,3912,0.907,3913,0.907,3914,2.803,3915,0.907,3916,1.652,3917,0.907,3918,0.907,3919,0.907,3920,0.907,3921,0.907,3922,1.652,3923,1.652,3924,0.907,3925,2.274,3926,0.907,3927,0.907,3928,1.652,3929,0.907,3930,0.907,3931,0.907,3932,0.907,3933,1.652,3934,1.652,3935,1.652,3936,1.652,3937,3.65,3938,0.907,3939,0.907,3940,1.652,3941,2.274,3942,2.274,3943,2.803,3944,2.803,3945,2.274,3946,2.803,3947,1.652,3948,0.907,3949,3.256,3950,3.256,3951,0.907,3952,1.652,3953,1.652,3954,3.256,3955,1.652,3956,2.803,3957,2.803,3958,2.274,3959,5.579,3960,3.256,3961,0.907,3962,0.907,3963,0.907,3964,2.274,3965,1.652,3966,1.652,3967,0.907,3968,0.907,3969,0.907,3970,1.652,3971,0.907,3972,0.907,3973,0.907,3974,2.274,3975,0.907,3976,0.907,3977,1.652,3978,2.274,3979,0.907,3980,1.652,3981,0.907,3982,2.274,3983,0.907,3984,0.907,3985,1.652,3986,1.652,3987,3.65,3988,6.427,3989,2.274,3990,1.652,3991,1.652,3992,1.652,3993,1.652,3994,2.803,3995,1.652,3996,0.907,3997,0.907,3998,0.907,3999,0.907,4000,3.65,4001,1.652,4002,0.907,4003,0.907,4004,0.907,4005,0.907,4006,1.652,4007,0.907,4008,1.652,4009,0.907,4010,3.256,4011,2.803,4012,0.907,4013,0.907,4014,0.907,4015,0.907,4016,0.907,4017,0.907,4018,0.907,4019,0.907,4020,0.907,4021,2.274,4022,3.256,4023,2.803,4024,2.803,4025,1.652,4026,0.907,4027,0.907,4028,1.652,4029,0.907,4030,0.907,4031,0.907,4032,1.652,4033,0.907,4034,0.907,4035,2.803,4036,0.907,4037,1.652,4038,0.907,4039,1.652,4040,0.907,4041,0.907,4042,2.274,4043,0.907,4044,0.907,4045,0.907,4046,0.907,4047,0.907,4048,1.652,4049,0.907,4050,0.907,4051,0.907,4052,0.907,4053,0.907,4054,2.274,4055,0.907,4056,0.907,4057,0.907,4058,0.907,4059,3.256,4060,0.907,4061,0.907,4062,2.803,4063,0.907,4064,0.907,4065,0.907,4066,0.907,4067,0.907,4068,0.907,4069,0.907,4070,1.652,4071,2.274,4072,0.907,4073,0.907,4074,0.907,4075,2.274,4076,0.907,4077,0.907,4078,2.274,4079,0.907,4080,1.652,4081,0.907,4082,0.907,4083,0.907,4084,0.907,4085,0.907,4086,0.907,4087,0.907,4088,0.907,4089,0.907,4090,0.907,4091,1.652,4092,0.907,4093,0.907,4094,0.907,4095,1.652,4096,1.652,4097,0.907,4098,0.907,4099,2.274,4100,0.907,4101,2.274,4102,1.652,4103,0.907,4104,1.652,4105,1.652,4106,0.907,4107,2.274,4108,3.995,4109,0.907,4110,1.652,4111,1.652,4112,0.907,4113,1.652,4114,0.907,4115,0.907,4116,0.907,4117,0.907,4118,0.907,4119,1.652,4120,0.907,4121,2.803,4122,0.907,4123,3.256,4124,0.907,4125,0.907,4126,0.907,4127,0.907,4128,0.907,4129,1.652,4130,1.652,4131,1.652,4132,2.274,4133,0.907,4134,1.652,4135,1.652,4136,0.907,4137,2.274,4138,0.907,4139,1.652,4140,0.907,4141,1.652,4142,0.907,4143,1.652,4144,0.907,4145,0.907,4146,1.652,4147,6.602,4148,1.652,4149,0.907,4150,3.256,4151,4.815,4152,2.274,4153,0.907,4154,0.907,4155,0.907,4156,2.803,4157,0.907,4158,0.907,4159,2.274,4160,1.652,4161,0.907,4162,0.907,4163,0.907,4164,0.907,4165,0.907,4166,0.907,4167,0.907,4168,0.907,4169,2.803,4170,1.652,4171,1.652,4172,0.907,4173,0.907,4174,2.274,4175,0.907,4176,1.652,4177,2.274,4178,1.652,4179,0.907,4180,0.907,4181,0.907,4182,0.907,4183,1.652,4184,2.274,4185,0.907,4186,0.907,4187,1.652,4188,0.907,4189,0.907,4190,0.907,4191,0.907,4192,0.907,4193,0.907,4194,2.274,4195,1.652,4196,0.907,4197,0.907,4198,2.803,4199,0.907,4200,2.274,4201,0.907,4202,0.907,4203,1.652,4204,0.907,4205,0.907,4206,0.907,4207,2.274,4208,1.652,4209,0.907,4210,3.995,4211,1.652,4212,2.274,4213,2.803,4214,0.907,4215,0.907,4216,1.652,4217,0.907,4218,2.274,4219,0.907,4220,1.652,4221,0.907,4222,0.907,4223,0.907,4224,0.907,4225,2.274,4226,0.907,4227,1.652,4228,2.274,4229,1.652,4230,0.907,4231,1.652,4232,0.907,4233,0.907,4234,1.652,4235,1.652,4236,0.907,4237,0.907,4238,1.652,4239,0.907,4240,0.907,4241,0.907,4242,0.907,4243,0.907,4244,0.907,4245,0.907,4246,0.907,4247,0.907,4248,0.907,4249,1.652,4250,2.274,4251,0.907,4252,0.907,4253,0.907,4254,0.907,4255,0.907,4256,1.652,4257,0.907,4258,0.907,4259,0.907,4260,0.907,4261,0.907,4262,0.907,4263,0.907,4264,0.907,4265,0.907,4266,0.907,4267,0.907,4268,0.907,4269,0.907,4270,2.803,4271,0.907,4272,1.652,4273,0.907,4274,0.907,4275,0.907,4276,0.907,4277,0.907,4278,0.907,4279,0.907,4280,0.907,4281,0.907,4282,0.907,4283,2.274,4284,0.907,4285,0.797,4286,0.907,4287,0.907,4288,1.652,4289,0.907,4290,0.907,4291,0.907,4292,0.907,4293,0.907,4294,1.652,4295,1.652,4296,2.274,4297,0.907,4298,1.652,4299,0.907,4300,0.907,4301,0.907,4302,0.907,4303,2.274,4304,1.652,4305,0.907,4306,1.652,4307,1.652,4308,1.652,4309,0.907,4310,0.907,4311,0.907,4312,0.907,4313,0.907,4314,0.907,4315,1.652,4316,0.907,4317,0.907,4318,1.652,4319,0.907,4320,2.274,4321,0.907,4322,0.907,4323,0.907,4324,0.907,4325,0.907,4326,0.907,4327,0.907,4328,0.907,4329,0.907,4330,0.907,4331,0.907,4332,0.907,4333,0.907,4334,0.907,4335,1.652,4336,0.907,4337,0.907,4338,0.907,4339,0.907,4340,0.907,4341,0.907,4342,0.907,4343,0.907,4344,0.907,4345,0.907,4346,0.907,4347,0.907,4348,0.907,4349,0.907,4350,0.907,4351,0.907,4352,0.907,4353,2.274,4354,1.652,4355,0.907,4356,0.907,4357,0.907,4358,0.907,4359,0.907,4360,1.652,4361,0.907,4362,0.907,4363,1.652,4364,1.652,4365,0.907,4366,0.907,4367,0.907,4368,0.907,4369,0.907,4370,0.907,4371,0.907,4372,0.907,4373,0.907,4374,0.907,4375,0.907,4376,0.907,4377,0.907,4378,0.907,4379,0.907,4380,0.907,4381,0.907,4382,0.907,4383,0.907,4384,0.907,4385,0.907,4386,0.907,4387,0.907,4388,0.907,4389,0.907,4390,0.907]],["title/modules.html",[433,2.131]],["body/modules.html",[21,0.009,57,0.007,58,0.009,59,0.007,122,6.901,432,4.403,433,2.182,442,4.118,443,3.071,444,4.118,628,4.403,632,4.118,722,4.403,728,4.118,736,5.111,878,4.403,882,4.118,2748,6.951,2750,4.403,2754,4.118,2901,4.403,2905,4.118,3063,4.403,3067,4.118,3357,4.118,4391,8.708,4392,8.95,4393,8.645]],["title/overview.html",[3607,4.648]],["body/overview.html",[2,1.701,21,0.011,57,0.005,58,0.006,59,0.005,62,1.492,176,2.045,177,1.402,285,1.083,291,2.104,293,2.045,296,2.045,298,2.575,300,2.045,302,2.045,304,2.045,307,2.575,310,2.045,312,2.045,314,2.045,316,2.575,319,2.045,321,2.045,323,2.575,326,2.575,328,2.045,330,1.247,331,2.502,333,2.045,335,2.045,372,2.646,431,1.025,432,6.269,433,1.402,434,1.897,435,2.056,436,1.973,437,2.056,438,1.54,439,3.366,440,3.366,441,3.366,442,4.34,443,4.551,444,5.709,445,2.907,446,2.056,447,1.827,498,1.827,628,5.799,629,3.366,630,3.366,631,3.366,632,4.34,722,6.299,723,3.366,724,3.366,725,3.366,726,3.366,727,3.366,728,4.34,729,4.34,730,4.09,731,4.34,732,4.34,835,3.059,878,5.799,879,3.366,880,3.366,881,3.366,882,4.34,889,2.056,1096,3.341,1537,2.646,1553,3.059,2750,5.799,2751,3.366,2752,3.366,2753,3.366,2754,4.34,2840,5.31,2841,3.059,2901,5.979,2902,3.366,2903,3.366,2904,3.366,2905,4.34,2915,3.366,2916,3.366,2917,3.366,2918,5.31,3063,5.979,3064,3.366,3065,3.366,3066,3.366,3067,4.34,3353,3.366,3354,3.366,3355,3.366,3356,3.366,3357,4.34,3607,3.059,4285,3.366,4394,3.832,4395,3.832,4396,3.832]],["title/routes.html",[498,2.776]],["body/routes.html",[21,0.01,57,0.008,58,0.01,59,0.008,498,3.335]],["title/miscellaneous/typealiases.html",[3526,2.304,4397,5.118]],["body/miscellaneous/typealiases.html",[7,0.545,18,0.627,21,0.009,23,4.714,40,4.214,57,0.008,58,0.009,59,0.008,2501,4.007,2685,5.11,3526,4.443,4398,6.826,4399,5.996]],["title/miscellaneous/variables.html",[3526,2.304,3575,4.086]],["body/miscellaneous/variables.html",[1,0.702,6,0.958,7,0.118,11,2.519,13,1.017,14,0.908,15,1.017,16,0.825,17,3.578,18,0.578,19,2.412,21,0.011,22,0.373,23,1.017,24,1.017,25,1.017,26,1.017,27,0.958,28,0.958,29,1.9,30,1.017,32,0.908,33,1.958,34,1.017,35,1.017,36,1.017,37,0.729,38,1.017,39,0.908,42,0.653,45,2.04,47,0.79,49,1.566,50,0.958,51,1.487,52,2.593,53,1.566,54,1.566,55,1.017,57,0.002,58,0.003,59,0.002,63,1.175,68,1.491,73,1.566,89,1.875,91,0.479,93,0.754,94,2.027,95,1.799,114,1.645,123,1.866,135,2.282,141,3.032,144,2.26,146,2.027,147,3.395,148,2.027,149,1.293,150,2.027,151,2.027,152,1.09,153,1.875,171,0.908,181,0.493,228,2.356,282,2.18,320,0.849,329,0.493,344,1.754,378,0.864,495,1.017,505,2.638,507,2.885,508,2.755,509,2.214,511,4.064,551,1.491,554,1.653,622,0.825,668,1.017,742,1.175,745,1.875,757,2.942,762,1.087,763,1.175,764,1.175,800,1.211,817,1.017,831,2.473,832,1.566,834,0.908,844,0.79,857,0.908,1013,1.875,1096,0.908,1127,2.027,1179,2.344,1202,1.875,1203,1.875,1205,1.875,1241,1.087,1340,1.017,1521,1.087,1522,1.175,1523,4.828,1529,1.175,1530,3.18,1531,1.175,1532,2.473,1533,1.175,1534,1.175,1535,2.027,1536,1.175,1537,1.017,1538,1.175,1539,1.175,1540,1.175,1541,1.087,1542,1.175,1543,1.087,1544,1.175,1545,1.491,1546,1.293,1547,1.087,1548,1.293,1549,3.924,1550,3.395,1551,1.293,1552,3.924,1553,3.924,1554,3.924,1555,2.942,1556,1.293,1557,2.23,1558,3.319,1559,5.312,1560,3.588,1561,3.319,1562,3.948,1563,2.23,1564,1.293,1565,2.23,1566,1.293,1567,1.293,1568,1.293,1569,2.23,1570,1.293,1571,1.293,1572,1.293,1573,2.23,1574,1.293,1575,1.293,1576,1.293,1577,2.23,1578,2.942,1579,2.23,1580,2.23,1581,1.293,1582,1.293,1583,1.293,1584,1.293,1585,1.175,1586,1.293,1587,1.293,1588,1.293,1589,1.293,1590,1.293,1591,1.293,1592,1.293,1593,1.293,1594,1.293,1595,1.293,1596,1.293,1597,1.293,1598,1.293,1599,1.293,1600,1.293,1601,1.293,1602,1.293,1603,1.293,1604,1.293,1605,1.175,1606,1.293,1607,1.293,1608,1.293,1609,1.293,1610,1.293,1611,1.293,1612,1.293,1613,1.293,1614,1.293,1615,1.293,1616,1.293,1617,1.293,1618,1.293,1619,1.293,1620,1.293,1621,1.293,1622,2.23,1623,3.499,1624,1.293,1625,1.293,1626,1.293,1627,1.293,1628,1.293,1629,1.293,1630,1.293,1631,1.293,1632,1.293,1633,1.293,1634,1.293,1635,1.293,1636,1.293,1637,1.293,1638,1.293,1639,1.293,1640,1.293,1641,1.293,1642,1.293,1643,1.293,1644,1.293,1645,1.293,1646,1.293,1647,2.23,1648,1.293,1649,1.293,1650,1.293,1651,1.087,1652,1.293,1653,1.293,1654,1.293,1655,1.293,1656,1.293,1657,1.293,1658,1.293,1659,1.293,1660,1.293,1661,1.293,1662,1.293,1663,1.293,1664,1.293,1665,1.293,1666,1.293,1667,1.293,1668,1.293,1669,1.293,1670,1.293,1671,1.293,1672,1.293,1673,1.293,1674,1.293,1675,1.293,1676,1.293,1677,1.293,1678,1.293,1679,1.293,1680,1.293,1681,1.293,1682,2.23,1683,1.293,1684,1.293,1685,1.293,1686,1.293,1687,1.293,1688,1.293,1689,1.293,1690,1.293,1691,2.23,1692,1.293,1693,1.175,1694,1.293,1695,1.293,1696,1.293,1697,1.293,1698,1.293,1699,1.293,1700,1.293,1701,1.293,1702,1.293,1703,2.23,1704,1.293,1705,1.293,1706,1.293,1707,1.293,1708,1.293,1709,1.293,1710,1.293,1711,1.293,1712,1.293,1713,1.293,1714,1.293,1715,1.293,1716,1.293,1717,1.293,1718,1.293,1719,1.293,1720,1.293,1721,2.23,1722,2.027,1723,1.293,1724,1.293,1725,1.293,1726,1.293,1727,1.293,1728,1.293,1729,1.293,1730,1.293,1731,1.293,1732,1.293,1733,1.293,1734,1.293,1735,1.293,1736,1.293,1737,1.293,1738,1.293,1739,1.293,1740,1.293,1741,1.293,1742,1.175,1743,1.293,1744,1.293,1745,1.293,1746,1.293,1747,1.293,1748,1.293,1749,1.293,1750,1.293,1751,1.293,1752,1.293,1753,1.293,1754,1.293,1755,1.293,1756,1.293,1757,1.293,1758,1.293,1759,1.293,1760,1.293,1761,1.175,1762,1.293,1763,1.293,1764,1.293,1765,1.293,1766,1.293,1767,1.293,1768,1.293,1769,1.293,1770,1.293,1771,1.293,1772,1.293,1773,1.293,1774,1.293,1775,1.293,1776,1.293,1777,1.293,1778,1.293,1779,1.293,1780,2.23,1781,1.293,1782,1.293,1783,1.293,1784,1.293,1785,1.293,1786,1.293,1787,1.293,1788,1.175,1789,1.293,1790,1.175,1791,1.293,1792,1.293,1793,1.293,1794,1.293,1795,1.293,1796,1.175,1797,1.293,1798,1.293,1799,1.293,1800,1.293,1801,1.293,1802,1.293,1803,1.293,1804,1.293,1805,1.175,1806,1.293,1807,1.293,1808,2.027,1809,1.293,1810,1.293,1811,1.293,1812,1.293,1813,1.293,1814,1.175,1815,1.293,1816,1.175,1817,1.293,1818,1.293,1819,2.027,1820,1.293,1821,1.293,1822,1.293,1823,1.293,1824,2.23,1825,1.293,1826,1.293,1827,1.293,1828,1.293,1829,1.293,1830,1.293,1831,1.293,1832,1.293,1833,1.293,1834,1.293,1835,1.293,1836,1.293,1837,1.293,1838,1.293,1839,1.293,1840,1.293,1841,1.293,1842,1.293,1843,1.293,1844,1.293,1845,1.293,1846,1.293,1847,1.293,1848,1.293,1849,1.293,1850,1.293,1851,1.293,1852,1.293,1853,1.293,1854,1.293,1855,1.293,1856,1.293,1857,1.293,1858,1.293,1859,1.293,1860,1.293,1861,1.293,1862,1.293,1863,1.293,1864,1.293,1865,1.293,1866,1.293,1867,1.293,1868,2.23,1869,1.293,1870,1.293,1871,1.293,1872,1.293,1873,1.293,1874,1.293,1875,1.293,1876,1.293,1877,1.293,1878,1.293,1879,1.293,1880,1.293,1881,1.293,1882,1.293,1883,1.293,1884,1.293,1885,1.293,1886,2.942,1887,1.293,1888,1.293,1889,1.293,1890,1.293,1891,1.293,1892,1.293,1893,1.293,1894,1.293,1895,1.293,1896,1.293,1897,1.293,1898,1.293,1899,1.293,1900,1.293,1901,1.293,1902,1.293,1903,1.293,1904,1.293,1905,1.293,1906,1.293,1907,1.293,1908,1.293,1909,1.293,1910,1.293,1911,1.293,1912,1.293,1913,1.293,1914,1.293,1915,1.293,1916,1.293,1917,1.293,1918,1.293,1919,1.293,1920,1.293,1921,1.293,1922,1.293,1923,1.293,1924,1.293,1925,1.293,1926,1.293,1927,1.293,1928,1.293,1929,1.293,1930,1.293,1931,1.293,1932,1.293,1933,1.293,1934,1.293,1935,1.293,1936,1.293,1937,1.293,1938,1.293,1939,1.293,1940,1.293,1941,1.293,1942,1.293,1943,1.293,1944,1.293,1945,1.293,1946,1.293,1947,1.293,1948,1.293,1949,1.293,1950,1.293,1951,1.293,1952,1.293,1953,1.293,1954,1.293,1955,1.293,1956,1.293,1957,1.293,1958,1.293,1959,1.293,1960,1.293,1961,1.293,1962,1.293,1963,1.293,1964,1.293,1965,1.293,1966,1.293,1967,1.293,1968,1.293,1969,1.293,1970,1.293,1971,1.293,1972,1.293,1973,1.293,1974,1.293,1975,2.23,1976,1.293,1977,2.027,1978,1.293,1979,1.293,1980,1.293,1981,1.293,1982,1.293,1983,1.293,1984,1.293,1985,1.293,1986,1.293,1987,1.293,1988,1.293,1989,1.293,1990,1.293,1991,1.293,1992,1.293,1993,1.293,1994,1.175,1995,1.293,1996,1.293,1997,1.293,1998,1.293,1999,1.293,2000,1.293,2001,1.293,2002,1.293,2003,1.293,2004,1.293,2005,1.293,2006,2.23,2007,2.23,2008,1.293,2009,2.027,2010,1.293,2011,1.293,2012,1.293,2013,1.293,2014,1.293,2015,2.027,2016,1.293,2017,1.293,2018,1.293,2019,1.293,2020,1.293,2021,1.293,2022,1.293,2023,1.293,2024,1.293,2025,1.293,2026,1.293,2027,1.293,2028,1.293,2029,1.293,2030,1.293,2031,1.293,2032,1.293,2033,1.293,2034,1.293,2035,1.293,2036,1.293,2037,1.175,2038,1.175,2039,1.293,2040,1.293,2041,1.293,2042,2.23,2043,1.293,2044,1.293,2045,1.293,2046,1.293,2047,1.293,2048,1.293,2049,1.293,2050,2.23,2051,1.293,2052,1.293,2053,1.293,2054,1.293,2055,1.293,2056,1.293,2057,1.293,2058,1.293,2059,1.293,2060,1.293,2061,1.293,2062,1.293,2063,1.293,2064,1.293,2065,1.293,2066,1.293,2067,1.293,2068,1.293,2069,1.293,2070,1.293,2071,1.293,2072,1.293,2073,1.293,2074,1.293,2075,1.293,2076,1.293,2077,1.175,2078,1.293,2079,1.293,2080,1.293,2081,1.293,2082,1.293,2083,2.027,2084,1.293,2085,1.293,2086,1.293,2087,1.293,2088,1.293,2089,1.293,2090,1.293,2091,1.175,2092,1.293,2093,1.293,2094,1.293,2095,1.293,2096,1.293,2097,1.293,2098,1.293,2099,1.293,2100,1.293,2101,1.293,2102,1.293,2103,1.293,2104,1.293,2105,1.293,2106,1.293,2107,1.293,2108,1.293,2109,1.293,2110,1.293,2111,1.293,2112,1.293,2113,1.293,2114,1.293,2115,1.293,2116,1.293,2117,1.293,2118,1.293,2119,1.293,2120,1.293,2121,1.293,2122,1.293,2123,1.293,2124,1.293,2125,1.293,2126,1.293,2127,1.293,2128,1.293,2129,1.293,2130,1.293,2131,1.293,2132,1.293,2133,1.293,2134,1.293,2135,1.293,2136,1.293,2137,1.293,2138,1.293,2139,1.293,2140,1.293,2141,1.293,2142,2.027,2143,2.23,2144,3.499,2145,1.293,2146,1.293,2147,1.293,2148,1.293,2149,1.293,2150,1.293,2151,1.293,2152,1.293,2153,1.293,2154,1.293,2155,1.293,2156,1.293,2157,1.293,2158,1.293,2159,1.293,2160,2.23,2161,1.293,2162,1.293,2163,2.23,2164,1.293,2165,1.293,2166,1.293,2167,2.942,2168,2.942,2169,1.293,2170,1.293,2171,2.23,2172,2.23,2173,2.23,2174,1.293,2175,1.293,2176,1.293,2177,1.293,2178,1.293,2179,1.293,2180,1.293,2181,1.293,2182,1.293,2183,1.293,2184,1.293,2185,1.293,2186,1.293,2187,1.293,2188,1.293,2189,1.293,2190,1.293,2191,1.293,2192,1.293,2193,1.293,2194,1.293,2195,1.293,2196,1.293,2197,1.293,2198,1.293,2199,1.293,2200,1.293,2201,1.293,2202,1.293,2203,1.293,2204,1.293,2205,1.293,2206,1.293,2207,2.23,2208,1.293,2209,1.293,2210,1.293,2211,1.293,2212,1.293,2213,1.293,2214,1.293,2215,1.293,2216,1.293,2217,1.293,2218,1.293,2219,1.293,2220,2.23,2221,1.293,2222,1.293,2223,1.293,2224,2.23,2225,1.293,2226,1.293,2227,1.293,2228,1.293,2229,1.293,2230,1.293,2231,1.293,2232,1.293,2233,1.293,2234,1.293,2235,1.293,2236,1.293,2237,1.293,2238,1.293,2239,1.293,2240,1.293,2241,1.293,2242,1.293,2243,1.293,2244,1.293,2245,1.293,2246,1.293,2247,1.293,2248,1.293,2249,1.293,2250,1.293,2251,2.942,2252,1.293,2253,1.293,2254,1.293,2255,1.293,2256,1.293,2257,1.293,2258,1.293,2259,1.293,2260,1.293,2261,1.293,2262,1.293,2263,1.293,2264,1.293,2265,2.23,2266,1.293,2267,1.293,2268,1.293,2269,1.293,2270,1.293,2271,1.293,2272,1.293,2273,2.23,2274,1.293,2275,1.293,2276,1.293,2277,1.293,2278,1.293,2279,1.175,2280,1.293,2281,1.293,2282,1.293,2283,1.293,2284,0.908,2285,1.293,2286,1.293,2287,1.293,2288,1.293,2289,1.293,2290,1.293,2291,1.293,2292,2.23,2293,1.293,2294,1.293,2295,2.23,2296,1.293,2297,1.293,2298,1.293,2299,1.293,2300,1.293,2301,1.293,2302,1.293,2303,1.293,2304,1.293,2305,1.293,2306,1.293,2307,1.293,2308,1.293,2309,1.293,2310,1.293,2311,1.293,2312,2.942,2313,1.293,2314,1.293,2315,1.293,2316,1.293,2317,1.293,2318,1.293,2319,1.293,2320,1.293,2321,1.293,2322,1.293,2323,1.293,2324,1.293,2325,1.293,2326,1.293,2327,1.293,2328,1.293,2329,1.293,2330,1.293,2331,2.23,2332,1.293,2333,1.293,2334,1.293,2335,1.293,2336,1.293,2337,1.293,2338,1.293,2339,1.293,2340,1.293,2341,1.293,2342,1.293,2343,1.293,2344,1.293,2345,1.293,2346,1.293,2347,1.293,2348,1.293,2349,2.23,2350,1.293,2351,1.293,2352,1.293,2353,1.293,2354,2.942,2355,2.942,2356,1.293,2357,2.23,2358,1.293,2359,1.293,2360,1.293,2361,1.293,2362,1.293,2363,1.293,2364,1.293,2365,1.293,2366,1.293,2367,1.293,2368,1.293,2369,1.293,2370,1.293,2371,1.293,2372,2.942,2373,1.293,2374,1.293,2375,1.293,2376,1.293,2377,1.293,2378,1.293,2379,1.293,2380,1.293,2381,1.293,2382,1.293,2383,1.293,2384,1.293,2385,1.293,2386,1.293,2387,1.293,2388,1.293,2389,1.293,2390,1.293,2391,2.027,2392,2.23,2393,2.23,2394,1.293,2395,1.293,2396,2.027,2397,1.293,2398,1.293,2399,1.293,2400,1.293,2401,1.175,2402,1.175,2501,1.491,2502,1.875,2574,2.942,2575,1.491,2576,1.875,2577,1.175,2685,1.653,2712,1.087,2979,1.175,2980,2.673,2999,1.293,3166,1.175,3218,2.23,3219,2.027,3443,2.027,3448,1.175,3451,2.23,3467,1.293,3473,1.293,3474,1.293,3475,1.293,3526,0.958,3531,1.293,3575,1.175,3587,2.942,4399,2.23,4400,2.539,4401,2.539,4402,5.824,4403,1.472,4404,1.472,4405,1.472,4406,1.472,4407,1.472,4408,1.472,4409,3.349,4410,3.349,4411,3.349,4412,3.349,4413,3.349,4414,3.349,4415,3.349,4416,3.349,4417,3.349,4418,2.539,4419,2.539,4420,3.349,4421,3.349,4422,3.349,4423,2.539,4424,2.539,4425,3.349,4426,3.349,4427,3.349,4428,1.472,4429,3.349,4430,3.349,4431,1.472,4432,1.472,4433,1.472,4434,1.472,4435,1.472,4436,1.472,4437,1.472]]],"invertedIndex":[["",{"_index":21,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"classes/W3.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"routes.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}}}],["0",{"_index":51,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signer.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["0.0",{"_index":602,"title":{},"body":{"components/AdminComponent.html":{}}}],["0.0.7",{"_index":3495,"title":{},"body":{"dependencies.html":{}}}],["0.1.0",{"_index":3510,"title":{},"body":{"dependencies.html":{}}}],["0.1.4",{"_index":3494,"title":{},"body":{"dependencies.html":{}}}],["0.10.2",{"_index":3525,"title":{},"body":{"dependencies.html":{}}}],["0.2",{"_index":603,"title":{},"body":{"components/AdminComponent.html":{}}}],["0.2.4",{"_index":3490,"title":{},"body":{"dependencies.html":{}}}],["0/1",{"_index":3437,"title":{},"body":{"coverage.html":{}}}],["0/10",{"_index":3465,"title":{},"body":{"coverage.html":{}}}],["0/11",{"_index":3456,"title":{},"body":{"coverage.html":{}}}],["0/12",{"_index":3472,"title":{},"body":{"coverage.html":{}}}],["0/14",{"_index":3462,"title":{},"body":{"coverage.html":{}}}],["0/15",{"_index":3471,"title":{},"body":{"coverage.html":{}}}],["0/16",{"_index":3466,"title":{},"body":{"coverage.html":{}}}],["0/17",{"_index":3470,"title":{},"body":{"coverage.html":{}}}],["0/18",{"_index":3464,"title":{},"body":{"coverage.html":{}}}],["0/2",{"_index":3440,"title":{},"body":{"coverage.html":{}}}],["0/26",{"_index":3461,"title":{},"body":{"coverage.html":{}}}],["0/3",{"_index":3441,"title":{},"body":{"coverage.html":{}}}],["0/33",{"_index":3468,"title":{},"body":{"coverage.html":{}}}],["0/4",{"_index":3457,"title":{},"body":{"coverage.html":{}}}],["0/43",{"_index":3469,"title":{},"body":{"coverage.html":{}}}],["0/5",{"_index":3458,"title":{},"body":{"coverage.html":{}}}],["0/6",{"_index":3445,"title":{},"body":{"coverage.html":{}}}],["0/7",{"_index":3463,"title":{},"body":{"coverage.html":{}}}],["0/8",{"_index":3460,"title":{},"body":{"coverage.html":{}}}],["0/9",{"_index":3459,"title":{},"body":{"coverage.html":{}}}],["04/02/2020",{"_index":3387,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["05/28/2020",{"_index":3398,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["08/16/2020",{"_index":3380,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["0px",{"_index":591,"title":{},"body":{"components/AdminComponent.html":{}}}],["0x3da99aad2d9ca01d131efc3b17444b832b31ff4a",{"_index":1562,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["0x4a6fa6bc3bfe4c9661bc692d9798425350c9e3d4",{"_index":1576,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["0x51d3c8e2e421604e2b644117a362d589c5434739",{"_index":3417,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["0x6ca3cb14aa6f761712e1c18646afba4d5ae249e8",{"_index":4435,"title":{},"body":{"miscellaneous/variables.html":{}}}],["0x8fa4101ef19d0a078239d035659e92b278bd083c",{"_index":1572,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["0x9ced86089f7abb5a97b40eb0e7521e7aa308d354",{"_index":1564,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["0x9d7c284907acbd4a0ce2ddd0aa69147a921a573d",{"_index":3418,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["0xa686005ce37dce7738436256982c3903f2e4ea8e",{"_index":1549,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"miscellaneous/variables.html":{}}}],["0xaf1b487491073c2d49136db3fd87e293302cf839",{"_index":4431,"title":{},"body":{"miscellaneous/variables.html":{}}}],["0xc0ffee254729296a45a3885639ac7e10f9d54979",{"_index":161,"title":{},"body":{"classes/AccountIndex.html":{}}}],["0xc63cfa91a3bff41ce31ff436f67d3acbc977db95",{"_index":1568,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["0xc80d6aff8194114c52aecd84c9f15fd5c8abb187",{"_index":1556,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["0xc86ff893ac40d3950b4d5f94a9b837258b0a9865",{"_index":3379,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["0xea6225212005e86a4490018ded4bf37f3e772161",{"_index":4428,"title":{},"body":{"miscellaneous/variables.html":{}}}],["0xeb3907ecad74a0013c259d5874ae7f22dcbcc95c",{"_index":4430,"title":{},"body":{"miscellaneous/variables.html":{}}}],["1",{"_index":171,"title":{},"body":{"classes/AccountIndex.html":{},"components/AdminComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"classes/UserServiceStub.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["1.0.0",{"_index":3499,"title":{},"body":{"dependencies.html":{}}}],["1.10.22",{"_index":3502,"title":{},"body":{"dependencies.html":{}}}],["1.16.1",{"_index":3515,"title":{},"body":{"dependencies.html":{}}}],["1.3.0",{"_index":3523,"title":{},"body":{"dependencies.html":{}}}],["1/1",{"_index":3431,"title":{},"body":{"coverage.html":{}}}],["10",{"_index":372,"title":{},"body":{"components/AccountsComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"components/TransactionsComponent.html":{},"license.html":{},"overview.html":{}}}],["10.2.0",{"_index":3480,"title":{},"body":{"dependencies.html":{},"index.html":{}}}],["10.2.7",{"_index":3482,"title":{},"body":{"dependencies.html":{}}}],["10/10/2020",{"_index":3403,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["100",{"_index":378,"title":{},"body":{"components/AccountsComponent.html":{},"components/AppComponent.html":{},"injectables/BlockSyncService.html":{},"interceptors/MockBackendInterceptor.html":{},"components/TransactionsComponent.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["100)).subscribe(async",{"_index":271,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["1000",{"_index":1536,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["1000000",{"_index":1559,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["1000000000000000001014",{"_index":1565,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["1000000001000000000000000000",{"_index":1551,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["100990",{"_index":1577,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["11",{"_index":3916,"title":{},"body":{"license.html":{}}}],["11/16/2020",{"_index":3393,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["12987",{"_index":3381,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["13",{"_index":4285,"title":{},"body":{"license.html":{},"overview.html":{}}}],["15",{"_index":4110,"title":{},"body":{"license.html":{}}}],["151.002995",{"_index":3421,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["1595537208",{"_index":3415,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["16",{"_index":4111,"title":{},"body":{"license.html":{}}}],["17",{"_index":4394,"title":{},"body":{"overview.html":{}}}],["18",{"_index":1553,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["1996",{"_index":3921,"title":{},"body":{"license.html":{}}}],["2",{"_index":1096,"title":{},"body":{"injectables/BlockSyncService.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/TokenRegistry.html":{},"classes/UserServiceStub.html":{},"license.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["2.0.0",{"_index":3519,"title":{},"body":{"dependencies.html":{}}}],["2.1.4",{"_index":3517,"title":{},"body":{"dependencies.html":{}}}],["2.10.0",{"_index":3522,"title":{},"body":{"dependencies.html":{}}}],["2.4.2",{"_index":3511,"title":{},"body":{"dependencies.html":{}}}],["2.5.4",{"_index":3487,"title":{},"body":{"dependencies.html":{}}}],["2.9.4",{"_index":3493,"title":{},"body":{"dependencies.html":{}}}],["20",{"_index":376,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionsComponent.html":{},"license.html":{}}}],["200",{"_index":817,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["2007",{"_index":3614,"title":{},"body":{"license.html":{}}}],["2020",{"_index":1367,"title":{},"body":{"components/FooterComponent.html":{}}}],["2021",{"_index":4360,"title":{},"body":{"license.html":{}}}],["21",{"_index":4395,"title":{},"body":{"overview.html":{}}}],["22.430670",{"_index":3420,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["25412341234",{"_index":3386,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["25412345678",{"_index":3378,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["25462518374",{"_index":3402,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["25498765432",{"_index":3392,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["25498769876",{"_index":3397,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["28",{"_index":4266,"title":{},"body":{"license.html":{}}}],["29",{"_index":3612,"title":{},"body":{"license.html":{}}}],["3",{"_index":668,"title":{},"body":{"components/AppComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["3.0",{"_index":55,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["3.5.1",{"_index":3506,"title":{},"body":{"dependencies.html":{}}}],["3/3",{"_index":3433,"title":{},"body":{"coverage.html":{}}}],["3/5",{"_index":3477,"title":{},"body":{"coverage.html":{}}}],["30",{"_index":4165,"title":{},"body":{"license.html":{}}}],["3000",{"_index":3136,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["300px",{"_index":1312,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["32",{"_index":3286,"title":{},"body":{"injectables/TransactionService.html":{}}}],["39;0xc0ffee254729296a45a3885639ac7e10f9d54979'",{"_index":108,"title":{},"body":{"classes/AccountIndex.html":{}}}],["39;2'",{"_index":2996,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["39;sarafu'",{"_index":2990,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["4",{"_index":1537,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"license.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["4.10.10",{"_index":3513,"title":{},"body":{"dependencies.html":{}}}],["4.2.1",{"_index":3512,"title":{},"body":{"dependencies.html":{}}}],["4.5.3",{"_index":3491,"title":{},"body":{"dependencies.html":{}}}],["400",{"_index":2496,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["401",{"_index":966,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/ErrorInterceptor.html":{}}}],["401/403",{"_index":815,"title":{},"body":{"components/AuthComponent.html":{}}}],["403",{"_index":1009,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/ErrorInterceptor.html":{}}}],["450",{"_index":3394,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["5",{"_index":1541,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["5.0.31",{"_index":3504,"title":{},"body":{"dependencies.html":{}}}],["50",{"_index":377,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionsComponent.html":{}}}],["51",{"_index":4396,"title":{},"body":{"overview.html":{}}}],["56",{"_index":2278,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["5621",{"_index":3399,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["56281",{"_index":3388,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["6",{"_index":1543,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"pipes/TokenRatioPipe.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["6.6.0",{"_index":3516,"title":{},"body":{"dependencies.html":{}}}],["60",{"_index":3476,"title":{},"body":{"coverage.html":{},"license.html":{}}}],["6b",{"_index":4007,"title":{},"body":{"license.html":{}}}],["6d",{"_index":4030,"title":{},"body":{"license.html":{}}}],["6rem",{"_index":627,"title":{},"body":{"components/AdminComponent.html":{}}}],["7",{"_index":3947,"title":{},"body":{"license.html":{}}}],["768px",{"_index":666,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["8",{"_index":3260,"title":{},"body":{"injectables/TransactionService.html":{}}}],["8.2.1",{"_index":3508,"title":{},"body":{"dependencies.html":{}}}],["8/8",{"_index":3432,"title":{},"body":{"coverage.html":{}}}],["8000000",{"_index":3274,"title":{},"body":{"injectables/TransactionService.html":{}}}],["817",{"_index":3404,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["8996",{"_index":4410,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9.0.2",{"_index":3488,"title":{},"body":{"dependencies.html":{}}}],["9/9",{"_index":3429,"title":{},"body":{"coverage.html":{}}}],["99000",{"_index":1569,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["9981",{"_index":1573,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["99999999999999998976",{"_index":1557,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["_eth",{"_index":3055,"title":{},"body":{"components/TokensComponent.html":{}}}],["_key",{"_index":2590,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["_key.err",{"_index":2592,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["_models",{"_index":586,"title":{},"body":{"components/AdminComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{}}}],["abi",{"_index":147,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"injectables/TransactionService.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["abicoder",{"_index":3261,"title":{},"body":{"injectables/TransactionService.html":{}}}],["abicoder.encode(['address",{"_index":3263,"title":{},"body":{"injectables/TransactionService.html":{}}}],["ability",{"_index":4077,"title":{},"body":{"license.html":{}}}],["above",{"_index":2447,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["absence",{"_index":3948,"title":{},"body":{"license.html":{}}}],["absolute",{"_index":4342,"title":{},"body":{"license.html":{}}}],["absolutely",{"_index":4372,"title":{},"body":{"license.html":{}}}],["abstractcontrol",{"_index":1266,"title":{},"body":{"classes/CustomValidator.html":{}}}],["abuse",{"_index":3716,"title":{},"body":{"license.html":{}}}],["academy",{"_index":1610,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["accept",{"_index":4170,"title":{},"body":{"license.html":{}}}],["acceptable",{"_index":854,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["acceptance",{"_index":4169,"title":{},"body":{"license.html":{}}}],["accepted",{"_index":2819,"title":{},"body":{"guards/RoleGuard.html":{}}}],["acces",{"_index":2055,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["access",{"_index":839,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["accessible",{"_index":4237,"title":{},"body":{"license.html":{}}}],["accessors",{"_index":211,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["accompanied",{"_index":3989,"title":{},"body":{"license.html":{}}}],["accompanies",{"_index":4346,"title":{},"body":{"license.html":{}}}],["accord",{"_index":3946,"title":{},"body":{"license.html":{}}}],["according",{"_index":4337,"title":{},"body":{"license.html":{}}}],["accordingly",{"_index":1335,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["account",{"_index":91,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenRegistry.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"miscellaneous/variables.html":{}}}],["account'},{'name",{"_index":303,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["account.component",{"_index":464,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{}}}],["account.component.html",{"_index":1201,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.scss",{"_index":1200,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts",{"_index":1199,"title":{},"body":{"components/CreateAccountComponent.html":{},"coverage.html":{}}}],["account.component.ts:15",{"_index":1214,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:16",{"_index":1215,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:17",{"_index":1216,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:18",{"_index":1213,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:19",{"_index":1212,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:20",{"_index":1211,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:21",{"_index":1208,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:29",{"_index":1209,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:48",{"_index":1218,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:50",{"_index":1210,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.type",{"_index":418,"title":{},"body":{"components/AccountsComponent.html":{}}}],["account/create",{"_index":463,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"components/CreateAccountComponent.html":{},"coverage.html":{}}}],["accountant",{"_index":1695,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["accountdetails",{"_index":1,"title":{"interfaces/AccountDetails.html":{}},"body":{"interfaces/AccountDetails.html":{},"components/AccountsComponent.html":{},"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["accountdetailscomponent",{"_index":291,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["accountindex",{"_index":61,"title":{"classes/AccountIndex.html":{}},"body":{"classes/AccountIndex.html":{},"coverage.html":{}}}],["accountinfo",{"_index":3248,"title":{},"body":{"injectables/TransactionService.html":{}}}],["accountinfo.vcard",{"_index":3250,"title":{},"body":{"injectables/TransactionService.html":{}}}],["accounts",{"_index":67,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{},"modules/PagesRoutingModule.html":{},"components/SidebarComponent.html":{}}}],["accounts'},{'name",{"_index":294,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["accounts.component.html",{"_index":342,"title":{},"body":{"components/AccountsComponent.html":{}}}],["accounts.component.scss",{"_index":341,"title":{},"body":{"components/AccountsComponent.html":{}}}],["accounts.push(account",{"_index":173,"title":{},"body":{"classes/AccountIndex.html":{}}}],["accountscomponent",{"_index":293,"title":{"components/AccountsComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["accountsearchcomponent",{"_index":176,"title":{"components/AccountSearchComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["accountsmodule",{"_index":432,"title":{"modules/AccountsModule.html":{}},"body":{"modules/AccountsModule.html":{},"modules.html":{},"overview.html":{}}}],["accountsroutingmodule",{"_index":442,"title":{"modules/AccountsRoutingModule.html":{}},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["accountstype",{"_index":343,"title":{},"body":{"components/AccountsComponent.html":{}}}],["accounttype",{"_index":421,"title":{},"body":{"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{}}}],["accounttypes",{"_index":344,"title":{},"body":{"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["achieve",{"_index":4352,"title":{},"body":{"license.html":{}}}],["acknowledges",{"_index":3883,"title":{},"body":{"license.html":{}}}],["acquired",{"_index":4216,"title":{},"body":{"license.html":{}}}],["action",{"_index":505,"title":{"interfaces/Action.html":{}},"body":{"interfaces/Action.html":{},"components/AdminComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["action.action",{"_index":619,"title":{},"body":{"components/AdminComponent.html":{}}}],["action.approval",{"_index":624,"title":{},"body":{"components/AdminComponent.html":{}}}],["action.id",{"_index":2452,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["action.role",{"_index":618,"title":{},"body":{"components/AdminComponent.html":{}}}],["action.user",{"_index":617,"title":{},"body":{"components/AdminComponent.html":{}}}],["actions",{"_index":554,"title":{},"body":{"components/AdminComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["actions.find(action",{"_index":2451,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["activatedroute",{"_index":2952,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["activatedroutesnapshot",{"_index":851,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["activatedroutestub",{"_index":513,"title":{"classes/ActivatedRouteStub.html":{}},"body":{"classes/ActivatedRouteStub.html":{},"coverage.html":{}}}],["activateroute",{"_index":517,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["active",{"_index":868,"title":{},"body":{"guards/AuthGuard.html":{}}}],["activities",{"_index":3796,"title":{},"body":{"license.html":{}}}],["activity",{"_index":4262,"title":{},"body":{"license.html":{}}}],["actual",{"_index":4242,"title":{},"body":{"license.html":{}}}],["actual_component",{"_index":339,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["actually",{"_index":4053,"title":{},"body":{"license.html":{}}}],["adapt",{"_index":3769,"title":{},"body":{"license.html":{}}}],["add",{"_index":525,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"components/AuthComponent.html":{},"license.html":{}}}],["add0x",{"_index":3211,"title":{},"body":{"injectables/TransactionService.html":{}}}],["add0x(tohex(tx.serializerlp",{"_index":3291,"title":{},"body":{"injectables/TransactionService.html":{}}}],["added",{"_index":3945,"title":{},"body":{"license.html":{}}}],["additional",{"_index":3959,"title":{},"body":{"license.html":{}}}],["address",{"_index":95,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["addressed",{"_index":3766,"title":{},"body":{"license.html":{}}}],["addresses",{"_index":137,"title":{},"body":{"classes/AccountIndex.html":{}}}],["addressof",{"_index":2981,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["addressof('sarafu'",{"_index":2991,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["addressof('sarafu",{"_index":3000,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["addressof(identifier",{"_index":2986,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["addressreturned",{"_index":1118,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["addresssearchform",{"_index":197,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["addresssearchformstub",{"_index":214,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["addresssearchloading",{"_index":198,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["addresssearchsubmitted",{"_index":199,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["addtoaccountregistry",{"_index":80,"title":{},"body":{"classes/AccountIndex.html":{}}}],["addtoaccountregistry('0xc0ffee254729296a45a3885639ac7e10f9d54979'",{"_index":111,"title":{},"body":{"classes/AccountIndex.html":{}}}],["addtoaccountregistry('0xc0ffee254729296a45a3885639ac7e10f9d54979",{"_index":162,"title":{},"body":{"classes/AccountIndex.html":{}}}],["addtoaccountregistry(address",{"_index":99,"title":{},"body":{"classes/AccountIndex.html":{}}}],["addtransaction",{"_index":3170,"title":{},"body":{"injectables/TransactionService.html":{}}}],["addtransaction(transaction",{"_index":3179,"title":{},"body":{"injectables/TransactionService.html":{}}}],["admin",{"_index":551,"title":{},"body":{"components/AdminComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"modules/PagesRoutingModule.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"classes/UserServiceStub.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["admin'},{'name",{"_index":297,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["admin.component.html",{"_index":553,"title":{},"body":{"components/AdminComponent.html":{}}}],["admin.component.scss",{"_index":552,"title":{},"body":{"components/AdminComponent.html":{}}}],["admin_reserve",{"_index":2891,"title":{},"body":{"components/SettingsComponent.html":{}}}],["admincomponent",{"_index":296,"title":{"components/AdminComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["adminmodule",{"_index":628,"title":{"modules/AdminModule.html":{}},"body":{"modules/AdminModule.html":{},"modules.html":{},"overview.html":{}}}],["adminroutingmodule",{"_index":632,"title":{"modules/AdminRoutingModule.html":{}},"body":{"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["adopted",{"_index":3919,"title":{},"body":{"license.html":{}}}],["adversely",{"_index":4085,"title":{},"body":{"license.html":{}}}],["advised",{"_index":4332,"title":{},"body":{"license.html":{}}}],["affects",{"_index":4086,"title":{},"body":{"license.html":{}}}],["affero",{"_index":4283,"title":{},"body":{"license.html":{}}}],["affirmed",{"_index":4199,"title":{},"body":{"license.html":{}}}],["affirms",{"_index":3879,"title":{},"body":{"license.html":{}}}],["afterviewinit",{"_index":3303,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["again",{"_index":685,"title":{},"body":{"components/AppComponent.html":{}}}],["against",{"_index":3935,"title":{},"body":{"license.html":{}}}],["age",{"_index":10,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{}}}],["agent",{"_index":1693,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["aggregate",{"_index":3974,"title":{},"body":{"license.html":{}}}],["agree",{"_index":4278,"title":{},"body":{"license.html":{}}}],["agreed",{"_index":4319,"title":{},"body":{"license.html":{}}}],["agreement",{"_index":4228,"title":{},"body":{"license.html":{}}}],["agrovet",{"_index":1978,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["aim",{"_index":3712,"title":{},"body":{"license.html":{}}}],["airtime",{"_index":2058,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["alert('access",{"_index":1356,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["alert('account",{"_index":275,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["alg",{"_index":1167,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["algo",{"_index":41,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signer.html":{}}}],["aliases",{"_index":4398,"title":{},"body":{"miscellaneous/typealiases.html":{}}}],["alleging",{"_index":4206,"title":{},"body":{"license.html":{}}}],["allow",{"_index":3736,"title":{},"body":{"license.html":{}}}],["allowed",{"_index":1358,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"license.html":{}}}],["allows",{"_index":69,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["along",{"_index":3950,"title":{},"body":{"license.html":{}}}],["alpha.3",{"_index":3500,"title":{},"body":{"dependencies.html":{}}}],["alpha.6",{"_index":3496,"title":{},"body":{"dependencies.html":{}}}],["already",{"_index":116,"title":{},"body":{"classes/AccountIndex.html":{},"license.html":{}}}],["alternative",{"_index":4003,"title":{},"body":{"license.html":{}}}],["although",{"_index":3708,"title":{},"body":{"license.html":{}}}],["amani",{"_index":2169,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["amount",{"_index":3143,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["ancillary",{"_index":4172,"title":{},"body":{"license.html":{}}}],["and/or",{"_index":3692,"title":{},"body":{"license.html":{}}}],["andshow",{"_index":4376,"title":{},"body":{"license.html":{}}}],["angular",{"_index":460,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AppModule.html":{},"injectables/AuthService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"modules/TransactionsModule.html":{},"dependencies.html":{},"index.html":{}}}],["angular/animations",{"_index":585,"title":{},"body":{"components/AdminComponent.html":{},"dependencies.html":{}}}],["angular/cdk",{"_index":3481,"title":{},"body":{"dependencies.html":{}}}],["angular/cli",{"_index":3558,"title":{},"body":{"index.html":{}}}],["angular/common",{"_index":451,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{},"dependencies.html":{}}}],["angular/common/http",{"_index":744,"title":{},"body":{"modules/AppModule.html":{},"injectables/AuthService.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["angular/compiler",{"_index":3483,"title":{},"body":{"dependencies.html":{}}}],["angular/core",{"_index":245,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"dependencies.html":{}}}],["angular/forms",{"_index":247,"title":{},"body":{"components/AccountSearchComponent.html":{},"modules/AccountsModule.html":{},"components/AuthComponent.html":{},"modules/AuthModule.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/OrganizationComponent.html":{},"modules/SettingsModule.html":{},"dependencies.html":{}}}],["angular/material",{"_index":3484,"title":{},"body":{"dependencies.html":{}}}],["angular/material/button",{"_index":476,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/card",{"_index":478,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/checkbox",{"_index":468,"title":{},"body":{"modules/AccountsModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/core",{"_index":487,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"classes/CustomErrorStateMatcher.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/dialog",{"_index":1292,"title":{},"body":{"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"modules/SharedModule.html":{}}}],["angular/material/form",{"_index":473,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/icon",{"_index":480,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/input",{"_index":471,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/menu",{"_index":2913,"title":{},"body":{"modules/SettingsModule.html":{}}}],["angular/material/paginator",{"_index":388,"title":{},"body":{"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/progress",{"_index":489,"title":{},"body":{"modules/AccountsModule.html":{}}}],["angular/material/radio",{"_index":2911,"title":{},"body":{"modules/SettingsModule.html":{}}}],["angular/material/select",{"_index":482,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/sidenav",{"_index":3074,"title":{},"body":{"modules/TokensModule.html":{}}}],["angular/material/snack",{"_index":494,"title":{},"body":{"modules/AccountsModule.html":{},"components/TransactionDetailsComponent.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/sort",{"_index":389,"title":{},"body":{"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/table",{"_index":387,"title":{},"body":{"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/tabs",{"_index":485,"title":{},"body":{"modules/AccountsModule.html":{}}}],["angular/material/toolbar",{"_index":3076,"title":{},"body":{"modules/TokensModule.html":{}}}],["angular/platform",{"_index":735,"title":{},"body":{"modules/AppModule.html":{},"pipes/SafePipe.html":{},"dependencies.html":{}}}],["angular/router",{"_index":250,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsRoutingModule.html":{},"classes/ActivatedRouteStub.html":{},"modules/AdminRoutingModule.html":{},"modules/AppRoutingModule.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthRoutingModule.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"modules/PagesRoutingModule.html":{},"guards/RoleGuard.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"modules/TokensRoutingModule.html":{},"components/TransactionDetailsComponent.html":{},"modules/TransactionsRoutingModule.html":{},"dependencies.html":{}}}],["animate",{"_index":580,"title":{},"body":{"components/AdminComponent.html":{}}}],["animate('225ms",{"_index":599,"title":{},"body":{"components/AdminComponent.html":{}}}],["animations",{"_index":587,"title":{},"body":{"components/AdminComponent.html":{}}}],["anti",{"_index":3906,"title":{},"body":{"license.html":{}}}],["anyone",{"_index":3957,"title":{},"body":{"license.html":{}}}],["anything",{"_index":3782,"title":{},"body":{"license.html":{}}}],["api",{"_index":2408,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["app",{"_index":191,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"index.html":{}}}],["app.component.html",{"_index":640,"title":{},"body":{"components/AppComponent.html":{}}}],["app.component.scss",{"_index":639,"title":{},"body":{"components/AppComponent.html":{}}}],["app.module",{"_index":3573,"title":{},"body":{"index.html":{}}}],["app/_eth",{"_index":3019,"title":{},"body":{"injectables/TokenService.html":{}}}],["app/_guards",{"_index":747,"title":{},"body":{"modules/AppModule.html":{},"modules/AppRoutingModule.html":{}}}],["app/_helpers",{"_index":248,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"modules/AppModule.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{},"injectables/RegistryService.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["app/_helpers/global",{"_index":940,"title":{},"body":{"injectables/AuthService.html":{}}}],["app/_interceptors",{"_index":751,"title":{},"body":{"modules/AppModule.html":{}}}],["app/_models",{"_index":393,"title":{},"body":{"components/AccountsComponent.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["app/_models/account",{"_index":1177,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["app/_models/staff",{"_index":2877,"title":{},"body":{"components/SettingsComponent.html":{}}}],["app/_pgp",{"_index":753,"title":{},"body":{"modules/AppModule.html":{},"injectables/AuthService.html":{}}}],["app/_pgp/pgp",{"_index":2711,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["app/_services",{"_index":249,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"interceptors/ErrorInterceptor.html":{},"components/SettingsComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["app/_services/auth.service",{"_index":3217,"title":{},"body":{"injectables/TransactionService.html":{}}}],["app/_services/error",{"_index":937,"title":{},"body":{"injectables/AuthService.html":{}}}],["app/_services/logging.service",{"_index":936,"title":{},"body":{"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"injectables/TransactionService.html":{}}}],["app/_services/registry.service",{"_index":1101,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["app/_services/transaction.service",{"_index":1100,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["app/_services/user.service",{"_index":3206,"title":{},"body":{"injectables/TransactionService.html":{}}}],["app/app",{"_index":738,"title":{},"body":{"modules/AppModule.html":{}}}],["app/app.component",{"_index":739,"title":{},"body":{"modules/AppModule.html":{}}}],["app/auth/_directives/password",{"_index":886,"title":{},"body":{"modules/AuthModule.html":{}}}],["app/auth/auth",{"_index":884,"title":{},"body":{"modules/AuthModule.html":{}}}],["app/auth/auth.component",{"_index":885,"title":{},"body":{"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{}}}],["app/shared/_directives/menu",{"_index":2923,"title":{},"body":{"modules/SharedModule.html":{}}}],["app/shared/_pipes/safe.pipe",{"_index":2928,"title":{},"body":{"modules/SharedModule.html":{}}}],["app/shared/_pipes/token",{"_index":2925,"title":{},"body":{"modules/SharedModule.html":{}}}],["app/shared/error",{"_index":1307,"title":{},"body":{"injectables/ErrorDialogService.html":{},"modules/SharedModule.html":{}}}],["app/shared/footer/footer.component",{"_index":2921,"title":{},"body":{"modules/SharedModule.html":{}}}],["app/shared/shared.module",{"_index":455,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["app/shared/sidebar/sidebar.component",{"_index":2922,"title":{},"body":{"modules/SharedModule.html":{}}}],["app/shared/topbar/topbar.component",{"_index":2920,"title":{},"body":{"modules/SharedModule.html":{}}}],["appcomponent",{"_index":298,"title":{"components/AppComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["applicable",{"_index":3788,"title":{},"body":{"license.html":{}}}],["application",{"_index":142,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["application/json",{"_index":960,"title":{},"body":{"injectables/AuthService.html":{}}}],["applications",{"_index":4385,"title":{},"body":{"license.html":{}}}],["applied",{"_index":3743,"title":{},"body":{"license.html":{}}}],["applies",{"_index":3648,"title":{},"body":{"license.html":{}}}],["apply",{"_index":3652,"title":{},"body":{"license.html":{}}}],["appmenuselection",{"_index":1499,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["appmenuselection]'},{'name",{"_index":332,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["appmenutoggle",{"_index":1512,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["appmenutoggle]'},{'name",{"_index":334,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["appmodule",{"_index":722,"title":{"modules/AppModule.html":{}},"body":{"modules/AppModule.html":{},"modules.html":{},"overview.html":{}}}],["apppasswordtoggle",{"_index":2774,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["apppasswordtoggle]'},{'name",{"_index":336,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["appropriate",{"_index":3807,"title":{},"body":{"license.html":{}}}],["appropriately",{"_index":3939,"title":{},"body":{"license.html":{}}}],["approutingmodule",{"_index":728,"title":{"modules/AppRoutingModule.html":{}},"body":{"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["approval",{"_index":507,"title":{},"body":{"interfaces/Action.html":{},"components/AdminComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["approvalstatus",{"_index":555,"title":{},"body":{"components/AdminComponent.html":{}}}],["approvalstatus(action.approval",{"_index":620,"title":{},"body":{"components/AdminComponent.html":{}}}],["approvalstatus(status",{"_index":560,"title":{},"body":{"components/AdminComponent.html":{}}}],["approve",{"_index":577,"title":{},"body":{"components/AdminComponent.html":{}}}],["approveaction",{"_index":556,"title":{},"body":{"components/AdminComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{}}}],["approveaction(action",{"_index":563,"title":{},"body":{"components/AdminComponent.html":{}}}],["approveaction(id",{"_index":3405,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["approved",{"_index":608,"title":{},"body":{"components/AdminComponent.html":{},"classes/UserServiceStub.html":{}}}],["approximates",{"_index":4341,"title":{},"body":{"license.html":{}}}],["area",{"_index":29,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"components/CreateAccountComponent.html":{},"injectables/LocationService.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/Signature.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["area_name",{"_index":30,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["area_type",{"_index":31,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{}}}],["areaname",{"_index":510,"title":{"interfaces/AreaName.html":{}},"body":{"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{}}}],["areaname.locations.includes(stringfromurl",{"_index":2479,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areaname.name",{"_index":2475,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areanamelist",{"_index":2473,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areanames",{"_index":1202,"title":{},"body":{"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["areanames.find(areaname",{"_index":2478,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areanames.map(areaname",{"_index":2474,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areatype",{"_index":512,"title":{"interfaces/AreaType.html":{}},"body":{"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{}}}],["areatype.area.includes(stringfromurl",{"_index":2487,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areatype.name",{"_index":2483,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areatypelist",{"_index":2481,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areatypes",{"_index":2391,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["areatypes.find(areatype",{"_index":2486,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areatypes.map(areatype",{"_index":2482,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["args",{"_index":2846,"title":{},"body":{"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{}}}],["arguments",{"_index":654,"title":{},"body":{"components/AppComponent.html":{}}}],["arise",{"_index":3724,"title":{},"body":{"license.html":{}}}],["arising",{"_index":4323,"title":{},"body":{"license.html":{}}}],["arr",{"_index":3534,"title":{},"body":{"miscellaneous/functions.html":{}}}],["arrange",{"_index":4238,"title":{},"body":{"license.html":{}}}],["arrangement",{"_index":4250,"title":{},"body":{"license.html":{}}}],["array",{"_index":135,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountsComponent.html":{},"interfaces/Action.html":{},"components/AdminComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"injectables/AuthService.html":{},"interfaces/Category.html":{},"components/CreateAccountComponent.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/SettingsComponent.html":{},"classes/TokenRegistry.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["array.from({length",{"_index":3027,"title":{},"body":{"injectables/TokenService.html":{}}}],["arraybuffer",{"_index":988,"title":{},"body":{"injectables/AuthService.html":{}}}],["arraydata",{"_index":3539,"title":{},"body":{"miscellaneous/functions.html":{}}}],["arraysum",{"_index":3436,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["arraysum(arr",{"_index":3533,"title":{},"body":{"miscellaneous/functions.html":{}}}],["article",{"_index":3915,"title":{},"body":{"license.html":{}}}],["artifacts",{"_index":3582,"title":{},"body":{"index.html":{}}}],["artisan",{"_index":1803,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["artist",{"_index":1692,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["askari",{"_index":1694,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["asking",{"_index":3669,"title":{},"body":{"license.html":{}}}],["assert",{"_index":3687,"title":{},"body":{"license.html":{}}}],["assets",{"_index":4189,"title":{},"body":{"license.html":{}}}],["assets/js/block",{"_index":2806,"title":{},"body":{"injectables/RegistryService.html":{}}}],["assigned",{"_index":2992,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["associated",{"_index":858,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["assume",{"_index":4314,"title":{},"body":{"license.html":{}}}],["assumption",{"_index":4345,"title":{},"body":{"license.html":{}}}],["assumptions",{"_index":4131,"title":{},"body":{"license.html":{}}}],["assures",{"_index":3746,"title":{},"body":{"license.html":{}}}],["async",{"_index":79,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["atomic",{"_index":945,"title":{},"body":{"injectables/AuthService.html":{}}}],["attach",{"_index":4354,"title":{},"body":{"license.html":{}}}],["attempt",{"_index":4145,"title":{},"body":{"license.html":{}}}],["attributed",{"_index":3703,"title":{},"body":{"license.html":{}}}],["attributions",{"_index":4114,"title":{},"body":{"license.html":{}}}],["auth",{"_index":767,"title":{},"body":{"modules/AppRoutingModule.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{}}}],["auth'},{'name",{"_index":301,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["auth.component.html",{"_index":778,"title":{},"body":{"components/AuthComponent.html":{}}}],["auth.component.scss",{"_index":777,"title":{},"body":{"components/AuthComponent.html":{}}}],["authcomponent",{"_index":300,"title":{"components/AuthComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["authenticate",{"_index":992,"title":{},"body":{"injectables/AuthService.html":{}}}],["authentication",{"_index":840,"title":{},"body":{"guards/AuthGuard.html":{},"components/SettingsComponent.html":{}}}],["authguard",{"_index":746,"title":{"guards/AuthGuard.html":{}},"body":{"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"guards/AuthGuard.html":{},"coverage.html":{}}}],["authheader",{"_index":990,"title":{},"body":{"injectables/AuthService.html":{}}}],["authmodule",{"_index":878,"title":{"modules/AuthModule.html":{}},"body":{"modules/AuthModule.html":{},"modules.html":{},"overview.html":{}}}],["author",{"_index":4113,"title":{},"body":{"license.html":{}}}],["authorization",{"_index":4064,"title":{},"body":{"license.html":{}}}],["authorized",{"_index":1012,"title":{},"body":{"injectables/AuthService.html":{},"license.html":{}}}],["authorizes",{"_index":4211,"title":{},"body":{"license.html":{}}}],["authorizing",{"_index":4254,"title":{},"body":{"license.html":{}}}],["authors",{"_index":3651,"title":{},"body":{"license.html":{}}}],["authroutingmodule",{"_index":882,"title":{"modules/AuthRoutingModule.html":{}},"body":{"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["authservice",{"_index":650,"title":{"injectables/AuthService.html":{}},"body":{"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"components/SettingsComponent.html":{},"injectables/TransactionService.html":{},"coverage.html":{}}}],["automatic",{"_index":4181,"title":{},"body":{"license.html":{}}}],["automatically",{"_index":3564,"title":{},"body":{"index.html":{},"license.html":{}}}],["automerge",{"_index":963,"title":{},"body":{"injectables/AuthService.html":{}}}],["availability",{"_index":103,"title":{},"body":{"classes/AccountIndex.html":{}}}],["available",{"_index":122,"title":{},"body":{"classes/AccountIndex.html":{},"license.html":{},"modules.html":{}}}],["avocado",{"_index":1820,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["avoid",{"_index":3740,"title":{},"body":{"license.html":{}}}],["await",{"_index":163,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["away",{"_index":3638,"title":{},"body":{"license.html":{}}}],["b",{"_index":3840,"title":{},"body":{"license.html":{}}}],["baby",{"_index":1599,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["babycare",{"_index":1598,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["backend",{"_index":1337,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["backend.ts",{"_index":1523,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["backend.ts:240",{"_index":1524,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["bag",{"_index":2016,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bajia",{"_index":1822,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["baker",{"_index":1696,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["balance",{"_index":11,"title":{},"body":{"interfaces/AccountDetails.html":{},"components/AccountsComponent.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/Signature.html":{},"interfaces/Token.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["bamburi",{"_index":2332,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["banana",{"_index":1828,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bananas",{"_index":1829,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bangla",{"_index":2314,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bangladesh",{"_index":2315,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bar",{"_index":495,"title":{},"body":{"modules/AccountsModule.html":{},"interceptors/MockBackendInterceptor.html":{},"components/TransactionDetailsComponent.html":{},"modules/TransactionsModule.html":{},"miscellaneous/variables.html":{}}}],["barafu",{"_index":1973,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["barakoa",{"_index":1980,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["barber",{"_index":1699,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["based",{"_index":3778,"title":{},"body":{"license.html":{}}}],["basic",{"_index":3871,"title":{},"body":{"license.html":{}}}],["bead",{"_index":2017,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["beadwork",{"_index":1697,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["beans",{"_index":1825,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bearer",{"_index":958,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/HttpConfigInterceptor.html":{}}}],["beautician",{"_index":1811,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["beauty",{"_index":1698,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["beba",{"_index":2085,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bebabeba",{"_index":2086,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bed",{"_index":2021,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bedding",{"_index":2019,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["behalf",{"_index":3894,"title":{},"body":{"license.html":{}}}],["behaviorsubject",{"_index":3018,"title":{},"body":{"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["behaviorsubject(this.transactions",{"_index":3198,"title":{},"body":{"injectables/TransactionService.html":{}}}],["being",{"_index":4028,"title":{},"body":{"license.html":{}}}],["believe",{"_index":4247,"title":{},"body":{"license.html":{}}}],["below",{"_index":3901,"title":{},"body":{"license.html":{}}}],["belt",{"_index":2018,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["benefit",{"_index":4241,"title":{},"body":{"license.html":{}}}],["best",{"_index":4351,"title":{},"body":{"license.html":{}}}],["between",{"_index":3869,"title":{},"body":{"license.html":{}}}],["beyond",{"_index":3976,"title":{},"body":{"license.html":{}}}],["bezier(0.4",{"_index":601,"title":{},"body":{"components/AdminComponent.html":{}}}],["bhajia",{"_index":1821,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["biashara",{"_index":1739,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bicycle",{"_index":2088,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bike",{"_index":2087,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bio",{"_index":3383,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["biogas",{"_index":2117,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["biringanya",{"_index":1827,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["biscuits",{"_index":1826,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bit",{"_index":1086,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["block",{"_index":829,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{},"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"dependencies.html":{}}}],["blockchain",{"_index":151,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["blockfilter",{"_index":1168,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["blockfilterbinstr",{"_index":1147,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["blockfilterbinstr.charcodeat(i",{"_index":1154,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["blocksbloom",{"_index":1165,"title":{"classes/BlocksBloom.html":{}},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"coverage.html":{}}}],["blocksync",{"_index":1062,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["blocksync(address",{"_index":1071,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["blocksyncservice",{"_index":1059,"title":{"injectables/BlockSyncService.html":{}},"body":{"injectables/BlockSyncService.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["blocktxfilter",{"_index":1169,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["blocktxfilterbinstr",{"_index":1155,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["blocktxfilterbinstr.charcodeat(i",{"_index":1160,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["bloomblockbytes",{"_index":1091,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["bloomblocktxbytes",{"_index":1093,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["bloomrounds",{"_index":1094,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["bloxberg:8996",{"_index":25,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["bloxbergchainid",{"_index":4409,"title":{},"body":{"miscellaneous/variables.html":{}}}],["boda",{"_index":2090,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bodaboda",{"_index":2091,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["body",{"_index":1342,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["body.approval",{"_index":2456,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["bofu",{"_index":1824,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bombolulu",{"_index":2336,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bomet",{"_index":2377,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bone",{"_index":1149,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["bone.map((e",{"_index":1151,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["book",{"_index":1581,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["boolean",{"_index":227,"title":{},"body":{"components/AccountSearchComponent.html":{},"interfaces/Action.html":{},"components/AdminComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"injectables/LoggingService.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"guards/RoleGuard.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"miscellaneous/functions.html":{}}}],["bootstrap",{"_index":436,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{},"dependencies.html":{},"overview.html":{}}}],["both",{"_index":3697,"title":{},"body":{"license.html":{}}}],["botique",{"_index":2023,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["boutique",{"_index":2024,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["box",{"_index":4379,"title":{},"body":{"license.html":{}}}],["bread",{"_index":1913,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["break",{"_index":1354,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["brewer",{"_index":1818,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bricks",{"_index":1793,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["browse",{"_index":4392,"title":{},"body":{"modules.html":{}}}],["browser",{"_index":736,"title":{},"body":{"modules/AppModule.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"pipes/SafePipe.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"dependencies.html":{},"modules.html":{}}}],["browser/animations",{"_index":741,"title":{},"body":{"modules/AppModule.html":{}}}],["browseranimationsmodule",{"_index":740,"title":{},"body":{"modules/AppModule.html":{}}}],["browsermodule",{"_index":734,"title":{},"body":{"modules/AppModule.html":{}}}],["btwo",{"_index":1157,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["btwo.map((e",{"_index":1159,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["buck",{"_index":3385,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["build",{"_index":3574,"title":{},"body":{"index.html":{}}}],["build:dev",{"_index":3581,"title":{},"body":{"index.html":{}}}],["build:prod",{"_index":3585,"title":{},"body":{"index.html":{}}}],["bungoma",{"_index":2379,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["buru",{"_index":2292,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["busaa",{"_index":1900,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["busia",{"_index":2358,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["business",{"_index":1241,"title":{},"body":{"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["businesscategory",{"_index":1225,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["butcher",{"_index":1853,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["butchery",{"_index":1854,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["button",{"_index":625,"title":{},"body":{"components/AdminComponent.html":{},"injectables/AuthService.html":{}}}],["c",{"_index":3616,"title":{},"body":{"license.html":{}}}],["cabbages",{"_index":1902,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cachedtx.tx.txhash",{"_index":3223,"title":{},"body":{"injectables/TransactionService.html":{}}}],["cachesize",{"_index":3180,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["cafe",{"_index":2033,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cake",{"_index":1840,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["call",{"_index":2409,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["called",{"_index":3776,"title":{},"body":{"license.html":{}}}],["can't",{"_index":2588,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["can\\'t",{"_index":682,"title":{},"body":{"components/AppComponent.html":{}}}],["canactivate",{"_index":773,"title":{},"body":{"modules/AppRoutingModule.html":{},"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["canactivate(route",{"_index":850,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["candebug",{"_index":1458,"title":{},"body":{"injectables/LoggingService.html":{}}}],["candy",{"_index":2029,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["capabilities",{"_index":849,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["capenter",{"_index":1705,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["car",{"_index":1703,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["card",{"_index":2673,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["care",{"_index":1600,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["caretaker",{"_index":1702,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["carpenter",{"_index":1715,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["carrier",{"_index":2093,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["carry",{"_index":3952,"title":{},"body":{"license.html":{}}}],["cart",{"_index":2092,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["carwash",{"_index":1711,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["case",{"_index":1351,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["cases",{"_index":4048,"title":{},"body":{"license.html":{}}}],["cashier",{"_index":2394,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cassava",{"_index":1839,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["casual",{"_index":1700,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["catch",{"_index":399,"title":{},"body":{"components/AccountsComponent.html":{},"components/AppComponent.html":{},"injectables/AuthService.html":{}}}],["catch((e",{"_index":2740,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["catcherror",{"_index":673,"title":{},"body":{"components/AppComponent.html":{},"interceptors/ErrorInterceptor.html":{}}}],["catcherror((err",{"_index":1329,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["categories",{"_index":1203,"title":{},"body":{"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["categories.find(category",{"_index":2470,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["categories.map(category",{"_index":2466,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["category",{"_index":12,"title":{"interfaces/Category.html":{}},"body":{"interfaces/AccountDetails.html":{},"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"components/CreateAccountComponent.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/Signature.html":{},"coverage.html":{}}}],["category.name",{"_index":2467,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["category.products.includes(stringfromurl",{"_index":2471,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["categorylist",{"_index":2465,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["catering",{"_index":1708,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cause",{"_index":3980,"title":{},"body":{"license.html":{}}}],["cease",{"_index":4149,"title":{},"body":{"license.html":{}}}],["cement",{"_index":2022,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cereal",{"_index":1834,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cereals",{"_index":1841,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["certain",{"_index":3672,"title":{},"body":{"license.html":{}}}],["cessation",{"_index":4161,"title":{},"body":{"license.html":{}}}],["chai",{"_index":1837,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chakula",{"_index":1831,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["challenge",{"_index":976,"title":{},"body":{"injectables/AuthService.html":{}}}],["chama",{"_index":2008,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["changamwe",{"_index":2326,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["change",{"_index":832,"title":{},"body":{"components/AuthComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"components/SettingsComponent.html":{},"classes/UserServiceStub.html":{},"index.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["changed",{"_index":3701,"title":{},"body":{"license.html":{}}}],["changedetection",{"_index":188,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["changedetectionstrategy",{"_index":244,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["changedetectionstrategy.onpush",{"_index":189,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["changing",{"_index":3629,"title":{},"body":{"license.html":{}}}],["chapati",{"_index":1833,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chapo",{"_index":1836,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["characterized",{"_index":4074,"title":{},"body":{"license.html":{}}}],["charcoal",{"_index":2119,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["charcol",{"_index":2118,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["charge",{"_index":3656,"title":{},"body":{"license.html":{}}}],["charging",{"_index":1763,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chart.js",{"_index":3492,"title":{},"body":{"dependencies.html":{}}}],["charts",{"_index":2760,"title":{},"body":{"modules/PagesModule.html":{},"dependencies.html":{}}}],["chartsmodule",{"_index":2758,"title":{},"body":{"modules/PagesModule.html":{}}}],["check",{"_index":809,"title":{},"body":{"components/AuthComponent.html":{},"index.html":{}}}],["checks",{"_index":119,"title":{},"body":{"classes/AccountIndex.html":{},"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["chef",{"_index":1707,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chemicals",{"_index":1982,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chemist",{"_index":1981,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chibuga",{"_index":2170,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chicken",{"_index":1845,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chidzivuni",{"_index":2182,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chidzuvini",{"_index":2181,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chief",{"_index":1649,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chigale",{"_index":2176,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chigato",{"_index":2175,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chigojoni",{"_index":2173,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chikole",{"_index":2177,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chikomani",{"_index":2171,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chikomeni",{"_index":2180,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chikuyu",{"_index":2183,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["children",{"_index":1619,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chilongoni",{"_index":2172,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chilumani",{"_index":2178,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chinguluni",{"_index":2174,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chipo",{"_index":1835,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chips",{"_index":1838,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chizingo",{"_index":2184,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chizini",{"_index":2179,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["choma",{"_index":1896,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["choo",{"_index":1663,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["choose",{"_index":4298,"title":{},"body":{"license.html":{}}}],["choosing",{"_index":4302,"title":{},"body":{"license.html":{}}}],["christine",{"_index":1533,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["chumvi",{"_index":1901,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["church",{"_index":1643,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chv",{"_index":1983,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cic",{"_index":962,"title":{},"body":{"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"dependencies.html":{},"index.html":{},"license.html":{}}}],["cicada",{"_index":670,"title":{},"body":{"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/SidebarComponent.html":{},"index.html":{}}}],["ciccacheurl",{"_index":4420,"title":{},"body":{"miscellaneous/variables.html":{}}}],["cicconvert(event",{"_index":719,"title":{},"body":{"components/AppComponent.html":{}}}],["cicmetaurl",{"_index":4415,"title":{},"body":{"miscellaneous/variables.html":{}}}],["cicregistry",{"_index":2802,"title":{},"body":{"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["cicregistry(this.web3",{"_index":2803,"title":{},"body":{"injectables/RegistryService.html":{}}}],["cictransfer(event",{"_index":715,"title":{},"body":{"components/AppComponent.html":{}}}],["cicussdurl",{"_index":4425,"title":{},"body":{"miscellaneous/variables.html":{}}}],["circumstances",{"_index":3899,"title":{},"body":{"license.html":{}}}],["circumvention",{"_index":3907,"title":{},"body":{"license.html":{}}}],["civil",{"_index":4344,"title":{},"body":{"license.html":{}}}],["claim",{"_index":4203,"title":{},"body":{"license.html":{}}}],["claims",{"_index":4213,"title":{},"body":{"license.html":{}}}],["class",{"_index":60,"title":{"classes/AccountIndex.html":{},"classes/ActivatedRouteStub.html":{},"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"classes/HttpError.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"classes/Settings.html":{},"classes/TokenRegistry.html":{},"classes/TokenServiceStub.html":{},"classes/Transaction.html":{},"classes/TransactionServiceStub.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"classes/W3.html":{}},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"classes/W3.html":{},"coverage.html":{},"license.html":{}}}],["classes",{"_index":62,"title":{},"body":{"classes/AccountIndex.html":{},"classes/ActivatedRouteStub.html":{},"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"classes/HttpError.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"classes/Settings.html":{},"classes/TokenRegistry.html":{},"classes/TokenServiceStub.html":{},"classes/Transaction.html":{},"classes/TransactionServiceStub.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"classes/W3.html":{},"overview.html":{}}}],["cleaner",{"_index":1676,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cleaning",{"_index":1669,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["clear",{"_index":4015,"title":{},"body":{"license.html":{}}}],["clearkeysinkeyring",{"_index":2504,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["clearly",{"_index":3694,"title":{},"body":{"license.html":{}}}],["cles",{"_index":3396,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["cli",{"_index":3553,"title":{},"body":{"index.html":{}}}],["click",{"_index":1508,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{}}}],["client",{"_index":1099,"title":{},"body":{"injectables/BlockSyncService.html":{},"interceptors/ErrorInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"dependencies.html":{},"index.html":{},"license.html":{}}}],["clinic",{"_index":1995,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["clinical",{"_index":1996,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["close",{"_index":3134,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["closely",{"_index":4340,"title":{},"body":{"license.html":{}}}],["cloth",{"_index":2030,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["club",{"_index":2078,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["clues",{"_index":1344,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["cluster_accountsmodule",{"_index":439,"title":{},"body":{"modules/AccountsModule.html":{},"overview.html":{}}}],["cluster_accountsmodule_declarations",{"_index":440,"title":{},"body":{"modules/AccountsModule.html":{},"overview.html":{}}}],["cluster_accountsmodule_imports",{"_index":441,"title":{},"body":{"modules/AccountsModule.html":{},"overview.html":{}}}],["cluster_adminmodule",{"_index":629,"title":{},"body":{"modules/AdminModule.html":{},"overview.html":{}}}],["cluster_adminmodule_declarations",{"_index":630,"title":{},"body":{"modules/AdminModule.html":{},"overview.html":{}}}],["cluster_adminmodule_imports",{"_index":631,"title":{},"body":{"modules/AdminModule.html":{},"overview.html":{}}}],["cluster_appmodule",{"_index":723,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_bootstrap",{"_index":727,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_declarations",{"_index":726,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_imports",{"_index":724,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_providers",{"_index":725,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_authmodule",{"_index":879,"title":{},"body":{"modules/AuthModule.html":{},"overview.html":{}}}],["cluster_authmodule_declarations",{"_index":881,"title":{},"body":{"modules/AuthModule.html":{},"overview.html":{}}}],["cluster_authmodule_imports",{"_index":880,"title":{},"body":{"modules/AuthModule.html":{},"overview.html":{}}}],["cluster_pagesmodule",{"_index":2751,"title":{},"body":{"modules/PagesModule.html":{},"overview.html":{}}}],["cluster_pagesmodule_declarations",{"_index":2752,"title":{},"body":{"modules/PagesModule.html":{},"overview.html":{}}}],["cluster_pagesmodule_imports",{"_index":2753,"title":{},"body":{"modules/PagesModule.html":{},"overview.html":{}}}],["cluster_settingsmodule",{"_index":2902,"title":{},"body":{"modules/SettingsModule.html":{},"overview.html":{}}}],["cluster_settingsmodule_declarations",{"_index":2904,"title":{},"body":{"modules/SettingsModule.html":{},"overview.html":{}}}],["cluster_settingsmodule_imports",{"_index":2903,"title":{},"body":{"modules/SettingsModule.html":{},"overview.html":{}}}],["cluster_sharedmodule",{"_index":2915,"title":{},"body":{"modules/SharedModule.html":{},"overview.html":{}}}],["cluster_sharedmodule_declarations",{"_index":2917,"title":{},"body":{"modules/SharedModule.html":{},"overview.html":{}}}],["cluster_sharedmodule_exports",{"_index":2916,"title":{},"body":{"modules/SharedModule.html":{},"overview.html":{}}}],["cluster_tokensmodule",{"_index":3064,"title":{},"body":{"modules/TokensModule.html":{},"overview.html":{}}}],["cluster_tokensmodule_declarations",{"_index":3066,"title":{},"body":{"modules/TokensModule.html":{},"overview.html":{}}}],["cluster_tokensmodule_imports",{"_index":3065,"title":{},"body":{"modules/TokensModule.html":{},"overview.html":{}}}],["cluster_transactionsmodule",{"_index":3353,"title":{},"body":{"modules/TransactionsModule.html":{},"overview.html":{}}}],["cluster_transactionsmodule_declarations",{"_index":3356,"title":{},"body":{"modules/TransactionsModule.html":{},"overview.html":{}}}],["cluster_transactionsmodule_exports",{"_index":3355,"title":{},"body":{"modules/TransactionsModule.html":{},"overview.html":{}}}],["cluster_transactionsmodule_imports",{"_index":3354,"title":{},"body":{"modules/TransactionsModule.html":{},"overview.html":{}}}],["coach",{"_index":1582,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cobbler",{"_index":1710,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cobler",{"_index":1709,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["coconut",{"_index":1832,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["code",{"_index":1341,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"components/OrganizationComponent.html":{},"index.html":{},"license.html":{}}}],["coffee",{"_index":1844,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["collapsed",{"_index":598,"title":{},"body":{"components/AdminComponent.html":{}}}],["collect",{"_index":4280,"title":{},"body":{"license.html":{}}}],["collection",{"_index":1678,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["college",{"_index":1592,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["columnstodisplay",{"_index":3042,"title":{},"body":{"components/TokensComponent.html":{}}}],["combination",{"_index":4287,"title":{},"body":{"license.html":{}}}],["combine",{"_index":4284,"title":{},"body":{"license.html":{}}}],["combined",{"_index":3970,"title":{},"body":{"license.html":{}}}],["comes",{"_index":2602,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"license.html":{}}}],["command",{"_index":3608,"title":{},"body":{"index.html":{}}}],["commands",{"_index":3818,"title":{},"body":{"license.html":{}}}],["comment",{"_index":2943,"title":{},"body":{"interfaces/Staff.html":{}}}],["commercial",{"_index":4058,"title":{},"body":{"license.html":{}}}],["commitment",{"_index":4229,"title":{},"body":{"license.html":{}}}],["common",{"_index":4052,"title":{},"body":{"license.html":{}}}],["commonmodule",{"_index":450,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["communication",{"_index":3867,"title":{},"body":{"license.html":{}}}],["community",{"_index":1994,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"components/TokenDetailsComponent.html":{},"miscellaneous/variables.html":{}}}],["compilation",{"_index":3966,"title":{},"body":{"license.html":{}}}],["compilation's",{"_index":3975,"title":{},"body":{"license.html":{}}}],["compilations",{"_index":4264,"title":{},"body":{"license.html":{}}}],["compiler",{"_index":3850,"title":{},"body":{"license.html":{}}}],["complete",{"_index":1539,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["compliance",{"_index":4186,"title":{},"body":{"license.html":{}}}],["comply",{"_index":3892,"title":{},"body":{"license.html":{}}}],["component",{"_index":175,"title":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsRoutingModule.html":{},"components/AdminComponent.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthRoutingModule.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"modules/PagesRoutingModule.html":{},"guards/RoleGuard.html":{},"components/SettingsComponent.html":{},"modules/SettingsRoutingModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsRoutingModule.html":{},"coverage.html":{},"index.html":{},"license.html":{}}}],["component({selector",{"_index":1369,"title":{},"body":{"components/FooterStubComponent.html":{},"components/SidebarStubComponent.html":{},"components/TopbarStubComponent.html":{}}}],["component_template",{"_index":290,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["components",{"_index":177,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"overview.html":{}}}],["computer",{"_index":3791,"title":{},"body":{"license.html":{}}}],["computers",{"_index":3739,"title":{},"body":{"license.html":{}}}],["concerning",{"_index":4286,"title":{},"body":{"license.html":{}}}],["concerns",{"_index":4292,"title":{},"body":{"license.html":{}}}],["conditioned",{"_index":4259,"title":{},"body":{"license.html":{}}}],["conditions",{"_index":3750,"title":{},"body":{"license.html":{}}}],["conductor",{"_index":2098,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["config.interceptor.ts",{"_index":1419,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{},"coverage.html":{}}}],["config.interceptor.ts:11",{"_index":1420,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{}}}],["config.interceptor.ts:15",{"_index":1421,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{}}}],["confirm('approve",{"_index":610,"title":{},"body":{"components/AdminComponent.html":{}}}],["confirm('create",{"_index":1234,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["confirm('disapprove",{"_index":613,"title":{},"body":{"components/AdminComponent.html":{}}}],["confirm('set",{"_index":2669,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["confirmpassword",{"_index":1274,"title":{},"body":{"classes/CustomValidator.html":{}}}],["congo",{"_index":2262,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["connection",{"_index":89,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["consequence",{"_index":4174,"title":{},"body":{"license.html":{}}}],["consequential",{"_index":4322,"title":{},"body":{"license.html":{}}}],["conservation",{"_index":1661,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["consider",{"_index":4383,"title":{},"body":{"license.html":{}}}],["considered",{"_index":4133,"title":{},"body":{"license.html":{}}}],["consistent",{"_index":4220,"title":{},"body":{"license.html":{}}}],["console.log('here",{"_index":3413,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["console.log(await",{"_index":110,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["conspicuously",{"_index":3938,"title":{},"body":{"license.html":{}}}],["const",{"_index":48,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"modules/AccountsRoutingModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppRoutingModule.html":{},"components/AuthComponent.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"guards/RoleGuard.html":{},"components/SettingsComponent.html":{},"modules/SettingsRoutingModule.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signer.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"modules/TokensRoutingModule.html":{},"injectables/TransactionService.html":{},"modules/TransactionsRoutingModule.html":{}}}],["constantly",{"_index":3734,"title":{},"body":{"license.html":{}}}],["constitutes",{"_index":3882,"title":{},"body":{"license.html":{}}}],["construction",{"_index":1706,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["constructor",{"_index":84,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["constructor(@inject(mat_dialog_data",{"_index":1293,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["constructor(authservice",{"_index":649,"title":{},"body":{"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/SettingsComponent.html":{}}}],["constructor(blocksyncservice",{"_index":3313,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["constructor(contractaddress",{"_index":85,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["constructor(data",{"_index":1286,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["constructor(dialog",{"_index":1300,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["constructor(elementref",{"_index":1501,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["constructor(errordialogservice",{"_index":1317,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["constructor(formbuilder",{"_index":215,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["constructor(httpclient",{"_index":905,"title":{},"body":{"injectables/AuthService.html":{},"injectables/LocationService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["constructor(initialparams",{"_index":529,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["constructor(keystore",{"_index":2692,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["constructor(logger",{"_index":1467,"title":{},"body":{"injectables/LoggingService.html":{}}}],["constructor(loggingservice",{"_index":1378,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"interceptors/LoggingInterceptor.html":{}}}],["constructor(message",{"_index":1389,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["constructor(private",{"_index":875,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/LoggingService.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{}}}],["constructor(route",{"_index":2951,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["constructor(router",{"_index":841,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"components/TransactionDetailsComponent.html":{}}}],["constructor(scanfilter",{"_index":2856,"title":{},"body":{"classes/Settings.html":{},"classes/W3.html":{}}}],["constructor(tokenservice",{"_index":3044,"title":{},"body":{"components/TokensComponent.html":{}}}],["constructor(transactionservice",{"_index":1068,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["constructor(userservice",{"_index":356,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{}}}],["construed",{"_index":4268,"title":{},"body":{"license.html":{}}}],["consult",{"_index":1591,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["consultant",{"_index":1590,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["consumer",{"_index":4035,"title":{},"body":{"license.html":{}}}],["contact",{"_index":4365,"title":{},"body":{"license.html":{}}}],["contain",{"_index":1343,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"license.html":{}}}],["contained",{"_index":3597,"title":{},"body":{"index.html":{}}}],["containing",{"_index":4116,"title":{},"body":{"license.html":{}}}],["contains",{"_index":856,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"index.html":{},"license.html":{}}}],["content",{"_index":701,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"license.html":{}}}],["content?.classlist.add('active",{"_index":711,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["content?.classlist.contains('active",{"_index":710,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["content?.classlist.remove('active",{"_index":713,"title":{},"body":{"components/AppComponent.html":{}}}],["content?.classlist.toggle('active",{"_index":1519,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["contents",{"_index":4224,"title":{},"body":{"license.html":{}}}],["context",{"_index":3844,"title":{},"body":{"license.html":{}}}],["continue",{"_index":4080,"title":{},"body":{"license.html":{}}}],["continued",{"_index":4066,"title":{},"body":{"license.html":{}}}],["contract",{"_index":54,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["contract's",{"_index":94,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["contractaddress",{"_index":75,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["contracts",{"_index":1120,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["contractual",{"_index":4130,"title":{},"body":{"license.html":{}}}],["contradict",{"_index":4274,"title":{},"body":{"license.html":{}}}],["contrast",{"_index":3640,"title":{},"body":{"license.html":{}}}],["contributor",{"_index":4210,"title":{},"body":{"license.html":{}}}],["contributor's",{"_index":4212,"title":{},"body":{"license.html":{}}}],["control",{"_index":1254,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"license.html":{}}}],["control.dirty",{"_index":1258,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["control.get('confirmpassword').seterrors",{"_index":1276,"title":{},"body":{"classes/CustomValidator.html":{}}}],["control.get('confirmpassword').value",{"_index":1275,"title":{},"body":{"classes/CustomValidator.html":{}}}],["control.get('password').value",{"_index":1273,"title":{},"body":{"classes/CustomValidator.html":{}}}],["control.invalid",{"_index":1257,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["control.touched",{"_index":1259,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["control.value",{"_index":1278,"title":{},"body":{"classes/CustomValidator.html":{}}}],["controlled",{"_index":4215,"title":{},"body":{"license.html":{}}}],["convenient",{"_index":3810,"title":{},"body":{"license.html":{}}}],["conversion",{"_index":720,"title":{"classes/Conversion.html":{}},"body":{"components/AppComponent.html":{},"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"coverage.html":{}}}],["conversion.fromvalue",{"_index":3236,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversion.recipient",{"_index":3242,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversion.sender",{"_index":3241,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversion.tovalue",{"_index":3238,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversion.tx.txhash",{"_index":3234,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversion.type",{"_index":3235,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversions",{"_index":2397,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["converttoparammap",{"_index":541,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["convey",{"_index":3798,"title":{},"body":{"license.html":{}}}],["conveyance",{"_index":4252,"title":{},"body":{"license.html":{}}}],["conveyed",{"_index":4075,"title":{},"body":{"license.html":{}}}],["conveying",{"_index":3804,"title":{},"body":{"license.html":{}}}],["conveys",{"_index":4129,"title":{},"body":{"license.html":{}}}],["cook",{"_index":1842,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["copied",{"_index":3133,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["copies",{"_index":3627,"title":{},"body":{"license.html":{}}}],["copy",{"_index":3624,"title":{},"body":{"license.html":{}}}],["copy.ts",{"_index":3439,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["copyaddress",{"_index":3096,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["copyaddress(address",{"_index":3105,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["copying",{"_index":3751,"title":{},"body":{"license.html":{}}}],["copyleft",{"_index":3631,"title":{},"body":{"license.html":{}}}],["copyright",{"_index":3615,"title":{},"body":{"license.html":{}}}],["copyrightable",{"_index":3761,"title":{},"body":{"license.html":{}}}],["copyrighted",{"_index":3896,"title":{},"body":{"license.html":{}}}],["copytoclipboard",{"_index":3114,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"coverage.html":{},"miscellaneous/functions.html":{}}}],["copytoclipboard(address",{"_index":3131,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["copytoclipboard(text",{"_index":3535,"title":{},"body":{"miscellaneous/functions.html":{}}}],["corn",{"_index":1843,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["correction",{"_index":4317,"title":{},"body":{"license.html":{}}}],["corresponding",{"_index":3853,"title":{},"body":{"license.html":{}}}],["cosmetics",{"_index":2002,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cost",{"_index":4001,"title":{},"body":{"license.html":{}}}],["counsellor",{"_index":1623,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["count",{"_index":168,"title":{},"body":{"classes/AccountIndex.html":{},"injectables/TokenService.html":{}}}],["counterclaim",{"_index":4204,"title":{},"body":{"license.html":{}}}],["counties",{"_index":2373,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["countries",{"_index":3795,"title":{},"body":{"license.html":{}}}],["country",{"_index":1651,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"components/OrganizationComponent.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["countrycode",{"_index":2666,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["county",{"_index":1652,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["course",{"_index":4377,"title":{},"body":{"license.html":{}}}],["court",{"_index":4273,"title":{},"body":{"license.html":{}}}],["courts",{"_index":4339,"title":{},"body":{"license.html":{}}}],["covenant",{"_index":4232,"title":{},"body":{"license.html":{}}}],["coverage",{"_index":3426,"title":{"coverage.html":{}},"body":{"coverage.html":{},"license.html":{}}}],["covered",{"_index":3779,"title":{},"body":{"license.html":{}}}],["create",{"_index":88,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsRoutingModule.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenRegistry.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"index.html":{}}}],["createaccountcomponent",{"_index":302,"title":{"components/CreateAccountComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["created",{"_index":374,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionsComponent.html":{},"classes/UserServiceStub.html":{}}}],["createform",{"_index":1204,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["createformstub",{"_index":1206,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["credentials",{"_index":2889,"title":{},"body":{"components/SettingsComponent.html":{}}}],["credit",{"_index":2013,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["crisps",{"_index":1830,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["criterion",{"_index":3823,"title":{},"body":{"license.html":{}}}],["cross",{"_index":1605,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["csv.ts",{"_index":3443,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["cubic",{"_index":600,"title":{},"body":{"components/AdminComponent.html":{}}}],["cure",{"_index":4164,"title":{},"body":{"license.html":{}}}],["currency",{"_index":2962,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["currentuser",{"_index":2821,"title":{},"body":{"guards/RoleGuard.html":{}}}],["customarily",{"_index":3992,"title":{},"body":{"license.html":{}}}],["customer",{"_index":3997,"title":{},"body":{"license.html":{}}}],["customerrorstatematcher",{"_index":231,"title":{"classes/CustomErrorStateMatcher.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"components/OrganizationComponent.html":{},"coverage.html":{}}}],["customevent",{"_index":657,"title":{},"body":{"components/AppComponent.html":{}}}],["customevent('cic_convert",{"_index":1140,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["customevent('cic_transfer",{"_index":1138,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["customvalidator",{"_index":1260,"title":{"classes/CustomValidator.html":{}},"body":{"classes/CustomValidator.html":{},"coverage.html":{}}}],["cyber",{"_index":1613,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["d",{"_index":2878,"title":{},"body":{"components/SettingsComponent.html":{},"license.html":{}}}],["d.getdate()}/${d.getmonth()}/${d.getfullyear",{"_index":2880,"title":{},"body":{"components/SettingsComponent.html":{}}}],["dagaa",{"_index":1846,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dagoreti",{"_index":2266,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dagoretti",{"_index":2308,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["daktari",{"_index":1985,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["damages",{"_index":4320,"title":{},"body":{"license.html":{}}}],["dandora",{"_index":2267,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["danger",{"_index":3742,"title":{},"body":{"license.html":{}}}],["danish",{"_index":1630,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dashboard",{"_index":2934,"title":{},"body":{"components/SidebarComponent.html":{}}}],["data",{"_index":42,"title":{},"body":{"interfaces/AccountDetails.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signer.html":{},"injectables/TransactionService.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["data.message",{"_index":1294,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["data?.status",{"_index":1295,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["datafile",{"_index":4437,"title":{},"body":{"miscellaneous/variables.html":{}}}],["datasource",{"_index":345,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["datasource.filter",{"_index":3340,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["datatables",{"_index":461,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AppModule.html":{},"modules/TransactionsModule.html":{},"dependencies.html":{}}}],["datatables.net",{"_index":3501,"title":{},"body":{"dependencies.html":{}}}],["datatablesmodule",{"_index":459,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AppModule.html":{},"modules/TransactionsModule.html":{}}}],["date",{"_index":427,"title":{},"body":{"components/AccountsComponent.html":{},"components/SettingsComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"license.html":{}}}],["date.now",{"_index":50,"title":{},"body":{"interfaces/AccountDetails.html":{},"interceptors/LoggingInterceptor.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["date_registered",{"_index":13,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["dateregistered",{"_index":3414,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["dawa",{"_index":1986,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["daycare",{"_index":1597,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["days",{"_index":4160,"title":{},"body":{"license.html":{}}}],["debug",{"_index":1488,"title":{},"body":{"injectables/LoggingService.html":{}}}],["december",{"_index":3920,"title":{},"body":{"license.html":{}}}],["decide",{"_index":4300,"title":{},"body":{"license.html":{}}}],["decimals",{"_index":1552,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"miscellaneous/variables.html":{}}}],["declarations",{"_index":435,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{},"overview.html":{}}}],["declining",{"_index":4122,"title":{},"body":{"license.html":{}}}],["decorators",{"_index":381,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/ErrorDialogComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["deemed",{"_index":3909,"title":{},"body":{"license.html":{}}}],["default",{"_index":228,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/MockBackendInterceptor.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"injectables/RegistryService.html":{},"directives/RouterLinkDirectiveStub.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"classes/UserServiceStub.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["defaultaccount",{"_index":49,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"injectables/TransactionService.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["defaultpagesize",{"_index":346,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionsComponent.html":{}}}],["defective",{"_index":4313,"title":{},"body":{"license.html":{}}}],["defenses",{"_index":4271,"title":{},"body":{"license.html":{}}}],["define",{"_index":1020,"title":{},"body":{"injectables/AuthService.html":{}}}],["defined",{"_index":86,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"classes/W3.html":{},"license.html":{}}}],["definition",{"_index":3860,"title":{},"body":{"license.html":{}}}],["definitions",{"_index":3755,"title":{},"body":{"license.html":{}}}],["delay",{"_index":1525,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["delayed",{"_index":2405,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["delimiter",{"_index":3538,"title":{},"body":{"miscellaneous/functions.html":{}}}],["dematerialize",{"_index":1526,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["demo",{"_index":1555,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["denied",{"_index":4082,"title":{},"body":{"license.html":{}}}],["denominated",{"_index":4230,"title":{},"body":{"license.html":{}}}],["deny",{"_index":3706,"title":{},"body":{"license.html":{}}}],["denying",{"_index":3668,"title":{},"body":{"license.html":{}}}],["dependencies",{"_index":434,"title":{"dependencies.html":{}},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{},"dependencies.html":{},"overview.html":{}}}],["depending",{"_index":127,"title":{},"body":{"classes/AccountIndex.html":{},"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["deployed",{"_index":90,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["deprive",{"_index":4239,"title":{},"body":{"license.html":{}}}],["dera",{"_index":2046,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dereva",{"_index":2097,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["description",{"_index":64,"title":{},"body":{"classes/AccountIndex.html":{},"classes/ActivatedRouteStub.html":{},"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"classes/TokenRegistry.html":{}}}],["design",{"_index":1714,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["designated",{"_index":4009,"title":{},"body":{"license.html":{}}}],["designed",{"_index":3636,"title":{},"body":{"license.html":{}}}],["destination",{"_index":3161,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["destinationtoken",{"_index":1186,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["detached",{"_index":2621,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["detail",{"_index":1139,"title":{},"body":{"injectables/BlockSyncService.html":{},"license.html":{}}}],["details",{"_index":623,"title":{},"body":{"components/AdminComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{},"license.html":{}}}],["details'},{'name",{"_index":292,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["details.component",{"_index":458,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsModule.html":{}}}],["details.component.html",{"_index":2950,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{}}}],["details.component.scss",{"_index":2949,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{}}}],["details.component.ts",{"_index":2948,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{},"coverage.html":{}}}],["details.component.ts:14",{"_index":2954,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["details.component.ts:15",{"_index":3104,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:16",{"_index":3113,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:17",{"_index":3112,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:18",{"_index":3103,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:26",{"_index":3107,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:27",{"_index":2955,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["details.component.ts:35",{"_index":3110,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:39",{"_index":3109,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:43",{"_index":3111,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:47",{"_index":3108,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:56",{"_index":3106,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.the",{"_index":4374,"title":{},"body":{"license.html":{}}}],["details/account",{"_index":457,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"coverage.html":{}}}],["details/token",{"_index":2947,"title":{},"body":{"components/TokenDetailsComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"coverage.html":{}}}],["details/transaction",{"_index":3092,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"modules/TransactionsModule.html":{},"coverage.html":{}}}],["detergent",{"_index":2044,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["detergents",{"_index":2045,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["determining",{"_index":4046,"title":{},"body":{"license.html":{}}}],["dev",{"_index":3561,"title":{},"body":{"index.html":{}}}],["develop",{"_index":4348,"title":{},"body":{"license.html":{}}}],["developers",{"_index":3684,"title":{},"body":{"license.html":{}}}],["development",{"_index":3559,"title":{},"body":{"index.html":{},"license.html":{}}}],["devices",{"_index":3705,"title":{},"body":{"license.html":{}}}],["dgst",{"_index":2686,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["dhobi",{"_index":1712,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dialog",{"_index":1283,"title":{},"body":{"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{}}}],["dialog'},{'name",{"_index":306,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["dialog.component",{"_index":1308,"title":{},"body":{"injectables/ErrorDialogService.html":{},"modules/SharedModule.html":{}}}],["dialog.component.html",{"_index":1285,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["dialog.component.scss",{"_index":1284,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["dialog.component.ts",{"_index":1282,"title":{},"body":{"components/ErrorDialogComponent.html":{},"coverage.html":{}}}],["dialog.component.ts:10",{"_index":1287,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["dialog.component.ts:12",{"_index":1289,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["dialog.service",{"_index":938,"title":{},"body":{"injectables/AuthService.html":{}}}],["dialog.service.ts",{"_index":1297,"title":{},"body":{"injectables/ErrorDialogService.html":{},"coverage.html":{}}}],["dialog.service.ts:12",{"_index":1305,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["dialog.service.ts:15",{"_index":1304,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["dialog.service.ts:9",{"_index":1302,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["dialog/error",{"_index":1281,"title":{},"body":{"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"modules/SharedModule.html":{},"coverage.html":{}}}],["dialogref",{"_index":1310,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["dialogref.afterclosed().subscribe",{"_index":1313,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["diani",{"_index":2330,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dictates",{"_index":838,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["diesel",{"_index":2141,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["differ",{"_index":4291,"title":{},"body":{"license.html":{}}}],["different",{"_index":4011,"title":{},"body":{"license.html":{}}}],["differently",{"_index":4109,"title":{},"body":{"license.html":{}}}],["digest",{"_index":43,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signer.html":{}}}],["direction",{"_index":3895,"title":{},"body":{"license.html":{}}}],["directions",{"_index":4016,"title":{},"body":{"license.html":{}}}],["directive",{"_index":288,"title":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["directives",{"_index":330,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"overview.html":{}}}],["directive|pipe|service|class|guard|interface|enum|module",{"_index":3570,"title":{},"body":{"index.html":{}}}],["directly",{"_index":3784,"title":{},"body":{"license.html":{}}}],["directory",{"_index":1239,"title":{},"body":{"components/CreateAccountComponent.html":{},"index.html":{}}}],["directoryentry",{"_index":1223,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["disableconsolelogging",{"_index":761,"title":{},"body":{"modules/AppModule.html":{}}}],["disapprove",{"_index":621,"title":{},"body":{"components/AdminComponent.html":{}}}],["disapproveaction",{"_index":557,"title":{},"body":{"components/AdminComponent.html":{}}}],["disapproveaction(action",{"_index":565,"title":{},"body":{"components/AdminComponent.html":{}}}],["disburse",{"_index":1531,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["disbursement",{"_index":2664,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["disbursements",{"_index":2398,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["disclaim",{"_index":3931,"title":{},"body":{"license.html":{}}}],["disclaimer",{"_index":4303,"title":{},"body":{"license.html":{}}}],["disclaiming",{"_index":4106,"title":{},"body":{"license.html":{}}}],["discriminatory",{"_index":4256,"title":{},"body":{"license.html":{}}}],["dispensary",{"_index":1979,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["display",{"_index":3965,"title":{},"body":{"license.html":{}}}],["displayed",{"_index":4115,"title":{},"body":{"license.html":{}}}],["displayedcolumns",{"_index":347,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{}}}],["displays",{"_index":3806,"title":{},"body":{"license.html":{}}}],["dist",{"_index":3584,"title":{},"body":{"index.html":{}}}],["distinguishing",{"_index":4293,"title":{},"body":{"license.html":{}}}],["distribute",{"_index":3625,"title":{},"body":{"license.html":{}}}],["distributed",{"_index":4361,"title":{},"body":{"license.html":{}}}],["distributing",{"_index":4260,"title":{},"body":{"license.html":{}}}],["distribution",{"_index":3752,"title":{},"body":{"license.html":{}}}],["divone",{"_index":822,"title":{},"body":{"components/AuthComponent.html":{}}}],["divtwo",{"_index":824,"title":{},"body":{"components/AuthComponent.html":{}}}],["doctor",{"_index":1984,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["document",{"_index":3628,"title":{},"body":{"license.html":{}}}],["document.getelementbyid('content",{"_index":702,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{}}}],["document.getelementbyid('one",{"_index":823,"title":{},"body":{"components/AuthComponent.html":{}}}],["document.getelementbyid('one').style.display",{"_index":1024,"title":{},"body":{"injectables/AuthService.html":{}}}],["document.getelementbyid('sidebar",{"_index":700,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{}}}],["document.getelementbyid('sidebarcollapse",{"_index":704,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{}}}],["document.getelementbyid('state').innerhtml",{"_index":949,"title":{},"body":{"injectables/AuthService.html":{}}}],["document.getelementbyid('two",{"_index":825,"title":{},"body":{"components/AuthComponent.html":{}}}],["document.getelementbyid('two').style.display",{"_index":1025,"title":{},"body":{"injectables/AuthService.html":{}}}],["document.getelementbyid(this.iconid",{"_index":2785,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["document.getelementbyid(this.id",{"_index":2783,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["documentation",{"_index":3427,"title":{},"body":{"coverage.html":{}}}],["documented",{"_index":4092,"title":{},"body":{"license.html":{}}}],["doe",{"_index":3377,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["doesn\\'t",{"_index":1037,"title":{},"body":{"injectables/AuthService.html":{}}}],["dofilter",{"_index":351,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["dofilter(value",{"_index":359,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["doing",{"_index":2603,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["dom",{"_index":180,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["domains",{"_index":3726,"title":{},"body":{"license.html":{}}}],["domsanitizer",{"_index":2849,"title":{},"body":{"pipes/SafePipe.html":{}}}],["don't",{"_index":3579,"title":{},"body":{"index.html":{}}}],["donald",{"_index":3391,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["donholm",{"_index":2265,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["donhom",{"_index":2269,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["donor",{"_index":1646,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["donut",{"_index":1847,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["doti",{"_index":2185,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["double",{"_index":519,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["doubtful",{"_index":4047,"title":{},"body":{"license.html":{}}}],["dough",{"_index":1848,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["downloadcsv",{"_index":352,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["downstream",{"_index":4183,"title":{},"body":{"license.html":{}}}],["driver",{"_index":2096,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dt",{"_index":3503,"title":{},"body":{"dependencies.html":{}}}],["duka",{"_index":2036,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["durable",{"_index":3991,"title":{},"body":{"license.html":{}}}],["duration",{"_index":3135,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["dwelling",{"_index":4045,"title":{},"body":{"license.html":{}}}],["dynamic",{"_index":3485,"title":{},"body":{"dependencies.html":{}}}],["dynamically",{"_index":3862,"title":{},"body":{"license.html":{}}}],["dzivani",{"_index":2187,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dzovuni",{"_index":2188,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dzugwe",{"_index":2186,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["e",{"_index":663,"title":{},"body":{"components/AppComponent.html":{},"injectables/AuthService.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"license.html":{}}}],["e.matches",{"_index":707,"title":{},"body":{"components/AppComponent.html":{}}}],["e2e",{"_index":3595,"title":{},"body":{"index.html":{}}}],["each",{"_index":3764,"title":{},"body":{"license.html":{}}}],["earlier",{"_index":3777,"title":{},"body":{"license.html":{}}}],["east",{"_index":2302,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["economics",{"_index":1017,"title":{},"body":{"injectables/AuthService.html":{},"components/FooterComponent.html":{},"license.html":{}}}],["education",{"_index":1580,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["educator",{"_index":1621,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["effect",{"_index":4336,"title":{},"body":{"license.html":{}}}],["effected",{"_index":3929,"title":{},"body":{"license.html":{}}}],["effective",{"_index":3910,"title":{},"body":{"license.html":{}}}],["effectively",{"_index":3744,"title":{},"body":{"license.html":{}}}],["efforts",{"_index":4197,"title":{},"body":{"license.html":{}}}],["egg",{"_index":1938,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["eimu",{"_index":1602,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["elapsedtime",{"_index":1452,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["elder",{"_index":1648,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["eldoret",{"_index":2380,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["electrian",{"_index":1701,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["electricals",{"_index":2031,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["electrician",{"_index":1791,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["electronic",{"_index":4366,"title":{},"body":{"license.html":{}}}],["electronics",{"_index":1788,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["element",{"_index":287,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["element.style.display",{"_index":830,"title":{},"body":{"components/AuthComponent.html":{}}}],["elementref",{"_index":1502,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["elim",{"_index":1601,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["email",{"_index":32,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"components/SettingsComponent.html":{},"interfaces/Signature.html":{},"interfaces/Staff.html":{},"miscellaneous/variables.html":{}}}],["embakasi",{"_index":2300,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["embakassi",{"_index":2299,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["embodied",{"_index":3986,"title":{},"body":{"license.html":{}}}],["emergency",{"_index":2006,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["employer",{"_index":4380,"title":{},"body":{"license.html":{}}}],["enable",{"_index":3842,"title":{},"body":{"license.html":{}}}],["enables",{"_index":3800,"title":{},"body":{"license.html":{}}}],["end",{"_index":3594,"title":{},"body":{"index.html":{},"license.html":{}}}],["endpoint",{"_index":681,"title":{},"body":{"components/AppComponent.html":{}}}],["enforce",{"_index":4231,"title":{},"body":{"license.html":{}}}],["enforcing",{"_index":3934,"title":{},"body":{"license.html":{}}}],["engine",{"_index":44,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"classes/PGPSigner.html":{},"classes/Settings.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signer.html":{},"classes/W3.html":{}}}],["engineer",{"_index":1748,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["enroller",{"_index":1530,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["ensure",{"_index":2410,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["enter",{"_index":833,"title":{},"body":{"components/AuthComponent.html":{}}}],["entered",{"_index":4265,"title":{},"body":{"license.html":{}}}],["entire",{"_index":3956,"title":{},"body":{"license.html":{}}}],["entirely",{"_index":4282,"title":{},"body":{"license.html":{}}}],["entity",{"_index":4187,"title":{},"body":{"license.html":{}}}],["entry",{"_index":1240,"title":{},"body":{"components/CreateAccountComponent.html":{},"classes/TokenRegistry.html":{}}}],["entry(2",{"_index":2997,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["entry(serial",{"_index":2993,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["env",{"_index":1459,"title":{},"body":{"injectables/LoggingService.html":{},"index.html":{}}}],["env.example",{"_index":3599,"title":{},"body":{"index.html":{}}}],["env.ts",{"_index":3577,"title":{},"body":{"index.html":{}}}],["envelope",{"_index":3205,"title":{},"body":{"injectables/TransactionService.html":{}}}],["envelope.fromjson(json.stringify(account)).unwrap().m.data",{"_index":3249,"title":{},"body":{"injectables/TransactionService.html":{}}}],["environment",{"_index":144,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AppModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"injectables/LocationService.html":{},"interceptors/MockBackendInterceptor.html":{},"injectables/RegistryService.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["environment.cicmetaurl",{"_index":955,"title":{},"body":{"injectables/AuthService.html":{}}}],["environment.loggingurl}/api/logs",{"_index":760,"title":{},"body":{"modules/AppModule.html":{}}}],["environment.loglevel",{"_index":756,"title":{},"body":{"modules/AppModule.html":{}}}],["environment.prod.ts",{"_index":3604,"title":{},"body":{"index.html":{}}}],["environment.registryaddress",{"_index":2804,"title":{},"body":{"injectables/RegistryService.html":{}}}],["environment.serverloglevel",{"_index":758,"title":{},"body":{"modules/AppModule.html":{}}}],["environment.ts",{"_index":3603,"title":{},"body":{"index.html":{}}}],["environment.web3provider",{"_index":1106,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["equivalent",{"_index":3885,"title":{},"body":{"license.html":{}}}],["err",{"_index":1041,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/ErrorInterceptor.html":{}}}],["err.error",{"_index":1331,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["err.error.message",{"_index":1336,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["err.message",{"_index":1043,"title":{},"body":{"injectables/AuthService.html":{}}}],["err.status",{"_index":1347,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["err.statustext",{"_index":1044,"title":{},"body":{"injectables/AuthService.html":{}}}],["erroneously",{"_index":3704,"title":{},"body":{"license.html":{}}}],["error",{"_index":305,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"interceptors/MockBackendInterceptor.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["error('login",{"_index":968,"title":{},"body":{"injectables/AuthService.html":{}}}],["error('the",{"_index":1031,"title":{},"body":{"injectables/AuthService.html":{}}}],["error(`${res.statustext",{"_index":1055,"title":{},"body":{"injectables/AuthService.html":{}}}],["error(message",{"_index":1397,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["error.message",{"_index":1395,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["error.stack",{"_index":1400,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["error.status",{"_index":1008,"title":{},"body":{"injectables/AuthService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["error.tostring",{"_index":1396,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["errordialogcomponent",{"_index":304,"title":{"components/ErrorDialogComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["errordialogservice",{"_index":652,"title":{"injectables/ErrorDialogService.html":{}},"body":{"components/AppComponent.html":{},"injectables/AuthService.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"coverage.html":{}}}],["errorevent",{"_index":1332,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["errorhandler",{"_index":737,"title":{},"body":{"modules/AppModule.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["errorinterceptor",{"_index":729,"title":{"interceptors/ErrorInterceptor.html":{}},"body":{"modules/AppModule.html":{},"interceptors/ErrorInterceptor.html":{},"coverage.html":{},"overview.html":{}}}],["errormessage",{"_index":1330,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["errorstatematcher",{"_index":1246,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["errortracestring",{"_index":1384,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["errortracestring.includes('/src/app",{"_index":1415,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["errortracestring.includes(whitelistsentence",{"_index":1417,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["essential",{"_index":3845,"title":{},"body":{"license.html":{}}}],["establish",{"_index":150,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["eth",{"_index":2678,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["ethereum",{"_index":3416,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["ethers",{"_index":3210,"title":{},"body":{"injectables/TransactionService.html":{},"dependencies.html":{}}}],["ethiopia",{"_index":2679,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["even",{"_index":2411,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["event",{"_index":655,"title":{},"body":{"components/AppComponent.html":{},"interceptors/LoggingInterceptor.html":{},"license.html":{}}}],["event.detail.tx",{"_index":716,"title":{},"body":{"components/AppComponent.html":{}}}],["eventemitter",{"_index":3015,"title":{},"body":{"injectables/TokenService.html":{}}}],["everyone",{"_index":3622,"title":{},"body":{"license.html":{}}}],["evm",{"_index":24,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["exact",{"_index":3774,"title":{},"body":{"license.html":{}}}],["example",{"_index":74,"title":{},"body":{"classes/AccountIndex.html":{},"guards/AuthGuard.html":{},"classes/MutablePgpKeyStore.html":{},"guards/RoleGuard.html":{},"classes/TokenRegistry.html":{},"license.html":{}}}],["except",{"_index":3789,"title":{},"body":{"license.html":{}}}],["exceptions",{"_index":4096,"title":{},"body":{"license.html":{}}}],["exchange",{"_index":3137,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["excluded",{"_index":4034,"title":{},"body":{"license.html":{}}}],["excluding",{"_index":4269,"title":{},"body":{"license.html":{}}}],["exclusion",{"_index":4357,"title":{},"body":{"license.html":{}}}],["exclusive",{"_index":4221,"title":{},"body":{"license.html":{}}}],["exclusively",{"_index":3890,"title":{},"body":{"license.html":{}}}],["excuse",{"_index":4275,"title":{},"body":{"license.html":{}}}],["executable",{"_index":3833,"title":{},"body":{"license.html":{}}}],["execute",{"_index":3592,"title":{},"body":{"index.html":{},"license.html":{}}}],["executing",{"_index":3790,"title":{},"body":{"license.html":{}}}],["exercise",{"_index":4198,"title":{},"body":{"license.html":{}}}],["exercising",{"_index":3930,"title":{},"body":{"license.html":{}}}],["expand",{"_index":576,"title":{},"body":{"components/AdminComponent.html":{}}}],["expandcollapse",{"_index":558,"title":{},"body":{"components/AdminComponent.html":{}}}],["expandcollapse(row",{"_index":569,"title":{},"body":{"components/AdminComponent.html":{}}}],["expected",{"_index":4056,"title":{},"body":{"license.html":{}}}],["expects",{"_index":4055,"title":{},"body":{"license.html":{}}}],["expert",{"_index":1616,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["explains",{"_index":3695,"title":{},"body":{"license.html":{}}}],["explicitly",{"_index":3878,"title":{},"body":{"license.html":{}}}],["export",{"_index":56,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"classes/W3.html":{}}}],["exportcsv",{"_index":390,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"miscellaneous/functions.html":{}}}],["exportcsv(arraydata",{"_index":3536,"title":{},"body":{"miscellaneous/functions.html":{}}}],["exportcsv(this.accounts",{"_index":420,"title":{},"body":{"components/AccountsComponent.html":{}}}],["exportcsv(this.actions",{"_index":616,"title":{},"body":{"components/AdminComponent.html":{}}}],["exportcsv(this.tokens",{"_index":3062,"title":{},"body":{"components/TokensComponent.html":{}}}],["exportcsv(this.transactions",{"_index":3344,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["exportcsv(this.trustedusers",{"_index":2884,"title":{},"body":{"components/SettingsComponent.html":{}}}],["exports",{"_index":438,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"overview.html":{}}}],["express",{"_index":4227,"title":{},"body":{"license.html":{}}}],["expressed",{"_index":4305,"title":{},"body":{"license.html":{}}}],["expressly",{"_index":4144,"title":{},"body":{"license.html":{}}}],["extend",{"_index":3729,"title":{},"body":{"license.html":{}}}],["extended",{"_index":4255,"title":{},"body":{"license.html":{}}}],["extends",{"_index":1373,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["extensions",{"_index":3969,"title":{},"body":{"license.html":{}}}],["extent",{"_index":3809,"title":{},"body":{"license.html":{}}}],["external",{"_index":3419,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["eye",{"_index":2790,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["f",{"_index":4127,"title":{},"body":{"license.html":{}}}],["facilitator",{"_index":1632,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["facilities",{"_index":3891,"title":{},"body":{"license.html":{}}}],["facing",{"_index":1359,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["fagio",{"_index":1665,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["failed",{"_index":997,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/LoggingInterceptor.html":{}}}],["failedpinattempts",{"_index":3382,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["fails",{"_index":4157,"title":{},"body":{"license.html":{}}}],["failure",{"_index":4330,"title":{},"body":{"license.html":{}}}],["fair",{"_index":3884,"title":{},"body":{"license.html":{}}}],["faith",{"_index":1635,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["false",{"_index":123,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"modules/AppModule.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"components/CreateAccountComponent.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"guards/RoleGuard.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["family",{"_index":4040,"title":{},"body":{"license.html":{}}}],["family/surname",{"_index":1238,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["farm",{"_index":1683,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["farmer",{"_index":1684,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["farming",{"_index":1682,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fashion",{"_index":3771,"title":{},"body":{"license.html":{}}}],["favor",{"_index":4050,"title":{},"body":{"license.html":{}}}],["feature",{"_index":3572,"title":{},"body":{"index.html":{},"license.html":{}}}],["fee",{"_index":3677,"title":{},"body":{"license.html":{}}}],["feels",{"_index":396,"title":{},"body":{"components/AccountsComponent.html":{}}}],["female",{"_index":2402,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["fetch",{"_index":146,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["fetch(environment.publickeysurl",{"_index":1051,"title":{},"body":{"injectables/AuthService.html":{}}}],["fetched",{"_index":2989,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["fetcher",{"_index":1063,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["fetcher(settings",{"_index":1076,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["fia",{"_index":3401,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["field",{"_index":474,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["file",{"_index":5,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"classes/W3.html":{},"coverage.html":{},"index.html":{},"license.html":{}}}],["filegetter",{"_index":2794,"title":{},"body":{"injectables/RegistryService.html":{}}}],["filename",{"_index":3537,"title":{},"body":{"miscellaneous/functions.html":{}}}],["files",{"_index":3566,"title":{},"body":{"index.html":{},"license.html":{}}}],["filter",{"_index":423,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["filter_rounds",{"_index":1146,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["filteraccounts",{"_index":353,"title":{},"body":{"components/AccountsComponent.html":{}}}],["filterrounds",{"_index":1170,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["filters",{"_index":1145,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["filtertransactions",{"_index":3310,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["finalize",{"_index":1446,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["finally",{"_index":3232,"title":{},"body":{"injectables/TransactionService.html":{},"license.html":{}}}],["finance",{"_index":2014,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["find",{"_index":2589,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"license.html":{}}}],["fingerprint",{"_index":2689,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["fire",{"_index":2128,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["firewood",{"_index":2129,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["firm",{"_index":1817,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["first",{"_index":391,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"injectables/LocationService.html":{},"components/TokenDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"license.html":{}}}],["fish",{"_index":1857,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fitness",{"_index":4308,"title":{},"body":{"license.html":{}}}],["fix",{"_index":2738,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["fixed",{"_index":3990,"title":{},"body":{"license.html":{}}}],["flag",{"_index":2715,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["flow",{"_index":3868,"title":{},"body":{"license.html":{}}}],["flowers",{"_index":2071,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fn",{"_index":34,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["follow",{"_index":3754,"title":{},"body":{"license.html":{}}}],["following",{"_index":4225,"title":{},"body":{"license.html":{}}}],["foo",{"_index":1563,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["food",{"_index":1819,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["footballer",{"_index":1768,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["footer",{"_index":1362,"title":{},"body":{"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/SidebarStubComponent.html":{},"components/TopbarStubComponent.html":{}}}],["footer'},{'name",{"_index":308,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["footer.component.html",{"_index":1364,"title":{},"body":{"components/FooterComponent.html":{}}}],["footer.component.scss",{"_index":1363,"title":{},"body":{"components/FooterComponent.html":{}}}],["footercomponent",{"_index":307,"title":{"components/FooterComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["footerstubcomponent",{"_index":309,"title":{"components/FooterStubComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["forbid",{"_index":3928,"title":{},"body":{"license.html":{}}}],["forbidden",{"_index":1355,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["force",{"_index":3887,"title":{},"body":{"license.html":{}}}],["form",{"_index":1250,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"license.html":{}}}],["form.submitted",{"_index":1256,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["format",{"_index":4090,"title":{},"body":{"license.html":{}}}],["formbuilder",{"_index":216,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["formcontrol",{"_index":1249,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["formgroup",{"_index":225,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["formgroupdirective",{"_index":1251,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["forms",{"_index":3981,"title":{},"body":{"license.html":{}}}],["found",{"_index":276,"title":{},"body":{"components/AccountSearchComponent.html":{},"index.html":{},"license.html":{}}}],["foundation",{"_index":3619,"title":{},"body":{"license.html":{}}}],["free",{"_index":3617,"title":{},"body":{"license.html":{}}}],["freedom",{"_index":3639,"title":{},"body":{"license.html":{}}}],["freedoms",{"_index":3680,"title":{},"body":{"license.html":{}}}],["freelance",{"_index":1786,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fromhex",{"_index":3212,"title":{},"body":{"injectables/TransactionService.html":{}}}],["fromhex(methodsignature",{"_index":3265,"title":{},"body":{"injectables/TransactionService.html":{}}}],["fromhex(strip0x(transferauthaddress",{"_index":3276,"title":{},"body":{"injectables/TransactionService.html":{}}}],["fromvalue",{"_index":1187,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["fruit",{"_index":1855,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fruits",{"_index":1856,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fua",{"_index":1737,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fuata",{"_index":2296,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fuel",{"_index":2122,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fuel/energy",{"_index":2114,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fulfilling",{"_index":3913,"title":{},"body":{"license.html":{}}}],["full",{"_index":503,"title":{},"body":{"modules/AccountsRoutingModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsRoutingModule.html":{},"license.html":{}}}],["function",{"_index":2418,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/PGPSigner.html":{},"coverage.html":{}}}],["functioning",{"_index":4067,"title":{},"body":{"license.html":{}}}],["functions",{"_index":2448,"title":{"miscellaneous/functions.html":{}},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/functions.html":{}}}],["fundamentally",{"_index":3710,"title":{},"body":{"license.html":{}}}],["fundi",{"_index":1716,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["furniture",{"_index":2080,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["further",{"_index":3605,"title":{},"body":{"index.html":{},"license.html":{}}}],["future",{"_index":3731,"title":{},"body":{"license.html":{}}}],["g",{"_index":3557,"title":{},"body":{"index.html":{}}}],["g.e",{"_index":2350,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gandini",{"_index":2203,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["garage",{"_index":1754,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["garbage",{"_index":1664,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gardener",{"_index":1670,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gari",{"_index":2111,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gas",{"_index":2133,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gatina",{"_index":2277,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ge",{"_index":2351,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gender",{"_index":14,"title":{},"body":{"interfaces/AccountDetails.html":{},"components/CreateAccountComponent.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["genders",{"_index":1205,"title":{},"body":{"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["general",{"_index":1411,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"license.html":{}}}],["generalized",{"_index":1387,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["generally",{"_index":3858,"title":{},"body":{"license.html":{}}}],["generate",{"_index":3569,"title":{},"body":{"index.html":{},"license.html":{}}}],["generated",{"_index":3552,"title":{},"body":{"index.html":{}}}],["ger",{"_index":2680,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["germany",{"_index":2681,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["getaccountinfo",{"_index":3171,"title":{},"body":{"injectables/TransactionService.html":{}}}],["getaccountinfo(account",{"_index":3182,"title":{},"body":{"injectables/TransactionService.html":{}}}],["getaccounttypes",{"_index":2438,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["getactionbyid",{"_index":2423,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{}}}],["getactionbyid(id",{"_index":3407,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["getactions",{"_index":2421,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["getaddresssearchformstub",{"_index":242,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["getaddresstransactions",{"_index":3172,"title":{},"body":{"injectables/TransactionService.html":{}}}],["getaddresstransactions(address",{"_index":3184,"title":{},"body":{"injectables/TransactionService.html":{}}}],["getalltransactions",{"_index":3173,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["getalltransactions(offset",{"_index":3186,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["getareanamebylocation",{"_index":1427,"title":{},"body":{"injectables/LocationService.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["getareanamebylocation(location",{"_index":1432,"title":{},"body":{"injectables/LocationService.html":{}}}],["getareanames",{"_index":1428,"title":{},"body":{"injectables/LocationService.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["getareatypebyarea",{"_index":1429,"title":{},"body":{"injectables/LocationService.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["getareatypebyarea(area",{"_index":1435,"title":{},"body":{"injectables/LocationService.html":{}}}],["getareatypes",{"_index":1430,"title":{},"body":{"injectables/LocationService.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["getbysymbol",{"_index":3036,"title":{},"body":{"classes/TokenServiceStub.html":{}}}],["getbysymbol(symbol",{"_index":3037,"title":{},"body":{"classes/TokenServiceStub.html":{}}}],["getcategories",{"_index":2430,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["getcategorybyproduct",{"_index":2432,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["getchallenge",{"_index":894,"title":{},"body":{"injectables/AuthService.html":{}}}],["getcreateformstub",{"_index":1217,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["getencryptkeys",{"_index":2505,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getfingerprint",{"_index":2506,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getgenders",{"_index":2442,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["getkeyformstub",{"_index":797,"title":{},"body":{"components/AuthComponent.html":{}}}],["getkeyid",{"_index":2507,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getkeyid(key",{"_index":2530,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getkeysforid",{"_index":2508,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getkeysforid(keyid",{"_index":2532,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getnamesearchformstub",{"_index":238,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["getorganizationformstub",{"_index":2661,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["getphonesearchformstub",{"_index":240,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["getprivatekey",{"_index":895,"title":{},"body":{"injectables/AuthService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getprivatekeyforid",{"_index":2509,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getprivatekeyforid(keyid",{"_index":2536,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getprivatekeyid",{"_index":2510,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getprivatekeys",{"_index":2511,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeyforid",{"_index":2512,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeyforid(keyid",{"_index":2540,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeyforsubkeyid",{"_index":2513,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeyforsubkeyid(subkeyid",{"_index":2542,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeys",{"_index":896,"title":{},"body":{"injectables/AuthService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeysforaddress",{"_index":2514,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeysforaddress(address",{"_index":2546,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getregistry",{"_index":2795,"title":{},"body":{"injectables/RegistryService.html":{}}}],["getter.ts",{"_index":3447,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["getting",{"_index":3547,"title":{"index.html":{},"license.html":{}},"body":{}}],["gettokenbalance",{"_index":3008,"title":{},"body":{"injectables/TokenService.html":{}}}],["gettokenbalance(address",{"_index":3010,"title":{},"body":{"injectables/TokenService.html":{}}}],["gettokenbysymbol",{"_index":2428,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"injectables/TokenService.html":{}}}],["gettokenbysymbol(symbol",{"_index":3012,"title":{},"body":{"injectables/TokenService.html":{}}}],["gettokens",{"_index":2426,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"injectables/TokenService.html":{}}}],["gettransactiontypes",{"_index":2440,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["gettrustedactivekeys",{"_index":2515,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["gettrustedkeys",{"_index":2516,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["gettrustedusers",{"_index":897,"title":{},"body":{"injectables/AuthService.html":{}}}],["getuser",{"_index":3373,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["getuser(userkey",{"_index":3409,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["getuserbyid",{"_index":3374,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["getuserbyid(id",{"_index":3412,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["getweb3",{"_index":2796,"title":{},"body":{"injectables/RegistryService.html":{}}}],["getwithtoken",{"_index":898,"title":{},"body":{"injectables/AuthService.html":{}}}],["giftable",{"_index":1546,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["githeri",{"_index":1858,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["githurai",{"_index":2303,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["give",{"_index":3949,"title":{},"body":{"license.html":{}}}],["given",{"_index":1235,"title":{},"body":{"components/CreateAccountComponent.html":{},"classes/TokenRegistry.html":{},"license.html":{}}}],["givenname",{"_index":1221,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["gives",{"_index":3962,"title":{},"body":{"license.html":{}}}],["giving",{"_index":3689,"title":{},"body":{"license.html":{}}}],["globalerrorhandler",{"_index":730,"title":{"injectables/GlobalErrorHandler.html":{}},"body":{"modules/AppModule.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"coverage.html":{},"overview.html":{}}}],["gnu",{"_index":3611,"title":{},"body":{"license.html":{}}}],["go",{"_index":818,"title":{},"body":{"components/AuthComponent.html":{},"index.html":{}}}],["goats",{"_index":1863,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gona",{"_index":2201,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["good",{"_index":1942,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["governed",{"_index":4099,"title":{},"body":{"license.html":{}}}],["government",{"_index":1647,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gpl",{"_index":3685,"title":{},"body":{"license.html":{}}}],["grant",{"_index":4123,"title":{},"body":{"license.html":{}}}],["granted",{"_index":3873,"title":{},"body":{"license.html":{}}}],["grants",{"_index":4177,"title":{},"body":{"license.html":{}}}],["graph",{"_index":4393,"title":{},"body":{"modules.html":{}}}],["grassroots",{"_index":1016,"title":{},"body":{"injectables/AuthService.html":{},"components/FooterComponent.html":{},"license.html":{}}}],["gratis",{"_index":3676,"title":{},"body":{"license.html":{}}}],["greatest",{"_index":4349,"title":{},"body":{"license.html":{}}}],["grocer",{"_index":1860,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["groceries",{"_index":3389,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["grocery",{"_index":1859,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["groundnuts",{"_index":1849,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["group",{"_index":2009,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["grz",{"_index":1548,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["guarantee",{"_index":3642,"title":{},"body":{"license.html":{}}}],["guard",{"_index":834,"title":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}},"body":{"guards/AuthGuard.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["guards",{"_index":835,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"overview.html":{}}}],["gui",{"_index":4378,"title":{},"body":{"license.html":{}}}],["guitarist",{"_index":1802,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["guro",{"_index":2202,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hair",{"_index":1743,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["halt",{"_index":691,"title":{},"body":{"components/AppComponent.html":{}}}],["handle",{"_index":816,"title":{},"body":{"components/AuthComponent.html":{},"interceptors/ErrorInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["handled",{"_index":2446,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["handleerror",{"_index":1375,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handleerror(error",{"_index":1380,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["handler",{"_index":397,"title":{},"body":{"components/AccountsComponent.html":{},"injectables/AuthService.html":{}}}],["handler.ts",{"_index":1372,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"coverage.html":{}}}],["handler.ts:18",{"_index":1379,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handler.ts:27",{"_index":1381,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handler.ts:47",{"_index":1386,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handler.ts:67",{"_index":1383,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handler.ts:8",{"_index":1425,"title":{},"body":{"classes/HttpError.html":{}}}],["handleroute",{"_index":2419,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["hanje",{"_index":2189,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["happened",{"_index":1414,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["hardware",{"_index":2043,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hash",{"_index":3149,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["hash.tostring('hex').substring(0",{"_index":3259,"title":{},"body":{"injectables/TransactionService.html":{}}}],["hashfunction",{"_index":3254,"title":{},"body":{"injectables/TransactionService.html":{}}}],["hashfunction.digest",{"_index":3257,"title":{},"body":{"injectables/TransactionService.html":{}}}],["hashfunction.update('createrequest(address,address,address,uint256",{"_index":3256,"title":{},"body":{"injectables/TransactionService.html":{}}}],["haveaccount",{"_index":81,"title":{},"body":{"classes/AccountIndex.html":{}}}],["haveaccount('0xc0ffee254729296a45a3885639ac7e10f9d54979'",{"_index":128,"title":{},"body":{"classes/AccountIndex.html":{}}}],["haveaccount('0xc0ffee254729296a45a3885639ac7e10f9d54979",{"_index":166,"title":{},"body":{"classes/AccountIndex.html":{}}}],["haveaccount(address",{"_index":117,"title":{},"body":{"classes/AccountIndex.html":{}}}],["having",{"_index":3889,"title":{},"body":{"license.html":{}}}],["hawinga",{"_index":2364,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hawker",{"_index":1718,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hawking",{"_index":1717,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hazina",{"_index":2149,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["headers",{"_index":2403,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["headmaster",{"_index":1620,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["headmistress",{"_index":1611,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["headteacher",{"_index":1612,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["health",{"_index":1977,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["heath",{"_index":1993,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["help",{"_index":1722,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["helper",{"_index":2492,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["hera",{"_index":3395,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["herbalist",{"_index":1988,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hereafter",{"_index":4217,"title":{},"body":{"license.html":{}}}],["hi",{"_index":1090,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["hidden",{"_index":594,"title":{},"body":{"components/AdminComponent.html":{}}}],["hoba",{"_index":982,"title":{},"body":{"injectables/AuthService.html":{}}}],["hobaparsechallengeheader",{"_index":931,"title":{},"body":{"injectables/AuthService.html":{}}}],["hobaparsechallengeheader(authheader",{"_index":993,"title":{},"body":{"injectables/AuthService.html":{}}}],["hobaresponseencoded",{"_index":922,"title":{},"body":{"injectables/AuthService.html":{}}}],["holder",{"_index":4151,"title":{},"body":{"license.html":{}}}],["holders",{"_index":4105,"title":{},"body":{"license.html":{}}}],["holel",{"_index":1851,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["homabay",{"_index":2368,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["homaboy",{"_index":2369,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["home",{"_index":281,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"modules/PagesRoutingModule.html":{},"components/SettingsComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["hope",{"_index":4362,"title":{},"body":{"license.html":{}}}],["hospital",{"_index":1987,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hostlistener",{"_index":672,"title":{},"body":{"components/AppComponent.html":{},"directives/RouterLinkDirectiveStub.html":{}}}],["hostlistener('click",{"_index":2836,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["hostlistener('window:cic_convert",{"_index":718,"title":{},"body":{"components/AppComponent.html":{}}}],["hostlistener('window:cic_transfer",{"_index":714,"title":{},"body":{"components/AppComponent.html":{}}}],["hostlisteners",{"_index":646,"title":{},"body":{"components/AppComponent.html":{},"directives/RouterLinkDirectiveStub.html":{}}}],["hosts",{"_index":4018,"title":{},"body":{"license.html":{}}}],["hotel",{"_index":1850,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hoteli",{"_index":1852,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["house",{"_index":1721,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["housegirl",{"_index":1723,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["househelp",{"_index":1719,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["household",{"_index":4041,"title":{},"body":{"license.html":{}}}],["hsehelp",{"_index":1720,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["html",{"_index":286,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["htmlelement",{"_index":699,"title":{},"body":{"components/AppComponent.html":{},"components/AuthComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["http",{"_index":1388,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["http://localhost:4200",{"_index":3563,"title":{},"body":{"index.html":{}}}],["http://localhost:8000",{"_index":4432,"title":{},"body":{"miscellaneous/variables.html":{}}}],["http://localhost:8000/keys.asc",{"_index":4433,"title":{},"body":{"miscellaneous/variables.html":{}}}],["http_interceptors",{"_index":742,"title":{},"body":{"modules/AppModule.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["httpclient",{"_index":906,"title":{},"body":{"injectables/AuthService.html":{},"injectables/LocationService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["httpclientmodule",{"_index":743,"title":{},"body":{"modules/AppModule.html":{}}}],["httpconfiginterceptor",{"_index":731,"title":{"interceptors/HttpConfigInterceptor.html":{}},"body":{"modules/AppModule.html":{},"interceptors/HttpConfigInterceptor.html":{},"coverage.html":{},"overview.html":{}}}],["httperror",{"_index":939,"title":{"classes/HttpError.html":{}},"body":{"injectables/AuthService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"coverage.html":{}}}],["httperror(xhr.statustext",{"_index":983,"title":{},"body":{"injectables/AuthService.html":{}}}],["httperrorresponse",{"_index":1326,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["httperrorresponse).status",{"_index":1407,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["httpevent",{"_index":1324,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["httpgetter",{"_index":2800,"title":{},"body":{"injectables/RegistryService.html":{},"coverage.html":{},"miscellaneous/functions.html":{}}}],["httphandler",{"_index":1321,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["httpinterceptor",{"_index":1325,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["httprequest",{"_index":1320,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["httpresponse",{"_index":1445,"title":{},"body":{"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["https://blockexplorer.bloxberg.org/address",{"_index":3117,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["https://cache.dev.grassrootseconomics.net",{"_index":4421,"title":{},"body":{"miscellaneous/variables.html":{}}}],["https://dashboard.sarafu.network",{"_index":2747,"title":{},"body":{"components/PagesComponent.html":{}}}],["https://dev.grassrootseconomics.net/.well",{"_index":4418,"title":{},"body":{"miscellaneous/variables.html":{}}}],["https://fsf.org",{"_index":3621,"title":{},"body":{"license.html":{}}}],["https://meta.dev.grassrootseconomics.net",{"_index":4416,"title":{},"body":{"miscellaneous/variables.html":{}}}],["https://ussd.dev.grassrootseconomics.net",{"_index":4426,"title":{},"body":{"miscellaneous/variables.html":{}}}],["https://www.gnu.org/licenses",{"_index":4364,"title":{},"body":{"license.html":{}}}],["https://www.gnu.org/licenses/why",{"_index":4389,"title":{},"body":{"license.html":{}}}],["huruma",{"_index":2270,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hustler",{"_index":1738,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hypothetical",{"_index":4375,"title":{},"body":{"license.html":{}}}],["icon",{"_index":2784,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["icon.classlist.add('fa",{"_index":2791,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["icon.classlist.remove('fa",{"_index":2789,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["iconid",{"_index":2777,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["id",{"_index":45,"title":{},"body":{"interfaces/AccountDetails.html":{},"modules/AccountsRoutingModule.html":{},"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"components/CreateAccountComponent.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"directives/PasswordToggleDirective.html":{},"components/SettingsComponent.html":{},"interfaces/Signature.html":{},"classes/TokenRegistry.html":{},"modules/TokensRoutingModule.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["identifiable",{"_index":4245,"title":{},"body":{"license.html":{}}}],["identifier",{"_index":2988,"title":{},"body":{"classes/TokenRegistry.html":{},"coverage.html":{}}}],["identities",{"_index":15,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["idfromurl",{"_index":2453,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["idnumber",{"_index":1220,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["iframes",{"_index":2749,"title":{},"body":{"components/PagesComponent.html":{}}}],["ignore",{"_index":2787,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["imam",{"_index":1637,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["immagration",{"_index":1659,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["immigration",{"_index":1660,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["implement",{"_index":3843,"title":{},"body":{"license.html":{}}}],["implementation",{"_index":837,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["implements",{"_index":185,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["implied",{"_index":4270,"title":{},"body":{"license.html":{}}}],["import",{"_index":140,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"license.html":{}}}],["import('@app/auth/auth.module').then(m",{"_index":769,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["import('@pages/accounts/accounts.module').then(m",{"_index":2767,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["import('@pages/admin/admin.module').then(m",{"_index":2771,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["import('@pages/pages.module').then(m",{"_index":771,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["import('@pages/settings/settings.module').then(m",{"_index":2765,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["import('@pages/tokens/tokens.module').then(m",{"_index":2769,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["import('@pages/transactions/transactions.module').then(m",{"_index":2763,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["imported",{"_index":2593,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["imported.keys",{"_index":2595,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["importing",{"_index":4209,"title":{},"body":{"license.html":{}}}],["importkeypair",{"_index":2517,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["importkeypair(publickey",{"_index":2550,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["importprivatekey",{"_index":2518,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["importprivatekey(privatekey",{"_index":2553,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["importpublickey",{"_index":2519,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["importpublickey(publickey",{"_index":2555,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["imports",{"_index":143,"title":{},"body":{"classes/AccountIndex.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"guards/RoleGuard.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"classes/TokenRegistry.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{}}}],["impose",{"_index":4132,"title":{},"body":{"license.html":{}}}],["imposed",{"_index":4272,"title":{},"body":{"license.html":{}}}],["inability",{"_index":4324,"title":{},"body":{"license.html":{}}}],["inaccurate",{"_index":4327,"title":{},"body":{"license.html":{}}}],["inc",{"_index":3620,"title":{},"body":{"license.html":{}}}],["incidental",{"_index":4321,"title":{},"body":{"license.html":{}}}],["include",{"_index":3834,"title":{},"body":{"license.html":{}}}],["included",{"_index":3836,"title":{},"body":{"license.html":{}}}],["includes",{"_index":3794,"title":{},"body":{"license.html":{}}}],["including",{"_index":3854,"title":{},"body":{"license.html":{}}}],["inclusion",{"_index":3979,"title":{},"body":{"license.html":{}}}],["inclusive",{"_index":2961,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["income",{"_index":2966,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["incompatible",{"_index":3711,"title":{},"body":{"license.html":{}}}],["incorporating",{"_index":4381,"title":{},"body":{"license.html":{}}}],["incorporation",{"_index":4044,"title":{},"body":{"license.html":{}}}],["incorrect",{"_index":1021,"title":{},"body":{"injectables/AuthService.html":{}}}],["indemnification",{"_index":4128,"title":{},"body":{"license.html":{}}}],["independent",{"_index":3967,"title":{},"body":{"license.html":{}}}],["index",{"_index":7,"title":{"index.html":{}},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"classes/W3.html":{},"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}}}],["indicate",{"_index":4180,"title":{},"body":{"license.html":{}}}],["indicating",{"_index":4142,"title":{},"body":{"license.html":{}}}],["individual",{"_index":3977,"title":{},"body":{"license.html":{}}}],["individuals",{"_index":3718,"title":{},"body":{"license.html":{}}}],["industrial",{"_index":2279,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["info",{"_index":3,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"classes/W3.html":{}}}],["inform",{"_index":4026,"title":{},"body":{"license.html":{}}}],["information",{"_index":857,"title":{},"body":{"guards/AuthGuard.html":{},"interceptors/MockBackendInterceptor.html":{},"components/OrganizationComponent.html":{},"guards/RoleGuard.html":{},"classes/UserServiceStub.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["infringe",{"_index":4178,"title":{},"body":{"license.html":{}}}],["infringed",{"_index":4207,"title":{},"body":{"license.html":{}}}],["infringement",{"_index":3787,"title":{},"body":{"license.html":{}}}],["init",{"_index":899,"title":{},"body":{"injectables/AuthService.html":{}}}],["initialparams",{"_index":532,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["initiate",{"_index":4201,"title":{},"body":{"license.html":{}}}],["inject",{"_index":1290,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["inject(mat_dialog_data",{"_index":1288,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["injectable",{"_index":871,"title":{"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"injectables/LocationService.html":{},"injectables/LoggingService.html":{},"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}},"body":{"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"interceptors/MockBackendInterceptor.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"coverage.html":{}}}],["injectables",{"_index":889,"title":{},"body":{"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"injectables/LocationService.html":{},"injectables/LoggingService.html":{},"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"overview.html":{}}}],["input",{"_index":2781,"title":{},"body":{"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/TransactionDetailsComponent.html":{},"miscellaneous/functions.html":{}}}],["input('routerlink",{"_index":2834,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["inputs",{"_index":2776,"title":{},"body":{"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/TransactionDetailsComponent.html":{}}}],["inside",{"_index":3707,"title":{},"body":{"license.html":{}}}],["install",{"_index":3556,"title":{},"body":{"index.html":{},"license.html":{}}}],["installation",{"_index":4062,"title":{},"body":{"license.html":{}}}],["installed",{"_index":4078,"title":{},"body":{"license.html":{}}}],["instance",{"_index":66,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["instanceof",{"_index":1007,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{}}}],["instantiates",{"_index":843,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["instead",{"_index":4387,"title":{},"body":{"license.html":{}}}],["instructor",{"_index":1607,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["insurance",{"_index":1775,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["intact",{"_index":3942,"title":{},"body":{"license.html":{}}}],["intended",{"_index":3641,"title":{},"body":{"license.html":{}}}],["intention",{"_index":3932,"title":{},"body":{"license.html":{}}}],["interaction",{"_index":3803,"title":{},"body":{"license.html":{}}}],["interactive",{"_index":3805,"title":{},"body":{"license.html":{}}}],["intercept",{"_index":1316,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["intercept(request",{"_index":1319,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["interceptor",{"_index":814,"title":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}},"body":{"components/AuthComponent.html":{},"coverage.html":{}}}],["interceptors",{"_index":1314,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["interchange",{"_index":3993,"title":{},"body":{"license.html":{}}}],["interest",{"_index":4195,"title":{},"body":{"license.html":{}}}],["interface",{"_index":0,"title":{"interfaces/AccountDetails.html":{},"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/MutableKeyStore.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{}},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"injectables/AuthService.html":{},"interfaces/Category.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"classes/TokenRegistry.html":{},"coverage.html":{},"license.html":{}}}],["interfaces",{"_index":2,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/MutableKeyStore.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"license.html":{},"overview.html":{}}}],["interfered",{"_index":4069,"title":{},"body":{"license.html":{}}}],["intern",{"_index":1627,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["interpretation",{"_index":4334,"title":{},"body":{"license.html":{}}}],["interpreter",{"_index":3852,"title":{},"body":{"license.html":{}}}],["intimate",{"_index":3866,"title":{},"body":{"license.html":{}}}],["invalid",{"_index":1032,"title":{},"body":{"injectables/AuthService.html":{}}}],["invalidate",{"_index":3963,"title":{},"body":{"license.html":{}}}],["irrevocable",{"_index":3875,"title":{},"body":{"license.html":{}}}],["isdevmode",{"_index":1485,"title":{},"body":{"injectables/LoggingService.html":{}}}],["isdialogopen",{"_index":1298,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["isencryptedkeycheck",{"_index":1035,"title":{},"body":{"injectables/AuthService.html":{}}}],["isencryptedprivatekey",{"_index":2520,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["isencryptedprivatekey(privatekey",{"_index":2557,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["iserrorstate",{"_index":1247,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["iserrorstate(control",{"_index":1248,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["issubmitted",{"_index":1255,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["isvalidkey",{"_index":2521,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["isvalidkey(key",{"_index":2559,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["isvalidkeycheck",{"_index":1029,"title":{},"body":{"injectables/AuthService.html":{}}}],["iswarning",{"_index":1376,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["iswarning(errortracestring",{"_index":1382,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["item",{"_index":3821,"title":{},"body":{"license.html":{}}}],["itself",{"_index":4083,"title":{},"body":{"license.html":{}}}],["jack",{"_index":1542,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["jane",{"_index":3384,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["jembe",{"_index":1689,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["jewel",{"_index":2076,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["jik",{"_index":2020,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["jogoo",{"_index":2287,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["john",{"_index":3376,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["jomvu",{"_index":2327,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["journalist",{"_index":1608,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["jquery",{"_index":3505,"title":{},"body":{"dependencies.html":{}}}],["js",{"_index":3521,"title":{},"body":{"dependencies.html":{}}}],["json.parse(localstorage.getitem(atob('cicada_user",{"_index":2822,"title":{},"body":{"guards/RoleGuard.html":{}}}],["json.stringify(err.error",{"_index":1348,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["jua",{"_index":1728,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["juacali",{"_index":1727,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["juakali",{"_index":1725,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["jualikali",{"_index":1726,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["juice",{"_index":1974,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["juja",{"_index":2285,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["junda",{"_index":2342,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["june",{"_index":3613,"title":{},"body":{"license.html":{}}}],["kabete",{"_index":2268,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kabiro",{"_index":2298,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kafuduni",{"_index":2196,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kahawa",{"_index":1891,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kaimati",{"_index":1888,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kajiado",{"_index":2383,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kakamega",{"_index":2381,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kakuma",{"_index":2354,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kalalani",{"_index":2195,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kali",{"_index":1729,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kaloleni",{"_index":2197,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kamba",{"_index":1886,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kambi",{"_index":2147,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kamongo",{"_index":2158,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kangemi",{"_index":2260,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kanisa",{"_index":1644,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kariobangi",{"_index":2280,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["karma",{"_index":3593,"title":{},"body":{"index.html":{}}}],["kasarani",{"_index":2281,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kasemeni",{"_index":2190,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["katundani",{"_index":2191,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kawangware",{"_index":2263,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kayaba",{"_index":2145,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kayba",{"_index":2146,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kayole",{"_index":2282,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kazi",{"_index":1734,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ke",{"_index":2674,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["kebeba",{"_index":2084,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["keccak",{"_index":3207,"title":{},"body":{"injectables/TransactionService.html":{}}}],["keccak(256",{"_index":3255,"title":{},"body":{"injectables/TransactionService.html":{}}}],["keep",{"_index":3941,"title":{},"body":{"license.html":{}}}],["keki",{"_index":1892,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kenya",{"_index":2675,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["kenyatta",{"_index":2274,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kericho",{"_index":2382,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kernel",{"_index":3846,"title":{},"body":{"license.html":{}}}],["kerosene",{"_index":2140,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kerosine",{"_index":2139,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["key",{"_index":800,"title":{},"body":{"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"classes/CustomValidator.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["key.getkeyid().tohex",{"_index":2600,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["key.isdecrypted",{"_index":2596,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyform",{"_index":779,"title":{},"body":{"components/AuthComponent.html":{}}}],["keyformstub",{"_index":786,"title":{},"body":{"components/AuthComponent.html":{}}}],["keyid",{"_index":2534,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring",{"_index":2576,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["keyring.clear",{"_index":2613,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.getkeysforid(keyid",{"_index":2605,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.load",{"_index":2578,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys",{"_index":2584,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.getforid(keyid",{"_index":2607,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.importkey(privatekey",{"_index":2581,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.keys",{"_index":2583,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.keys[0",{"_index":2585,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.keys[0].getkeyid().tohex",{"_index":2604,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.keys[0].keypacket",{"_index":2598,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.keys[0].keypacket.fingerprint",{"_index":2599,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.publickeys.getforaddress(address",{"_index":2609,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.publickeys.getforid(keyid",{"_index":2606,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.publickeys.getforid(subkeyid",{"_index":2608,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.publickeys.importkey(publickey",{"_index":2580,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.publickeys.keys",{"_index":2582,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.publickeys.removeforid(keyid",{"_index":2611,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.removekeysforid(keyid",{"_index":2610,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.store",{"_index":2579,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keys",{"_index":679,"title":{},"body":{"components/AppComponent.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"license.html":{}}}],["keystore",{"_index":2503,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["khaimati",{"_index":1887,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kiambu",{"_index":2387,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibanda",{"_index":2026,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibandaogo",{"_index":2192,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibandaongo",{"_index":2193,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibera",{"_index":2254,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibira",{"_index":2255,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibra",{"_index":2256,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kidzuvini",{"_index":2194,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kikuyu",{"_index":2290,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kilfi",{"_index":2345,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kilibole",{"_index":2198,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kilifi",{"_index":52,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["kinango",{"_index":2167,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kind",{"_index":3799,"title":{},"body":{"license.html":{}}}],["kinds",{"_index":3632,"title":{},"body":{"license.html":{}}}],["kingston",{"_index":2155,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kingstone",{"_index":2157,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kinyozi",{"_index":1733,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kiosk",{"_index":2027,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kirembe",{"_index":2309,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kisauni",{"_index":2331,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kisii",{"_index":2376,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kisumu",{"_index":2362,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kitabu",{"_index":1634,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kitengela",{"_index":2271,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kitui",{"_index":2355,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kizingo",{"_index":2316,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kmoja",{"_index":2301,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["knitting",{"_index":1735,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["know",{"_index":3661,"title":{},"body":{"license.html":{}}}],["knowingly",{"_index":4234,"title":{},"body":{"license.html":{}}}],["knowledge",{"_index":4243,"title":{},"body":{"license.html":{}}}],["known/publickeys",{"_index":4419,"title":{},"body":{"miscellaneous/variables.html":{}}}],["kobo",{"_index":2887,"title":{},"body":{"components/SettingsComponent.html":{}}}],["kokotoni",{"_index":2249,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["korokocho",{"_index":2156,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["korosho",{"_index":1972,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kra",{"_index":1657,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["krcs",{"_index":1629,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kubeba",{"_index":2099,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kufua",{"_index":1736,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kujenga",{"_index":1732,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kuku",{"_index":1890,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kulima",{"_index":1686,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kunde",{"_index":1889,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kuni",{"_index":2120,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kushona",{"_index":1724,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kusumu",{"_index":2371,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kwale",{"_index":2168,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kwangware",{"_index":2264,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kware",{"_index":2297,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lab",{"_index":1999,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["labor",{"_index":1740,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["labour",{"_index":1691,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["landi",{"_index":2304,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["landlord",{"_index":1713,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["langata",{"_index":2305,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["language",{"_index":3830,"title":{},"body":{"license.html":{}}}],["larger",{"_index":3971,"title":{},"body":{"license.html":{}}}],["last",{"_index":82,"title":{},"body":{"classes/AccountIndex.html":{}}}],["last(5",{"_index":136,"title":{},"body":{"classes/AccountIndex.html":{}}}],["last(numberofaccounts",{"_index":129,"title":{},"body":{"classes/AccountIndex.html":{}}}],["later",{"_index":686,"title":{},"body":{"components/AppComponent.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"license.html":{}}}],["latitude",{"_index":27,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["laundry",{"_index":1741,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["law",{"_index":1816,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["laws",{"_index":3758,"title":{},"body":{"license.html":{}}}],["lawsuit",{"_index":4205,"title":{},"body":{"license.html":{}}}],["lazy",{"_index":3571,"title":{},"body":{"index.html":{}}}],["leader",{"_index":1656,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["leaving",{"_index":1033,"title":{},"body":{"injectables/AuthService.html":{}}}],["lecturer",{"_index":1594,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["legal",{"_index":3690,"title":{},"body":{"license.html":{}}}],["legend",{"_index":285,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"components/AuthComponent.html":{},"modules/AuthModule.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"overview.html":{}}}],["leso",{"_index":2034,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lesser",{"_index":4386,"title":{},"body":{"license.html":{}}}],["lesso",{"_index":2035,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lesson",{"_index":1609,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["level",{"_index":755,"title":{},"body":{"modules/AppModule.html":{}}}],["lgpl.html",{"_index":4390,"title":{},"body":{"license.html":{}}}],["liability",{"_index":4108,"title":{},"body":{"license.html":{}}}],["liable",{"_index":3786,"title":{},"body":{"license.html":{}}}],["libraries",{"_index":3832,"title":{},"body":{"license.html":{}}}],["library",{"_index":2601,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"license.html":{}}}],["license",{"_index":3610,"title":{"license.html":{}},"body":{"license.html":{}}}],["licensed",{"_index":3762,"title":{},"body":{"license.html":{}}}],["licensee",{"_index":3765,"title":{},"body":{"license.html":{}}}],["licensees",{"_index":3767,"title":{},"body":{"license.html":{}}}],["licenses",{"_index":3634,"title":{},"body":{"license.html":{}}}],["licensing",{"_index":4182,"title":{},"body":{"license.html":{}}}],["licensors",{"_index":4121,"title":{},"body":{"license.html":{}}}],["likewise",{"_index":4175,"title":{},"body":{"license.html":{}}}],["likoni",{"_index":2313,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["limit",{"_index":1073,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"license.html":{}}}],["limit).pipe(first()).subscribe(res",{"_index":1135,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["limitation",{"_index":4318,"title":{},"body":{"license.html":{}}}],["limited",{"_index":4306,"title":{},"body":{"license.html":{}}}],["limiting",{"_index":4107,"title":{},"body":{"license.html":{}}}],["limuru",{"_index":2306,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lindi",{"_index":2253,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["line",{"_index":4358,"title":{},"body":{"license.html":{}}}],["lines",{"_index":2025,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["link",{"_index":2830,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{},"coverage.html":{},"license.html":{}}}],["linked",{"_index":3863,"title":{},"body":{"license.html":{}}}],["linking",{"_index":4384,"title":{},"body":{"license.html":{}}}],["linkparams",{"_index":2835,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["list",{"_index":3817,"title":{},"body":{"license.html":{}}}],["literal",{"_index":23,"title":{},"body":{"interfaces/AccountDetails.html":{},"injectables/AuthService.html":{},"interfaces/Token.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}}}],["litigation",{"_index":4202,"title":{},"body":{"license.html":{}}}],["lo",{"_index":1089,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["load",{"_index":401,"title":{},"body":{"components/AccountsComponent.html":{},"components/AppComponent.html":{}}}],["loadchildren",{"_index":768,"title":{},"body":{"modules/AppRoutingModule.html":{},"modules/PagesRoutingModule.html":{}}}],["loaded",{"_index":859,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"index.html":{}}}],["loadevent",{"_index":3007,"title":{},"body":{"injectables/TokenService.html":{}}}],["loading",{"_index":780,"title":{},"body":{"components/AuthComponent.html":{},"index.html":{}}}],["loadkeyring",{"_index":2522,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["loan",{"_index":2010,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["local",{"_index":4335,"title":{},"body":{"license.html":{}}}],["localstorage",{"_index":870,"title":{},"body":{"guards/AuthGuard.html":{}}}],["localstorage.getitem(btoa('cicada_private_key",{"_index":876,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/AuthService.html":{}}}],["localstorage.setitem(btoa('cicada_private_key",{"_index":1040,"title":{},"body":{"injectables/AuthService.html":{}}}],["location",{"_index":16,"title":{},"body":{"interfaces/AccountDetails.html":{},"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{},"injectables/LocationService.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["locations",{"_index":511,"title":{},"body":{"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["locationservice",{"_index":1207,"title":{"injectables/LocationService.html":{}},"body":{"components/CreateAccountComponent.html":{},"injectables/LocationService.html":{},"coverage.html":{}}}],["log",{"_index":972,"title":{},"body":{"injectables/AuthService.html":{}}}],["logerror",{"_index":1377,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["logerror(error",{"_index":1385,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["logger",{"_index":750,"title":{},"body":{"modules/AppModule.html":{},"injectables/LoggingService.html":{},"dependencies.html":{}}}],["loggermodule",{"_index":748,"title":{},"body":{"modules/AppModule.html":{}}}],["loggermodule.forroot",{"_index":754,"title":{},"body":{"modules/AppModule.html":{}}}],["logginginterceptor",{"_index":732,"title":{"interceptors/LoggingInterceptor.html":{}},"body":{"modules/AppModule.html":{},"interceptors/LoggingInterceptor.html":{},"coverage.html":{},"overview.html":{}}}],["loggingservice",{"_index":357,"title":{"injectables/LoggingService.html":{}},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"components/TokensComponent.html":{},"injectables/TransactionService.html":{},"coverage.html":{}}}],["loggingurl",{"_index":4414,"title":{},"body":{"miscellaneous/variables.html":{}}}],["login",{"_index":782,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{}}}],["loginresponse",{"_index":900,"title":{},"body":{"injectables/AuthService.html":{}}}],["loginresponse(o",{"_index":915,"title":{},"body":{"injectables/AuthService.html":{}}}],["loginview",{"_index":901,"title":{},"body":{"injectables/AuthService.html":{}}}],["loglevel",{"_index":4411,"title":{},"body":{"miscellaneous/variables.html":{}}}],["logout",{"_index":902,"title":{},"body":{"injectables/AuthService.html":{},"components/SettingsComponent.html":{}}}],["long",{"_index":3886,"title":{},"body":{"license.html":{}}}],["longitude",{"_index":28,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["loss",{"_index":4325,"title":{},"body":{"license.html":{}}}],["losses",{"_index":4328,"title":{},"body":{"license.html":{}}}],["low",{"_index":1171,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["lower",{"_index":2964,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["lowest",{"_index":170,"title":{},"body":{"classes/AccountIndex.html":{}}}],["lunga",{"_index":2163,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lungalunga",{"_index":2159,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lungu",{"_index":2162,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lutsangani",{"_index":2199,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["m",{"_index":47,"title":{},"body":{"interfaces/AccountDetails.html":{},"injectables/BlockSyncService.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signer.html":{},"miscellaneous/variables.html":{}}}],["m.accountsmodule",{"_index":2768,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["m.adminmodule",{"_index":2772,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["m.authmodule",{"_index":770,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["m.pagesmodule",{"_index":772,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["m.settingsmodule",{"_index":2766,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["m.tokensmodule",{"_index":2770,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["m.transactionsmodule",{"_index":2764,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["maalim",{"_index":1589,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maandazi",{"_index":1924,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maandzi",{"_index":1967,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mabenda",{"_index":1864,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mabesheni",{"_index":2220,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mabuyu",{"_index":1903,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["machakos",{"_index":2378,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["machine",{"_index":3983,"title":{},"body":{"license.html":{}}}],["machungwa",{"_index":1904,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["made",{"_index":4070,"title":{},"body":{"license.html":{}}}],["madewani",{"_index":2216,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["madrasa",{"_index":1638,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maembe",{"_index":1785,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mafuta",{"_index":2124,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["magari",{"_index":2112,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["magogoni",{"_index":2341,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["magongo",{"_index":2324,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mahamri",{"_index":1932,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maharagwe",{"_index":1930,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mahindi",{"_index":1923,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mail",{"_index":4368,"title":{},"body":{"license.html":{}}}],["mailman",{"_index":1658,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["main",{"_index":1579,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maintain",{"_index":4014,"title":{},"body":{"license.html":{}}}],["maize",{"_index":1917,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["majani",{"_index":1784,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["majaoni",{"_index":2339,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["majengo",{"_index":2243,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maji",{"_index":1976,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["major",{"_index":3839,"title":{},"body":{"license.html":{}}}],["makaa",{"_index":2123,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makadara",{"_index":2272,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makanga",{"_index":2113,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["make",{"_index":3645,"title":{},"body":{"license.html":{}}}],["makes",{"_index":3904,"title":{},"body":{"license.html":{}}}],["makina",{"_index":2257,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["making",{"_index":3773,"title":{},"body":{"license.html":{}}}],["makobeni",{"_index":2215,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makonge",{"_index":1806,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makongeni",{"_index":2348,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makueni",{"_index":2374,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makuluni",{"_index":2213,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makupa",{"_index":2319,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makuti",{"_index":1731,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["male",{"_index":2401,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["mali",{"_index":2042,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["malimali",{"_index":2040,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["management",{"_index":2893,"title":{},"body":{"components/SettingsComponent.html":{}}}],["manager",{"_index":1749,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["managing",{"_index":3550,"title":{},"body":{"index.html":{}}}],["manamba",{"_index":2104,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mandazi",{"_index":1921,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mango",{"_index":1877,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mangwe",{"_index":2052,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["manipulation",{"_index":848,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["manner",{"_index":4218,"title":{},"body":{"license.html":{}}}],["manufacturer",{"_index":3709,"title":{},"body":{"license.html":{}}}],["manyani",{"_index":2340,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["march",{"_index":4267,"title":{},"body":{"license.html":{}}}],["mariakani",{"_index":2214,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["marital",{"_index":1622,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["marked",{"_index":3700,"title":{},"body":{"license.html":{}}}],["market",{"_index":2311,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["marketing",{"_index":1810,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["marks",{"_index":4126,"title":{},"body":{"license.html":{}}}],["marondo",{"_index":1966,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["masai",{"_index":2148,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mask",{"_index":1997,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["masks",{"_index":3760,"title":{},"body":{"license.html":{}}}],["mason",{"_index":1752,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mat_dialog_data",{"_index":1291,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["matatu",{"_index":2089,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["matbuttonmodule",{"_index":475,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["matcardmodule",{"_index":477,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["matcheckboxmodule",{"_index":467,"title":{},"body":{"modules/AccountsModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["matcher",{"_index":200,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["matcher.ts",{"_index":1245,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"coverage.html":{}}}],["matcher.ts:5",{"_index":1253,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["matches",{"_index":2818,"title":{},"body":{"guards/RoleGuard.html":{}}}],["matching",{"_index":58,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"classes/W3.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"routes.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}}}],["matdialog",{"_index":1301,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["matdialogmodule",{"_index":2927,"title":{},"body":{"modules/SharedModule.html":{}}}],["matdialogref",{"_index":1306,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["material",{"_index":2706,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signer.html":{},"license.html":{}}}],["material.digest",{"_index":2721,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["materialize",{"_index":1527,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["materially",{"_index":4084,"title":{},"body":{"license.html":{}}}],["matformfieldmodule",{"_index":472,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["math.pow(10",{"_index":2977,"title":{},"body":{"pipes/TokenRatioPipe.html":{}}}],["mathare",{"_index":2283,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mathere",{"_index":2307,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maticonmodule",{"_index":479,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["matinputmodule",{"_index":470,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["matmenumodule",{"_index":2912,"title":{},"body":{"modules/SettingsModule.html":{}}}],["matoke",{"_index":1968,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["matpaginator",{"_index":380,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["matpaginatormodule",{"_index":469,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["matprogressspinnermodule",{"_index":488,"title":{},"body":{"modules/AccountsModule.html":{}}}],["matpseudocheckboxmodule",{"_index":3072,"title":{},"body":{"modules/TokensModule.html":{}}}],["matradiomodule",{"_index":2910,"title":{},"body":{"modules/SettingsModule.html":{}}}],["matress",{"_index":2059,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["matripplemodule",{"_index":486,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["matselectmodule",{"_index":481,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TransactionsModule.html":{}}}],["matsidenavmodule",{"_index":3073,"title":{},"body":{"modules/TokensModule.html":{}}}],["matsnackbar",{"_index":3102,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["matsnackbarmodule",{"_index":493,"title":{},"body":{"modules/AccountsModule.html":{},"modules/TransactionsModule.html":{}}}],["matsort",{"_index":384,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["matsortmodule",{"_index":466,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["mattabledatasource",{"_index":370,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["mattabledatasource(accounts",{"_index":406,"title":{},"body":{"components/AccountsComponent.html":{}}}],["mattabledatasource(actions",{"_index":606,"title":{},"body":{"components/AdminComponent.html":{}}}],["mattabledatasource(this.tokens",{"_index":3060,"title":{},"body":{"components/TokensComponent.html":{}}}],["mattabledatasource(this.trustedusers",{"_index":2883,"title":{},"body":{"components/SettingsComponent.html":{}}}],["mattabledatasource(transactions",{"_index":3334,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["mattablemodule",{"_index":465,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["mattabsmodule",{"_index":484,"title":{},"body":{"modules/AccountsModule.html":{}}}],["mattoolbarmodule",{"_index":3075,"title":{},"body":{"modules/TokensModule.html":{}}}],["mattress",{"_index":2060,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mattresses",{"_index":2061,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["matuga",{"_index":2244,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["matunda",{"_index":1876,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mawe",{"_index":1783,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mayai",{"_index":1939,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mazera",{"_index":2222,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mazeras",{"_index":2221,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mazingira",{"_index":1673,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maziwa",{"_index":1897,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbaazi",{"_index":1922,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbao",{"_index":2121,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbata",{"_index":1918,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbenda",{"_index":1865,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbita",{"_index":2360,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbog",{"_index":1899,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mboga",{"_index":1898,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbonga",{"_index":1823,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbuzi",{"_index":1905,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mc",{"_index":3390,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["mchanga",{"_index":2056,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mchele",{"_index":1875,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mchicha",{"_index":1907,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mchuuzi",{"_index":1920,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mchuzi",{"_index":1919,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["meaning",{"_index":4136,"title":{},"body":{"license.html":{}}}],["means",{"_index":3757,"title":{},"body":{"license.html":{}}}],["measure",{"_index":3912,"title":{},"body":{"license.html":{}}}],["measures",{"_index":3925,"title":{},"body":{"license.html":{}}}],["meat",{"_index":1926,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mechanic",{"_index":1755,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mediaquery",{"_index":641,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["mediaquery.matches",{"_index":1509,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["mediaquerylist",{"_index":664,"title":{},"body":{"components/AppComponent.html":{}}}],["medicine",{"_index":1998,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["medium",{"_index":3937,"title":{},"body":{"license.html":{}}}],["meet",{"_index":3951,"title":{},"body":{"license.html":{}}}],["meets",{"_index":3822,"title":{},"body":{"license.html":{}}}],["mellon",{"_index":1879,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["melon",{"_index":1878,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["menu",{"_index":1517,"title":{},"body":{"directives/MenuToggleDirective.html":{},"license.html":{}}}],["menuselectiondirective",{"_index":331,"title":{"directives/MenuSelectionDirective.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"directives/MenuSelectionDirective.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["menutoggledirective",{"_index":333,"title":{"directives/MenuToggleDirective.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"directives/MenuToggleDirective.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["merchantability",{"_index":4307,"title":{},"body":{"license.html":{}}}],["mere",{"_index":3802,"title":{},"body":{"license.html":{}}}],["mergemap",{"_index":1528,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["merging",{"_index":4191,"title":{},"body":{"license.html":{}}}],["meru",{"_index":2375,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["message",{"_index":1011,"title":{},"body":{"injectables/AuthService.html":{},"components/ErrorDialogComponent.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["message:\\n${message}.\\nstack",{"_index":1398,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["met",{"_index":3877,"title":{},"body":{"license.html":{}}}],["meta",{"_index":37,"title":{"interfaces/Meta.html":{}},"body":{"interfaces/AccountDetails.html":{},"components/AuthComponent.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"interfaces/Signature.html":{},"injectables/TransactionService.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/variables.html":{}}}],["metadata",{"_index":187,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["metal",{"_index":1813,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["metaresponse",{"_index":46,"title":{"interfaces/MetaResponse.html":{}},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"coverage.html":{}}}],["method",{"_index":524,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["methods",{"_index":77,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"classes/UserServiceStub.html":{},"license.html":{}}}],["methodsignature",{"_index":3258,"title":{},"body":{"injectables/TransactionService.html":{}}}],["mfugaji",{"_index":1757,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mganga",{"_index":1989,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mgema",{"_index":1767,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mhogo",{"_index":1927,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miatsani",{"_index":2226,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miatsiani",{"_index":2207,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["middle",{"_index":2965,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["mienzeni",{"_index":2208,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mifugo",{"_index":1940,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["migori",{"_index":2370,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miguneni",{"_index":2230,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mihogo",{"_index":1928,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mikate",{"_index":1914,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mikeka",{"_index":2053,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mikindani",{"_index":2250,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["milk",{"_index":1895,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mill",{"_index":1745,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miloeni",{"_index":2219,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["minheight",{"_index":592,"title":{},"body":{"components/AdminComponent.html":{}}}],["minyenzeni",{"_index":2210,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mioleni",{"_index":2212,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miraa",{"_index":1894,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miritini",{"_index":2325,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["misc",{"_index":2251,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miscellaneous",{"_index":3526,"title":{"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}},"body":{"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}}}],["misrepresentation",{"_index":4117,"title":{},"body":{"license.html":{}}}],["miti",{"_index":1674,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mitumba",{"_index":1933,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mitungi",{"_index":2041,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miwa",{"_index":1931,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miyani",{"_index":2211,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miyenzeni",{"_index":2206,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mjambere",{"_index":2338,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mjengo",{"_index":1787,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mjenzi",{"_index":1756,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mkanyeni",{"_index":2204,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mkate",{"_index":1912,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mkokoteni",{"_index":2106,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mksiti",{"_index":1645,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mkulima",{"_index":1685,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mlola",{"_index":2223,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mlolongo",{"_index":2273,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mnarani",{"_index":2349,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mnazi",{"_index":1906,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mnyenzeni",{"_index":2209,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mocha",{"_index":3507,"title":{},"body":{"dependencies.html":{}}}],["mock",{"_index":535,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["mockbackendinterceptor",{"_index":1521,"title":{"interceptors/MockBackendInterceptor.html":{}},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["mockbackendprovider",{"_index":745,"title":{},"body":{"modules/AppModule.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["mode",{"_index":1489,"title":{},"body":{"injectables/LoggingService.html":{},"license.html":{}}}],["model",{"_index":3998,"title":{},"body":{"license.html":{}}}],["modification",{"_index":3753,"title":{},"body":{"license.html":{}}}],["modifications",{"_index":3825,"title":{},"body":{"license.html":{}}}],["modified",{"_index":3699,"title":{},"body":{"license.html":{}}}],["modifies",{"_index":3955,"title":{},"body":{"license.html":{}}}],["modify",{"_index":3673,"title":{},"body":{"license.html":{}}}],["modifying",{"_index":3792,"title":{},"body":{"license.html":{}}}],["module",{"_index":431,"title":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{}},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/AuthModule.html":{},"components/FooterStubComponent.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"components/SidebarStubComponent.html":{},"modules/TokensModule.html":{},"components/TopbarStubComponent.html":{},"modules/TransactionsModule.html":{},"coverage.html":{},"index.html":{},"overview.html":{}}}],["modules",{"_index":433,"title":{"modules.html":{}},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"index.html":{},"modules.html":{},"overview.html":{}}}],["mogoka",{"_index":1925,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mombasa",{"_index":2312,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["moment",{"_index":862,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["moolb",{"_index":3509,"title":{},"body":{"dependencies.html":{}}}],["more",{"_index":3606,"title":{},"body":{"index.html":{},"license.html":{}}}],["moreover",{"_index":4162,"title":{},"body":{"license.html":{}}}],["moto",{"_index":2125,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["motorbike",{"_index":2109,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["motorist",{"_index":2108,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mover",{"_index":2107,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["movie",{"_index":2054,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mpesa",{"_index":2063,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mpishi",{"_index":1765,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mpsea",{"_index":2062,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ms",{"_index":1455,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["mshomoroni",{"_index":2344,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["msusi",{"_index":1766,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mtambo",{"_index":1746,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mtopanga",{"_index":2337,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mtumba",{"_index":1753,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mtwapa",{"_index":2346,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["muguka",{"_index":1893,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["muhogo",{"_index":1929,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mukuru",{"_index":2143,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["multi",{"_index":764,"title":{},"body":{"modules/AppModule.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["multiple",{"_index":2597,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["mulunguni",{"_index":2225,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mumias",{"_index":2367,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["musician",{"_index":1804,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mutable",{"_index":2572,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["mutablekeystore",{"_index":891,"title":{"interfaces/MutableKeyStore.html":{}},"body":{"injectables/AuthService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"coverage.html":{}}}],["mutablepgpkeystore",{"_index":752,"title":{"classes/MutablePgpKeyStore.html":{}},"body":{"modules/AppModule.html":{},"injectables/AuthService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"coverage.html":{}}}],["mutumba",{"_index":2032,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["muugano",{"_index":2224,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mvita",{"_index":2320,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mvuvi",{"_index":1782,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwache",{"_index":2227,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwakirunge",{"_index":2343,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwalimu",{"_index":1588,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwangani",{"_index":2228,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwangaraba",{"_index":2217,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwashanga",{"_index":2218,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwea",{"_index":2388,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwehavikonje",{"_index":2229,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwiki",{"_index":2295,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwingi",{"_index":2356,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mworoni",{"_index":2333,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["myenzeni",{"_index":2205,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["n",{"_index":35,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["nairobi",{"_index":2144,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nakuru",{"_index":2389,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["name",{"_index":93,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["name(s",{"_index":1236,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["names",{"_index":1237,"title":{},"body":{"components/CreateAccountComponent.html":{},"license.html":{}}}],["namesearchform",{"_index":201,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["namesearchformstub",{"_index":212,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["namesearchloading",{"_index":202,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["namesearchsubmitted",{"_index":203,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["nandi",{"_index":2384,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["narok",{"_index":2390,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nature",{"_index":3968,"title":{},"body":{"license.html":{}}}],["navigate",{"_index":3562,"title":{},"body":{"index.html":{}}}],["navigatedto",{"_index":2831,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["navigation",{"_index":845,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["nazi",{"_index":1910,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ndizi",{"_index":1884,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["necessary",{"_index":4315,"title":{},"body":{"license.html":{}}}],["need",{"_index":3665,"title":{},"body":{"license.html":{}}}],["needed",{"_index":3732,"title":{},"body":{"license.html":{}}}],["network",{"_index":73,"title":{},"body":{"classes/AccountIndex.html":{},"injectables/BlockSyncService.html":{},"interceptors/ErrorInterceptor.html":{},"classes/TokenRegistry.html":{},"index.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["new",{"_index":152,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"injectables/RegistryService.html":{},"components/SettingsComponent.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"index.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["newconversionevent",{"_index":1064,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["newconversionevent(tx",{"_index":1080,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["newtransferevent",{"_index":1065,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["newtransferevent(tx",{"_index":1083,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["next",{"_index":526,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["next.handle(request",{"_index":1424,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["next.handle(request).pipe",{"_index":1328,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["next.handle(request).pipe(tap(event",{"_index":1450,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["ng",{"_index":3568,"title":{},"body":{"index.html":{}}}],["ng2",{"_index":2759,"title":{},"body":{"modules/PagesModule.html":{},"dependencies.html":{}}}],["ngafterviewinit",{"_index":3311,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["ngano",{"_index":1909,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ngform",{"_index":1252,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["ngmodule",{"_index":449,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{}}}],["ngombe",{"_index":1908,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ngombeni",{"_index":2321,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ngong",{"_index":2293,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ngoninit",{"_index":207,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/FooterComponent.html":{},"components/OrganizationComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["nguo",{"_index":1751,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ngx",{"_index":749,"title":{},"body":{"modules/AppModule.html":{},"injectables/LoggingService.html":{},"dependencies.html":{}}}],["ngxlogger",{"_index":1468,"title":{},"body":{"injectables/LoggingService.html":{}}}],["ngxloggerlevel.error",{"_index":4412,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ngxloggerlevel.off",{"_index":4413,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ngómbeni",{"_index":2322,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["njugu",{"_index":1885,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["non",{"_index":3748,"title":{},"body":{"license.html":{}}}],["noncommercially",{"_index":4005,"title":{},"body":{"license.html":{}}}],["none",{"_index":831,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nopasswordmatch",{"_index":1277,"title":{},"body":{"classes/CustomValidator.html":{}}}],["normal",{"_index":3837,"title":{},"body":{"license.html":{}}}],["normally",{"_index":4039,"title":{},"body":{"license.html":{}}}],["nothing",{"_index":4176,"title":{},"body":{"license.html":{}}}],["notice",{"_index":3812,"title":{},"body":{"license.html":{}}}],["notices",{"_index":3808,"title":{},"body":{"license.html":{}}}],["notifies",{"_index":4163,"title":{},"body":{"license.html":{}}}],["notify",{"_index":4158,"title":{},"body":{"license.html":{}}}],["notwithstanding",{"_index":4104,"title":{},"body":{"license.html":{}}}],["now",{"_index":1034,"title":{},"body":{"injectables/AuthService.html":{}}}],["npm",{"_index":3555,"title":{},"body":{"index.html":{}}}],["null",{"_index":1075,"title":{},"body":{"injectables/BlockSyncService.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"directives/RouterLinkDirectiveStub.html":{}}}],["number",{"_index":22,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"interfaces/Action.html":{},"components/AppComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/Signature.html":{},"interfaces/Staff.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/Transaction.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["number(await",{"_index":3271,"title":{},"body":{"injectables/TransactionService.html":{}}}],["number(conversion.fromvalue",{"_index":3237,"title":{},"body":{"injectables/TransactionService.html":{}}}],["number(conversion.tovalue",{"_index":3239,"title":{},"body":{"injectables/TransactionService.html":{}}}],["number(transaction.value",{"_index":3224,"title":{},"body":{"injectables/TransactionService.html":{}}}],["number(value",{"_index":2976,"title":{},"body":{"pipes/TokenRatioPipe.html":{}}}],["numbered",{"_index":4295,"title":{},"body":{"license.html":{}}}],["numberofaccounts",{"_index":133,"title":{},"body":{"classes/AccountIndex.html":{}}}],["nurse",{"_index":1992,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nursery",{"_index":1603,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyalenda",{"_index":2363,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyalgunga",{"_index":2359,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyali",{"_index":2334,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyama",{"_index":1881,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyanya",{"_index":1880,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyanza",{"_index":2357,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyeri",{"_index":2385,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nzora",{"_index":2231,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nzovuni",{"_index":2232,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nzugu",{"_index":1971,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["o",{"_index":917,"title":{},"body":{"injectables/AuthService.html":{}}}],["o.realm",{"_index":1004,"title":{},"body":{"injectables/AuthService.html":{}}}],["objcsv",{"_index":3451,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["object",{"_index":2574,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["obligate",{"_index":4279,"title":{},"body":{"license.html":{}}}],["obligated",{"_index":4020,"title":{},"body":{"license.html":{}}}],["obligations",{"_index":3914,"title":{},"body":{"license.html":{}}}],["observable",{"_index":521,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"guards/AuthGuard.html":{},"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"classes/UserServiceStub.html":{}}}],["observables's",{"_index":540,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["occasionally",{"_index":4004,"title":{},"body":{"license.html":{}}}],["occurred",{"_index":1334,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["occurring",{"_index":4173,"title":{},"body":{"license.html":{}}}],["occurs",{"_index":3717,"title":{},"body":{"license.html":{}}}],["of('hello",{"_index":3300,"title":{},"body":{"classes/TransactionServiceStub.html":{}}}],["of(new",{"_index":2494,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["of(null",{"_index":2413,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["offer",{"_index":3688,"title":{},"body":{"license.html":{}}}],["offered",{"_index":4029,"title":{},"body":{"license.html":{}}}],["offering",{"_index":4008,"title":{},"body":{"license.html":{}}}],["office",{"_index":1578,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["official",{"_index":3827,"title":{},"body":{"license.html":{}}}],["offset",{"_index":1072,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["ohuru",{"_index":2328,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["oil",{"_index":2131,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ok(accounttypes",{"_index":2489,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(actions",{"_index":2449,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(areanamelist",{"_index":2476,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(areatypelist",{"_index":2484,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(categorylist",{"_index":2468,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(genders",{"_index":2491,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(message",{"_index":2458,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(queriedaction",{"_index":2454,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(queriedareaname.name",{"_index":2480,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(queriedareatype.name",{"_index":2488,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(queriedcategory.name",{"_index":2472,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(queriedtoken",{"_index":2464,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(responsebody",{"_index":2493,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(tokens",{"_index":2459,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(transactiontypes",{"_index":2490,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["old",{"_index":2317,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["oldchain:1",{"_index":26,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["olympic",{"_index":2259,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ombeni",{"_index":2323,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["omena",{"_index":1882,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["omeno",{"_index":1969,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["onaddresssearch",{"_index":208,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["once",{"_index":3600,"title":{},"body":{"index.html":{}}}],["onclick",{"_index":2837,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["one",{"_index":3580,"title":{},"body":{"index.html":{},"license.html":{}}}],["oninit",{"_index":186,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/FooterComponent.html":{},"components/OrganizationComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["onions",{"_index":1970,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["onmenuselect",{"_index":1500,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["onmenutoggle",{"_index":1513,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["onnamesearch",{"_index":209,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["onphonesearch",{"_index":210,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["onresize",{"_index":645,"title":{},"body":{"components/AppComponent.html":{}}}],["onresize(e",{"_index":661,"title":{},"body":{"components/AppComponent.html":{}}}],["onsign",{"_index":2687,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["onsign(signature",{"_index":2713,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["onsubmit",{"_index":783,"title":{},"body":{"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["onverify",{"_index":2688,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["onverify(flag",{"_index":2714,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["opendialog",{"_index":1299,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["opendialog(data",{"_index":1303,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["openpgp",{"_index":2575,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/variables.html":{}}}],["openpgp.cleartext.fromtext(digest",{"_index":2723,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["openpgp.key.readarmored(key",{"_index":2591,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["openpgp.key.readarmored(privatekey",{"_index":2594,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["openpgp.keyring",{"_index":2577,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"miscellaneous/variables.html":{}}}],["openpgp.message.fromtext(plaintext",{"_index":2619,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["openpgp.readkey",{"_index":2587,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["openpgp.sign(opts",{"_index":2623,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["openpgp.sign(opts).then((s",{"_index":2733,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["openpgp.signature.readarmored(signature.data).then((sig",{"_index":2722,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["openpgp.verify(opts).then((v",{"_index":2726,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["operate",{"_index":4331,"title":{},"body":{"license.html":{}}}],["operated",{"_index":4012,"title":{},"body":{"license.html":{}}}],["operating",{"_index":3848,"title":{},"body":{"license.html":{}}}],["operation",{"_index":3933,"title":{},"body":{"license.html":{}}}],["option",{"_index":4101,"title":{},"body":{"license.html":{}}}],["optional",{"_index":9,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"directives/PasswordToggleDirective.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"interfaces/Signer.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{}}}],["options",{"_index":3819,"title":{},"body":{"license.html":{}}}],["opts",{"_index":2618,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["oranges",{"_index":1911,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["order",{"_index":4171,"title":{},"body":{"license.html":{}}}],["organisation",{"_index":2670,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["organization",{"_index":2651,"title":{},"body":{"components/OrganizationComponent.html":{},"components/SettingsComponent.html":{},"modules/SettingsRoutingModule.html":{},"license.html":{}}}],["organization'},{'name",{"_index":311,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["organization.component.html",{"_index":2653,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["organization.component.scss",{"_index":2652,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["organizationcomponent",{"_index":310,"title":{"components/OrganizationComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["organizationform",{"_index":2654,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["organizationformstub",{"_index":2655,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["organizations",{"_index":3768,"title":{},"body":{"license.html":{}}}],["origin",{"_index":4118,"title":{},"body":{"license.html":{}}}],["original",{"_index":4119,"title":{},"body":{"license.html":{}}}],["others",{"_index":3667,"title":{},"body":{"license.html":{}}}],["otherwise",{"_index":124,"title":{},"body":{"classes/AccountIndex.html":{},"license.html":{}}}],["out",{"_index":447,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/AuthModule.html":{},"injectables/AuthService.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{},"index.html":{},"license.html":{},"overview.html":{}}}],["outlet",{"_index":860,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["output",{"_index":3881,"title":{},"body":{"license.html":{}}}],["outside",{"_index":3897,"title":{},"body":{"license.html":{}}}],["overview",{"_index":3607,"title":{"overview.html":{}},"body":{"index.html":{},"overview.html":{}}}],["owino",{"_index":2164,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["owned",{"_index":4214,"title":{},"body":{"license.html":{}}}],["owner",{"_index":1561,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"miscellaneous/variables.html":{}}}],["package",{"_index":3479,"title":{"dependencies.html":{}},"body":{}}],["packaged",{"_index":3961,"title":{},"body":{"license.html":{}}}],["packaging",{"_index":3838,"title":{},"body":{"license.html":{}}}],["page",{"_index":694,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["pages",{"_index":2743,"title":{},"body":{"components/PagesComponent.html":{}}}],["pages'},{'name",{"_index":313,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["pages.component",{"_index":2762,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["pages.component.html",{"_index":2745,"title":{},"body":{"components/PagesComponent.html":{}}}],["pages.component.scss",{"_index":2744,"title":{},"body":{"components/PagesComponent.html":{}}}],["pages/accounts/account",{"_index":456,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{}}}],["pages/accounts/accounts",{"_index":452,"title":{},"body":{"modules/AccountsModule.html":{}}}],["pages/accounts/accounts.component",{"_index":454,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{}}}],["pages/accounts/create",{"_index":462,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{}}}],["pages/admin/admin",{"_index":634,"title":{},"body":{"modules/AdminModule.html":{}}}],["pages/admin/admin.component",{"_index":635,"title":{},"body":{"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{}}}],["pages/pages",{"_index":2756,"title":{},"body":{"modules/PagesModule.html":{}}}],["pages/pages.component",{"_index":2757,"title":{},"body":{"modules/PagesModule.html":{}}}],["pages/settings/organization/organization.component",{"_index":2909,"title":{},"body":{"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{}}}],["pages/settings/settings",{"_index":2907,"title":{},"body":{"modules/SettingsModule.html":{}}}],["pages/settings/settings.component",{"_index":2908,"title":{},"body":{"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{}}}],["pages/tokens/token",{"_index":3071,"title":{},"body":{"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{}}}],["pages/tokens/tokens",{"_index":3069,"title":{},"body":{"modules/TokensModule.html":{}}}],["pages/tokens/tokens.component",{"_index":3070,"title":{},"body":{"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{}}}],["pages/transactions/transaction",{"_index":3361,"title":{},"body":{"modules/TransactionsModule.html":{}}}],["pages/transactions/transactions",{"_index":3359,"title":{},"body":{"modules/TransactionsModule.html":{}}}],["pages/transactions/transactions.component",{"_index":3360,"title":{},"body":{"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{}}}],["pages/transactions/transactions.module",{"_index":483,"title":{},"body":{"modules/AccountsModule.html":{}}}],["pagescomponent",{"_index":312,"title":{"components/PagesComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["pagesizeoptions",{"_index":348,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionsComponent.html":{}}}],["pagesmodule",{"_index":2750,"title":{"modules/PagesModule.html":{}},"body":{"modules/PagesModule.html":{},"modules.html":{},"overview.html":{}}}],["pagesroutingmodule",{"_index":2754,"title":{"modules/PagesRoutingModule.html":{}},"body":{"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["paginator",{"_index":349,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["painter",{"_index":1758,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pampers",{"_index":2049,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["papa",{"_index":1862,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["paper",{"_index":4367,"title":{},"body":{"license.html":{}}}],["paraffin",{"_index":2134,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["parafin",{"_index":2136,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["paragraph",{"_index":4148,"title":{},"body":{"license.html":{}}}],["paragraphs",{"_index":4226,"title":{},"body":{"license.html":{}}}],["param",{"_index":155,"title":{},"body":{"classes/AccountIndex.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"guards/RoleGuard.html":{},"classes/TokenRegistry.html":{}}}],["parameters",{"_index":92,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"directives/PasswordToggleDirective.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"interfaces/Signer.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{}}}],["parammap",{"_index":520,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["params",{"_index":530,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"components/TokenDetailsComponent.html":{}}}],["parrafin",{"_index":2135,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["parsedata",{"_index":3449,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["parsedata(data",{"_index":3542,"title":{},"body":{"miscellaneous/functions.html":{}}}],["parseint(urlparts[urlparts.length",{"_index":2499,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["parser",{"_index":3219,"title":{},"body":{"injectables/TransactionService.html":{},"dependencies.html":{},"miscellaneous/variables.html":{}}}],["part",{"_index":3770,"title":{},"body":{"license.html":{}}}],["particular",{"_index":861,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["parties",{"_index":3801,"title":{},"body":{"license.html":{}}}],["parts",{"_index":2038,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["party",{"_index":873,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["party's",{"_index":4193,"title":{},"body":{"license.html":{}}}],["pass",{"_index":2443,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["passphrase",{"_index":1022,"title":{},"body":{"injectables/AuthService.html":{}}}],["password",{"_index":1038,"title":{},"body":{"injectables/AuthService.html":{},"classes/CustomValidator.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"directives/PasswordToggleDirective.html":{},"components/SettingsComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"injectables/TransactionService.html":{},"license.html":{}}}],["password.type",{"_index":2788,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["passwordmatchvalidator",{"_index":1263,"title":{},"body":{"classes/CustomValidator.html":{}}}],["passwordmatchvalidator(control",{"_index":1265,"title":{},"body":{"classes/CustomValidator.html":{}}}],["passwordtoggledirective",{"_index":335,"title":{"directives/PasswordToggleDirective.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"modules/AuthModule.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["pastor",{"_index":1636,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["patent",{"_index":4147,"title":{},"body":{"license.html":{}}}],["patents",{"_index":3735,"title":{},"body":{"license.html":{}}}],["path",{"_index":500,"title":{},"body":{"modules/AccountsRoutingModule.html":{},"modules/AdminRoutingModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsRoutingModule.html":{}}}],["pathmatch",{"_index":502,"title":{},"body":{"modules/AccountsRoutingModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsRoutingModule.html":{}}}],["patience",{"_index":1544,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["pattern",{"_index":3715,"title":{},"body":{"license.html":{}}}],["patternvalidator",{"_index":1264,"title":{},"body":{"classes/CustomValidator.html":{}}}],["patternvalidator(regex",{"_index":1268,"title":{},"body":{"classes/CustomValidator.html":{}}}],["payment",{"_index":4261,"title":{},"body":{"license.html":{}}}],["peanuts",{"_index":1868,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["peddler",{"_index":1770,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["peer",{"_index":4024,"title":{},"body":{"license.html":{}}}],["peers",{"_index":4027,"title":{},"body":{"license.html":{}}}],["peku",{"_index":2200,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["people",{"_index":3578,"title":{},"body":{"index.html":{}}}],["performance",{"_index":4311,"title":{},"body":{"license.html":{}}}],["performing",{"_index":3859,"title":{},"body":{"license.html":{}}}],["perfume",{"_index":2066,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["periurban",{"_index":2393,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["permanently",{"_index":4156,"title":{},"body":{"license.html":{}}}],["permission",{"_index":3691,"title":{},"body":{"license.html":{}}}],["permissions",{"_index":3872,"title":{},"body":{"license.html":{}}}],["permissive",{"_index":3944,"title":{},"body":{"license.html":{}}}],["permit",{"_index":3978,"title":{},"body":{"license.html":{}}}],["permits",{"_index":4138,"title":{},"body":{"license.html":{}}}],["permitted",{"_index":3623,"title":{},"body":{"license.html":{}}}],["perpetuity",{"_index":4073,"title":{},"body":{"license.html":{}}}],["person",{"_index":3545,"title":{},"body":{"miscellaneous/functions.html":{}}}],["personal",{"_index":4037,"title":{},"body":{"license.html":{}}}],["personvalidation",{"_index":3454,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["personvalidation(person",{"_index":3544,"title":{},"body":{"miscellaneous/functions.html":{}}}],["pertinent",{"_index":4277,"title":{},"body":{"license.html":{}}}],["pesa",{"_index":2081,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["petro",{"_index":2138,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["petrol",{"_index":2137,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pgp",{"_index":1026,"title":{},"body":{"injectables/AuthService.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["pgp.js",{"_index":935,"title":{},"body":{"injectables/AuthService.html":{}}}],["pgpsigner",{"_index":2684,"title":{"classes/PGPSigner.html":{}},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"coverage.html":{}}}],["pharmacy",{"_index":2001,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["phone",{"_index":282,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["phonenumber",{"_index":258,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/CreateAccountComponent.html":{}}}],["phonesearchform",{"_index":204,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["phonesearchformstub",{"_index":213,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["phonesearchloading",{"_index":205,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["phonesearchsubmitted",{"_index":206,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["photo",{"_index":1812,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["photocopy",{"_index":1769,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["photographer",{"_index":1789,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["physical",{"_index":3987,"title":{},"body":{"license.html":{}}}],["physically",{"_index":4002,"title":{},"body":{"license.html":{}}}],["pieces",{"_index":3660,"title":{},"body":{"license.html":{}}}],["piki",{"_index":2102,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pikipiki",{"_index":2103,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pilau",{"_index":1936,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pipe",{"_index":2284,"title":{"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{}},"body":{"interceptors/MockBackendInterceptor.html":{},"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["pipe(catcherror(async",{"_index":676,"title":{},"body":{"components/AppComponent.html":{}}}],["pipe(delay(500",{"_index":2416,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["pipe(dematerialize",{"_index":2417,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["pipe(materialize",{"_index":2415,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["pipe(mergemap(handleroute",{"_index":2414,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["pipe({name",{"_index":2975,"title":{},"body":{"pipes/TokenRatioPipe.html":{}}}],["pipes",{"_index":2841,"title":{},"body":{"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{},"overview.html":{}}}],["pipetransform",{"_index":2848,"title":{},"body":{"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{}}}],["pk",{"_index":2729,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["pk.decrypt(password",{"_index":2732,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["pk.isdecrypted",{"_index":2731,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["place",{"_index":4010,"title":{},"body":{"license.html":{}}}],["plaintext",{"_index":2570,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["plastic",{"_index":1677,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["playstation",{"_index":2067,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["please",{"_index":684,"title":{},"body":{"components/AppComponent.html":{},"injectables/AuthService.html":{},"license.html":{}}}],["plumb",{"_index":1762,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["plus",{"_index":4196,"title":{},"body":{"license.html":{}}}],["pointer",{"_index":4359,"title":{},"body":{"license.html":{}}}],["pojo",{"_index":1861,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["police",{"_index":1650,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pombe",{"_index":2048,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pool",{"_index":2050,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["popper.js",{"_index":3514,"title":{},"body":{"dependencies.html":{}}}],["popperjs/core",{"_index":3486,"title":{},"body":{"dependencies.html":{}}}],["populated",{"_index":3601,"title":{},"body":{"index.html":{}}}],["porridge",{"_index":1935,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["portion",{"_index":4032,"title":{},"body":{"license.html":{}}}],["posho",{"_index":1744,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["possesses",{"_index":3999,"title":{},"body":{"license.html":{}}}],["possession",{"_index":3958,"title":{},"body":{"license.html":{}}}],["possibility",{"_index":4333,"title":{},"body":{"license.html":{}}}],["possible",{"_index":4350,"title":{},"body":{"license.html":{}}}],["post",{"_index":2424,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["potatoes",{"_index":1869,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["poultry",{"_index":1866,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["power",{"_index":3927,"title":{},"body":{"license.html":{}}}],["practical",{"_index":3635,"title":{},"body":{"license.html":{}}}],["practice",{"_index":3722,"title":{},"body":{"license.html":{}}}],["preamble",{"_index":3630,"title":{},"body":{"license.html":{}}}],["precise",{"_index":3749,"title":{},"body":{"license.html":{}}}],["precisely",{"_index":3719,"title":{},"body":{"license.html":{}}}],["predecessor",{"_index":4194,"title":{},"body":{"license.html":{}}}],["preferred",{"_index":3824,"title":{},"body":{"license.html":{}}}],["preloadallmodules",{"_index":766,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["preloadingstrategy",{"_index":775,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["prepare",{"_index":2690,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signer.html":{}}}],["prepare(material",{"_index":2703,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["present",{"_index":4290,"title":{},"body":{"license.html":{}}}],["presents",{"_index":3816,"title":{},"body":{"license.html":{}}}],["preservation",{"_index":4112,"title":{},"body":{"license.html":{}}}],["prevent",{"_index":3666,"title":{},"body":{"license.html":{}}}],["prevented",{"_index":4068,"title":{},"body":{"license.html":{}}}],["previous",{"_index":544,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"license.html":{}}}],["price",{"_index":3655,"title":{},"body":{"license.html":{}}}],["primarily",{"_index":4263,"title":{},"body":{"license.html":{}}}],["primary",{"_index":1595,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["printing",{"_index":1760,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["prints",{"_index":105,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["prior",{"_index":4159,"title":{},"body":{"license.html":{}}}],["private",{"_index":253,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"components/OrganizationComponent.html":{},"directives/PasswordToggleDirective.html":{},"components/SettingsComponent.html":{},"components/TokenDetailsComponent.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"license.html":{}}}],["privatekey",{"_index":810,"title":{},"body":{"components/AuthComponent.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"injectables/TransactionService.html":{}}}],["privatekey.decrypt(password",{"_index":2617,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"injectables/TransactionService.html":{}}}],["privatekey.isdecrypted",{"_index":2615,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"injectables/TransactionService.html":{}}}],["privatekey.keypacket.privateparams.d",{"_index":3284,"title":{},"body":{"injectables/TransactionService.html":{}}}],["privatekeyarmored",{"_index":925,"title":{},"body":{"injectables/AuthService.html":{}}}],["privatekeys",{"_index":2620,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["problems",{"_index":3702,"title":{},"body":{"license.html":{}}}],["procedures",{"_index":4063,"title":{},"body":{"license.html":{}}}],["procuring",{"_index":4251,"title":{},"body":{"license.html":{}}}],["produce",{"_index":3851,"title":{},"body":{"license.html":{}}}],["product",{"_index":3988,"title":{},"body":{"license.html":{}}}],["production",{"_index":3587,"title":{},"body":{"index.html":{},"miscellaneous/variables.html":{}}}],["products",{"_index":17,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/Signature.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["professor",{"_index":1615,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["profile",{"_index":1540,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["program",{"_index":3644,"title":{},"body":{"license.html":{}}}],["program's",{"_index":3936,"title":{},"body":{"license.html":{}}}],["programmer",{"_index":1790,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["programming",{"_index":1761,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["programs",{"_index":3653,"title":{},"body":{"license.html":{}}}],["programsif",{"_index":4347,"title":{},"body":{"license.html":{}}}],["progress...show",{"_index":692,"title":{},"body":{"components/AppComponent.html":{}}}],["prohibit",{"_index":3721,"title":{},"body":{"license.html":{}}}],["prohibiting",{"_index":3923,"title":{},"body":{"license.html":{}}}],["prohibits",{"_index":4258,"title":{},"body":{"license.html":{}}}],["project",{"_index":3551,"title":{},"body":{"index.html":{}}}],["prominent",{"_index":3820,"title":{},"body":{"license.html":{}}}],["prominently",{"_index":3811,"title":{},"body":{"license.html":{}}}],["promise",{"_index":113,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"guards/RoleGuard.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"miscellaneous/functions.html":{}}}],["promise((resolve",{"_index":980,"title":{},"body":{"injectables/AuthService.html":{}}}],["promise(async",{"_index":1000,"title":{},"body":{"injectables/AuthService.html":{}}}],["propagate",{"_index":3781,"title":{},"body":{"license.html":{}}}],["propagating",{"_index":4179,"title":{},"body":{"license.html":{}}}],["propagation",{"_index":3793,"title":{},"body":{"license.html":{}}}],["properties",{"_index":8,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"injectables/LoggingService.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"injectables/RegistryService.html":{},"directives/RouterLinkDirectiveStub.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"interfaces/Signature.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"classes/W3.html":{}}}],["property",{"_index":4038,"title":{},"body":{"license.html":{}}}],["proprietary",{"_index":3745,"title":{},"body":{"license.html":{}}}],["protect",{"_index":3663,"title":{},"body":{"license.html":{}}}],["protecting",{"_index":3713,"title":{},"body":{"license.html":{}}}],["protection",{"_index":3693,"title":{},"body":{"license.html":{}}}],["protocols",{"_index":4089,"title":{},"body":{"license.html":{}}}],["protractor",{"_index":3596,"title":{},"body":{"index.html":{}}}],["prove",{"_index":4312,"title":{},"body":{"license.html":{}}}],["provide",{"_index":762,"title":{},"body":{"modules/AppModule.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["provided",{"_index":3815,"title":{},"body":{"license.html":{}}}],["providedin",{"_index":874,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"injectables/ErrorDialogService.html":{},"injectables/LocationService.html":{},"injectables/LoggingService.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["provider",{"_index":2860,"title":{},"body":{"classes/Settings.html":{},"classes/W3.html":{}}}],["providers",{"_index":437,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{},"overview.html":{}}}],["provides",{"_index":65,"title":{},"body":{"classes/AccountIndex.html":{},"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"classes/TokenRegistry.html":{}}}],["provision",{"_index":3730,"title":{},"body":{"license.html":{}}}],["provisionally",{"_index":4153,"title":{},"body":{"license.html":{}}}],["proxy",{"_index":4299,"title":{},"body":{"license.html":{}}}],["proxy's",{"_index":4301,"title":{},"body":{"license.html":{}}}],["pry",{"_index":1586,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pub",{"_index":2079,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["public",{"_index":78,"title":{},"body":{"classes/AccountIndex.html":{},"components/AppComponent.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"classes/TokenRegistry.html":{},"license.html":{}}}],["publicity",{"_index":4120,"title":{},"body":{"license.html":{}}}],["publickey",{"_index":2552,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["publickey.getkeyid().tohex",{"_index":2612,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["publickeys",{"_index":688,"title":{},"body":{"components/AppComponent.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["publickeysurl",{"_index":4417,"title":{},"body":{"miscellaneous/variables.html":{}}}],["publicly",{"_index":4091,"title":{},"body":{"license.html":{}}}],["publish",{"_index":3940,"title":{},"body":{"license.html":{}}}],["published",{"_index":4296,"title":{},"body":{"license.html":{}}}],["pump",{"_index":547,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["purpose",{"_index":3738,"title":{},"body":{"license.html":{}}}],["purposes",{"_index":4042,"title":{},"body":{"license.html":{}}}],["pursuant",{"_index":4248,"title":{},"body":{"license.html":{}}}],["put",{"_index":2571,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["qkvhsu46vknbukqnclzfulnjt046my4wdqpftufjtdphyxjuzxnlbkbob3rtywlslmnvbq0krk46s3vydmkgs3jhbmpjdqpooktyyw5qyztldxj0ozs7dqpuruw7vflqpunftew6njkyntazmzq5ode5ng0kru5eolzdqvjedqo",{"_index":3423,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["qualify",{"_index":4168,"title":{},"body":{"license.html":{}}}],["quality",{"_index":4310,"title":{},"body":{"license.html":{}}}],["queriedaction",{"_index":2450,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["queriedaction.approval",{"_index":2455,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["queriedareaname",{"_index":2477,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["queriedareatype",{"_index":2485,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["queriedcategory",{"_index":2469,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["queriedtoken",{"_index":2460,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["querying",{"_index":70,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["queryparams",{"_index":2826,"title":{},"body":{"guards/RoleGuard.html":{}}}],["quot;false"",{"_index":126,"title":{},"body":{"classes/AccountIndex.html":{}}}],["quot;true"",{"_index":106,"title":{},"body":{"classes/AccountIndex.html":{}}}],["r",{"_index":1002,"title":{},"body":{"injectables/AuthService.html":{},"injectables/TransactionService.html":{}}}],["raibai",{"_index":2352,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["rangala",{"_index":2365,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ratio.pipe",{"_index":2926,"title":{},"body":{"modules/SharedModule.html":{}}}],["ratio.pipe.ts",{"_index":2972,"title":{},"body":{"pipes/TokenRatioPipe.html":{},"coverage.html":{}}}],["ratio.pipe.ts:5",{"_index":2974,"title":{},"body":{"pipes/TokenRatioPipe.html":{}}}],["rcu",{"_index":2671,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["reached",{"_index":683,"title":{},"body":{"components/AppComponent.html":{}}}],["reactiveformsmodule",{"_index":491,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AuthModule.html":{},"modules/SettingsModule.html":{}}}],["read",{"_index":4388,"title":{},"body":{"license.html":{}}}],["readable",{"_index":3984,"title":{},"body":{"license.html":{}}}],["readcsv",{"_index":3450,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["readcsv(input",{"_index":3543,"title":{},"body":{"miscellaneous/functions.html":{}}}],["readily",{"_index":4236,"title":{},"body":{"license.html":{}}}],["reading",{"_index":4094,"title":{},"body":{"license.html":{}}}],["readonly",{"_index":527,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["ready",{"_index":3728,"title":{},"body":{"license.html":{}}}],["readystate",{"_index":642,"title":{},"body":{"components/AppComponent.html":{},"injectables/BlockSyncService.html":{}}}],["readystateelements",{"_index":1104,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["readystateelements.network",{"_index":1122,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["readystateprocessor",{"_index":1066,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["readystateprocessor(settings",{"_index":1085,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["readystatetarget",{"_index":643,"title":{},"body":{"components/AppComponent.html":{},"injectables/BlockSyncService.html":{}}}],["realm",{"_index":999,"title":{},"body":{"injectables/AuthService.html":{}}}],["reason",{"_index":4246,"title":{},"body":{"license.html":{}}}],["reasonable",{"_index":4000,"title":{},"body":{"license.html":{}}}],["receipt",{"_index":4166,"title":{},"body":{"license.html":{}}}],["receive",{"_index":3658,"title":{},"body":{"license.html":{}}}],["received",{"_index":3681,"title":{},"body":{"license.html":{}}}],["receives",{"_index":4184,"title":{},"body":{"license.html":{}}}],["receiving",{"_index":4253,"title":{},"body":{"license.html":{}}}],["recently",{"_index":132,"title":{},"body":{"classes/AccountIndex.html":{}}}],["receptionist",{"_index":1759,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["recipient",{"_index":1185,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"license.html":{}}}],["recipient's",{"_index":4244,"title":{},"body":{"license.html":{}}}],["recipientaddress",{"_index":3195,"title":{},"body":{"injectables/TransactionService.html":{}}}],["recipientbloxberglink",{"_index":3093,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["recipients",{"_index":3678,"title":{},"body":{"license.html":{}}}],["reclaim",{"_index":1535,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["reclamation",{"_index":2400,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["recognized",{"_index":3828,"title":{},"body":{"license.html":{}}}],["recommend",{"_index":1054,"title":{},"body":{"injectables/AuthService.html":{}}}],["recycling",{"_index":1681,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["red",{"_index":1604,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["redcross",{"_index":1628,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["redirectto",{"_index":501,"title":{},"body":{"modules/AccountsRoutingModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsRoutingModule.html":{}}}],["redistribute",{"_index":4353,"title":{},"body":{"license.html":{}}}],["reference",{"_index":3609,"title":{},"body":{"index.html":{}}}],["referrer",{"_index":1224,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["referring",{"_index":3654,"title":{},"body":{"license.html":{}}}],["refers",{"_index":3756,"title":{},"body":{"license.html":{}}}],["refrain",{"_index":4281,"title":{},"body":{"license.html":{}}}],["refreshpaginator",{"_index":354,"title":{},"body":{"components/AccountsComponent.html":{}}}],["regard",{"_index":4100,"title":{},"body":{"license.html":{}}}],["regardless",{"_index":3960,"title":{},"body":{"license.html":{}}}],["regenerate",{"_index":3870,"title":{},"body":{"license.html":{}}}],["regex",{"_index":1272,"title":{},"body":{"classes/CustomValidator.html":{}}}],["regex.test(control.value",{"_index":1279,"title":{},"body":{"classes/CustomValidator.html":{}}}],["regexp",{"_index":1269,"title":{},"body":{"classes/CustomValidator.html":{}}}],["registered",{"_index":71,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["registers",{"_index":101,"title":{},"body":{"classes/AccountIndex.html":{}}}],["registration",{"_index":107,"title":{},"body":{"classes/AccountIndex.html":{}}}],["registry",{"_index":68,"title":{},"body":{"classes/AccountIndex.html":{},"injectables/RegistryService.html":{},"classes/Settings.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"classes/W3.html":{},"miscellaneous/variables.html":{}}}],["registry.ts",{"_index":2980,"title":{},"body":{"classes/TokenRegistry.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["registry.ts:22",{"_index":2984,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registry.ts:24",{"_index":2985,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registry.ts:26",{"_index":2983,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registry.ts:57",{"_index":2987,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registry.ts:75",{"_index":2994,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registry.ts:91",{"_index":2998,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registryaddress",{"_index":4427,"title":{},"body":{"miscellaneous/variables.html":{}}}],["registryservice",{"_index":1069,"title":{"injectables/RegistryService.html":{}},"body":{"injectables/BlockSyncService.html":{},"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"coverage.html":{}}}],["registryservice.getregistry",{"_index":3020,"title":{},"body":{"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["reinstated",{"_index":4152,"title":{},"body":{"license.html":{}}}],["reject",{"_index":981,"title":{},"body":{"injectables/AuthService.html":{}}}],["reject(error",{"_index":984,"title":{},"body":{"injectables/AuthService.html":{}}}],["rejected",{"_index":969,"title":{},"body":{"injectables/AuthService.html":{}}}],["relationship",{"_index":3898,"title":{},"body":{"license.html":{}}}],["released",{"_index":3649,"title":{},"body":{"license.html":{}}}],["relevant",{"_index":3953,"title":{},"body":{"license.html":{}}}],["relicensing",{"_index":4139,"title":{},"body":{"license.html":{}}}],["religious",{"_index":1640,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["religous",{"_index":1639,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["reload",{"_index":3565,"title":{},"body":{"index.html":{}}}],["relying",{"_index":4235,"title":{},"body":{"license.html":{}}}],["remain",{"_index":4019,"title":{},"body":{"license.html":{}}}],["remains",{"_index":3647,"title":{},"body":{"license.html":{}}}],["remarks",{"_index":154,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["removal",{"_index":4103,"title":{},"body":{"license.html":{}}}],["remove",{"_index":4102,"title":{},"body":{"license.html":{}}}],["removekeysforid",{"_index":2523,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["removekeysforid(keyid",{"_index":2562,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["removepublickey",{"_index":2524,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["removepublickey(publickey",{"_index":2564,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["removepublickeyforid",{"_index":2525,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["removepublickeyforid(keyid",{"_index":2566,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["removespecialchar",{"_index":3444,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["removespecialchar(str",{"_index":3540,"title":{},"body":{"miscellaneous/functions.html":{}}}],["rename",{"_index":974,"title":{},"body":{"injectables/AuthService.html":{}}}],["render",{"_index":3747,"title":{},"body":{"license.html":{}}}],["rendered",{"_index":4326,"title":{},"body":{"license.html":{}}}],["renderer",{"_index":1503,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["renderer2",{"_index":1504,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["repair",{"_index":1742,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["replaysubject",{"_index":536,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["represent",{"_index":4060,"title":{},"body":{"license.html":{}}}],["represents",{"_index":866,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["request",{"_index":1323,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["request.clone({headers",{"_index":1422,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{}}}],["request.headers.set('authorization",{"_index":1423,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{}}}],["request.method",{"_index":1453,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["request.urlwithparams",{"_index":1454,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["requesting",{"_index":1018,"title":{},"body":{"injectables/AuthService.html":{}}}],["requests",{"_index":2445,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["require",{"_index":2672,"title":{},"body":{"components/OrganizationComponent.html":{},"license.html":{}}}],["require('@src/assets/js/block",{"_index":148,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["require('openpgp",{"_index":2712,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"miscellaneous/variables.html":{}}}],["require('vcard",{"_index":3218,"title":{},"body":{"injectables/TransactionService.html":{},"miscellaneous/variables.html":{}}}],["required",{"_index":283,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["requirement",{"_index":3954,"title":{},"body":{"license.html":{}}}],["requirements",{"_index":4022,"title":{},"body":{"license.html":{}}}],["requires",{"_index":102,"title":{},"body":{"classes/AccountIndex.html":{},"license.html":{}}}],["requiring",{"_index":3772,"title":{},"body":{"license.html":{}}}],["res",{"_index":272,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["res.ok",{"_index":1053,"title":{},"body":{"injectables/AuthService.html":{}}}],["res.status",{"_index":1056,"title":{},"body":{"injectables/AuthService.html":{}}}],["res.text",{"_index":1057,"title":{},"body":{"injectables/AuthService.html":{}}}],["researcher",{"_index":1614,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["resend",{"_index":3153,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["reserve",{"_index":1547,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenServiceStub.html":{},"miscellaneous/variables.html":{}}}],["reserveratio",{"_index":1560,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"miscellaneous/variables.html":{}}}],["reserves",{"_index":1554,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"miscellaneous/variables.html":{}}}],["reset",{"_index":446,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{},"overview.html":{}}}],["resettransactionslist",{"_index":3174,"title":{},"body":{"injectables/TransactionService.html":{}}}],["resize",{"_index":697,"title":{},"body":{"components/AppComponent.html":{}}}],["resolve",{"_index":1001,"title":{},"body":{"injectables/AuthService.html":{}}}],["resolve(false",{"_index":1023,"title":{},"body":{"injectables/AuthService.html":{}}}],["resolve(true",{"_index":987,"title":{},"body":{"injectables/AuthService.html":{}}}],["resolved",{"_index":4049,"title":{},"body":{"license.html":{}}}],["resource",{"_index":1357,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["respect",{"_index":3674,"title":{},"body":{"license.html":{}}}],["response",{"_index":1340,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["responsebody",{"_index":2495,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["responsibilities",{"_index":979,"title":{},"body":{"injectables/AuthService.html":{},"license.html":{}}}],["responsible",{"_index":4185,"title":{},"body":{"license.html":{}}}],["restrict",{"_index":3737,"title":{},"body":{"license.html":{}}}],["restricting",{"_index":3924,"title":{},"body":{"license.html":{}}}],["restriction",{"_index":4137,"title":{},"body":{"license.html":{}}}],["restrictions",{"_index":4134,"title":{},"body":{"license.html":{}}}],["result",{"_index":57,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"classes/W3.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"routes.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}}}],["resulting",{"_index":3775,"title":{},"body":{"license.html":{}}}],["results",{"_index":59,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"classes/W3.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"routes.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}}}],["retail",{"_index":2047,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["retains",{"_index":4076,"title":{},"body":{"license.html":{}}}],["return",{"_index":134,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AdminComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"classes/UserServiceStub.html":{},"license.html":{}}}],["returned",{"_index":1338,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["returns",{"_index":112,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{}}}],["returnurl",{"_index":2827,"title":{},"body":{"guards/RoleGuard.html":{}}}],["reverse",{"_index":3155,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["reversetransaction",{"_index":3097,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["reviewing",{"_index":4338,"title":{},"body":{"license.html":{}}}],["revised",{"_index":4288,"title":{},"body":{"license.html":{}}}],["rewards",{"_index":2399,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ribe",{"_index":2353,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["right",{"_index":4071,"title":{},"body":{"license.html":{}}}],["rights",{"_index":3664,"title":{},"body":{"license.html":{}}}],["risk",{"_index":4309,"title":{},"body":{"license.html":{}}}],["road",{"_index":2165,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["role",{"_index":508,"title":{},"body":{"interfaces/Action.html":{},"components/AdminComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["roleguard",{"_index":2814,"title":{"guards/RoleGuard.html":{}},"body":{"guards/RoleGuard.html":{},"coverage.html":{}}}],["roles",{"_index":2820,"title":{},"body":{"guards/RoleGuard.html":{}}}],["rom",{"_index":4079,"title":{},"body":{"license.html":{}}}],["root",{"_index":638,"title":{},"body":{"components/AppComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"injectables/ErrorDialogService.html":{},"injectables/LocationService.html":{},"injectables/LoggingService.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["root'},{'name",{"_index":299,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["route",{"_index":515,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"guards/AuthGuard.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"components/TokenDetailsComponent.html":{},"coverage.html":{},"index.html":{}}}],["route.data.roles",{"_index":2823,"title":{},"body":{"guards/RoleGuard.html":{}}}],["route.data.roles.indexof(currentuser.role",{"_index":2824,"title":{},"body":{"guards/RoleGuard.html":{}}}],["router",{"_index":218,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"guards/RoleGuard.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{}}}],["routerlink",{"_index":338,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["routerlinkdirectivestub",{"_index":337,"title":{"directives/RouterLinkDirectiveStub.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["routermodule",{"_index":499,"title":{},"body":{"modules/AccountsRoutingModule.html":{},"modules/AdminRoutingModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsRoutingModule.html":{}}}],["routermodule.forchild(routes",{"_index":504,"title":{},"body":{"modules/AccountsRoutingModule.html":{},"modules/AdminRoutingModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsRoutingModule.html":{}}}],["routermodule.forroot(routes",{"_index":774,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["routerstatesnapshot",{"_index":852,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["routes",{"_index":498,"title":{"routes.html":{}},"body":{"modules/AccountsRoutingModule.html":{},"modules/AdminRoutingModule.html":{},"modules/AppRoutingModule.html":{},"guards/AuthGuard.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesRoutingModule.html":{},"guards/RoleGuard.html":{},"modules/SettingsRoutingModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsRoutingModule.html":{},"overview.html":{},"routes.html":{}}}],["route}.\\n${error.message",{"_index":1410,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["route}.\\n${error.message}.\\nstatus",{"_index":1406,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["routing.module",{"_index":453,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["routing.module.ts",{"_index":497,"title":{},"body":{"modules/AccountsRoutingModule.html":{},"modules/AdminRoutingModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsRoutingModule.html":{}}}],["row",{"_index":571,"title":{},"body":{"components/AdminComponent.html":{}}}],["row.isexpanded",{"_index":615,"title":{},"body":{"components/AdminComponent.html":{}}}],["royalty",{"_index":4200,"title":{},"body":{"license.html":{}}}],["rsv",{"_index":1532,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/TokenServiceStub.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["rubbish",{"_index":1671,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ruben",{"_index":2153,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["rueben",{"_index":2154,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ruiru",{"_index":2261,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["rules",{"_index":4088,"title":{},"body":{"license.html":{}}}],["run",{"_index":3554,"title":{},"body":{"index.html":{},"license.html":{}}}],["running",{"_index":3588,"title":{},"body":{"index.html":{},"license.html":{}}}],["runs",{"_index":3849,"title":{},"body":{"license.html":{}}}],["rural",{"_index":2372,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["rxjs",{"_index":542,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"guards/AuthGuard.html":{},"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"classes/UserServiceStub.html":{},"dependencies.html":{}}}],["rxjs/operators",{"_index":392,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"components/TokenDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["s",{"_index":928,"title":{},"body":{"injectables/AuthService.html":{},"injectables/TransactionService.html":{}}}],["s.signature",{"_index":2737,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["sabuni",{"_index":1990,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sad",{"_index":693,"title":{},"body":{"components/AppComponent.html":{}}}],["safe",{"_index":2843,"title":{},"body":{"pipes/SafePipe.html":{}}}],["safepipe",{"_index":2840,"title":{"pipes/SafePipe.html":{}},"body":{"pipes/SafePipe.html":{},"modules/SharedModule.html":{},"coverage.html":{},"overview.html":{}}}],["safest",{"_index":4355,"title":{},"body":{"license.html":{}}}],["sake",{"_index":3698,"title":{},"body":{"license.html":{}}}],["sale",{"_index":4208,"title":{},"body":{"license.html":{}}}],["sales",{"_index":1771,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["salon",{"_index":1764,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["saloon",{"_index":1772,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["samaki",{"_index":1872,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sambusa",{"_index":1946,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["same",{"_index":3679,"title":{},"body":{"license.html":{}}}],["samosa",{"_index":1870,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sanitizer",{"_index":2850,"title":{},"body":{"pipes/SafePipe.html":{}}}],["sarafu",{"_index":53,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"classes/TokenRegistry.html":{},"components/TransactionDetailsComponent.html":{},"miscellaneous/variables.html":{}}}],["sarafutoken",{"_index":3030,"title":{},"body":{"injectables/TokenService.html":{}}}],["sarafutoken.methods.balanceof(address).call",{"_index":3033,"title":{},"body":{"injectables/TokenService.html":{}}}],["satisfy",{"_index":4021,"title":{},"body":{"license.html":{}}}],["sausages",{"_index":1916,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["savings",{"_index":2007,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["saying",{"_index":4017,"title":{},"body":{"license.html":{}}}],["scaffolding",{"_index":3567,"title":{},"body":{"index.html":{}}}],["scan",{"_index":1067,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["scan(settings",{"_index":1088,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["scanfilter",{"_index":2853,"title":{},"body":{"classes/Settings.html":{},"classes/W3.html":{}}}],["sch",{"_index":1584,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["schemas",{"_index":3497,"title":{},"body":{"dependencies.html":{}}}],["school",{"_index":1585,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["science",{"_index":1631,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["scope",{"_index":4257,"title":{},"body":{"license.html":{}}}],["scrap",{"_index":1668,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["script",{"_index":3586,"title":{},"body":{"index.html":{}}}],["scripts",{"_index":3855,"title":{},"body":{"license.html":{}}}],["search",{"_index":192,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsRoutingModule.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["search'},{'name",{"_index":295,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["search.component",{"_index":492,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{}}}],["search.component.html",{"_index":196,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.scss",{"_index":194,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts",{"_index":184,"title":{},"body":{"components/AccountSearchComponent.html":{},"coverage.html":{}}}],["search.component.ts:16",{"_index":232,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:17",{"_index":234,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:18",{"_index":233,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:19",{"_index":235,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:20",{"_index":237,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:21",{"_index":236,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:22",{"_index":226,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:23",{"_index":230,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:24",{"_index":229,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:25",{"_index":219,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:33",{"_index":220,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:45",{"_index":239,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:46",{"_index":241,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:47",{"_index":243,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:49",{"_index":223,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:57",{"_index":224,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:71",{"_index":222,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search/account",{"_index":183,"title":{},"body":{"components/AccountSearchComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"coverage.html":{}}}],["secondarily",{"_index":3785,"title":{},"body":{"license.html":{}}}],["secondary",{"_index":1596,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["secp256k1",{"_index":3216,"title":{},"body":{"injectables/TransactionService.html":{}}}],["secp256k1.ecdsasign(txmsg",{"_index":3283,"title":{},"body":{"injectables/TransactionService.html":{}}}],["secretary",{"_index":1776,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["section",{"_index":3903,"title":{},"body":{"license.html":{}}}],["sections",{"_index":3982,"title":{},"body":{"license.html":{}}}],["secure",{"_index":2896,"title":{},"body":{"components/SettingsComponent.html":{}}}],["security",{"_index":1774,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["see",{"_index":3598,"title":{},"body":{"index.html":{},"license.html":{}}}],["seedling",{"_index":1679,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["seedlings",{"_index":1680,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["seigei",{"_index":2166,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["selection.directive",{"_index":2924,"title":{},"body":{"modules/SharedModule.html":{}}}],["selection.directive.ts",{"_index":1498,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"coverage.html":{}}}],["selection.directive.ts:20",{"_index":1506,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["selection.directive.ts:6",{"_index":1505,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["selector",{"_index":190,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["sell",{"_index":4223,"title":{},"body":{"license.html":{}}}],["selling",{"_index":3422,"title":{},"body":{"classes/UserServiceStub.html":{},"license.html":{}}}],["semiconductor",{"_index":3759,"title":{},"body":{"license.html":{}}}],["send",{"_index":811,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{}}}],["senddebuglevelmessage",{"_index":1460,"title":{},"body":{"injectables/LoggingService.html":{}}}],["senddebuglevelmessage(message",{"_index":1470,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sender",{"_index":1184,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["senderaddress",{"_index":3194,"title":{},"body":{"injectables/TransactionService.html":{}}}],["senderbloxberglink",{"_index":3094,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["senderrorlevelmessage",{"_index":1461,"title":{},"body":{"injectables/LoggingService.html":{}}}],["senderrorlevelmessage(message",{"_index":1472,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendfatallevelmessage",{"_index":1462,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendfatallevelmessage(message",{"_index":1474,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendinfolevelmessage",{"_index":1463,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendinfolevelmessage(message",{"_index":1476,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendloglevelmessage",{"_index":1464,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendloglevelmessage(message",{"_index":1478,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendresponse",{"_index":903,"title":{},"body":{"injectables/AuthService.html":{}}}],["sendresponse(hobaresponseencoded",{"_index":920,"title":{},"body":{"injectables/AuthService.html":{}}}],["sendtracelevelmessage",{"_index":1465,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendtracelevelmessage(message",{"_index":1480,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendwarnlevelmessage",{"_index":1466,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendwarnlevelmessage(message",{"_index":1482,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sentencesforwarninglogging",{"_index":1374,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["separable",{"_index":4031,"title":{},"body":{"license.html":{}}}],["separate",{"_index":978,"title":{},"body":{"injectables/AuthService.html":{},"license.html":{}}}],["separately",{"_index":3964,"title":{},"body":{"license.html":{}}}],["seremala",{"_index":1773,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["serial",{"_index":2995,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["server",{"_index":2407,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"index.html":{},"license.html":{}}}],["serverloggingurl",{"_index":759,"title":{},"body":{"modules/AppModule.html":{}}}],["serverloglevel",{"_index":757,"title":{},"body":{"modules/AppModule.html":{},"miscellaneous/variables.html":{}}}],["serves",{"_index":3841,"title":{},"body":{"license.html":{}}}],["service",{"_index":844,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"classes/TokenServiceStub.html":{},"classes/TransactionServiceStub.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["servicing",{"_index":4316,"title":{},"body":{"license.html":{}}}],["session",{"_index":977,"title":{},"body":{"injectables/AuthService.html":{}}}],["sessionlogincount",{"_index":892,"title":{},"body":{"injectables/AuthService.html":{}}}],["sessionstorage.getitem(btoa('cicada_session_token",{"_index":946,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/HttpConfigInterceptor.html":{}}}],["sessionstorage.removeitem(btoa('cicada_session_token",{"_index":1046,"title":{},"body":{"injectables/AuthService.html":{}}}],["sessionstorage.setitem(btoa('cicada_session_token",{"_index":986,"title":{},"body":{"injectables/AuthService.html":{}}}],["sessiontoken",{"_index":893,"title":{},"body":{"injectables/AuthService.html":{}}}],["sessiontokenresult",{"_index":1005,"title":{},"body":{"injectables/AuthService.html":{}}}],["set",{"_index":539,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"index.html":{}}}],["setconversion",{"_index":3175,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["setconversion(conversion",{"_index":3189,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["setkey",{"_index":802,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{}}}],["setkey(privatekeyarmored",{"_index":923,"title":{},"body":{"injectables/AuthService.html":{}}}],["setparammap",{"_index":523,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["setparammap(params",{"_index":537,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["setstate",{"_index":904,"title":{},"body":{"injectables/AuthService.html":{}}}],["setstate(s",{"_index":926,"title":{},"body":{"injectables/AuthService.html":{}}}],["setting",{"_index":943,"title":{},"body":{"injectables/AuthService.html":{}}}],["settings",{"_index":1077,"title":{"classes/Settings.html":{}},"body":{"injectables/BlockSyncService.html":{},"components/OrganizationComponent.html":{},"modules/PagesRoutingModule.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"classes/W3.html":{},"coverage.html":{}}}],["settings'},{'name",{"_index":315,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["settings(this.scan",{"_index":1103,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.component.html",{"_index":2865,"title":{},"body":{"components/SettingsComponent.html":{}}}],["settings.component.scss",{"_index":2864,"title":{},"body":{"components/SettingsComponent.html":{}}}],["settings.registry",{"_index":1109,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.registry.load",{"_index":1123,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.registry.onload",{"_index":1117,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.scanfilter(settings",{"_index":1161,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.txhelper",{"_index":1111,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.txhelper.onconversion",{"_index":1115,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.txhelper.ontransfer",{"_index":1113,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.txhelper.processreceipt(m.data",{"_index":1131,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.w3.engine",{"_index":1107,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.w3.provider",{"_index":1105,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settingscomponent",{"_index":314,"title":{"components/SettingsComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["settingsmodule",{"_index":2901,"title":{"modules/SettingsModule.html":{}},"body":{"modules/SettingsModule.html":{},"modules.html":{},"overview.html":{}}}],["settingsroutingmodule",{"_index":2905,"title":{"modules/SettingsRoutingModule.html":{}},"body":{"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["settransaction",{"_index":3176,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["settransaction(transaction",{"_index":3191,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["sha256",{"_index":2694,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["sha3",{"_index":3208,"title":{},"body":{"injectables/TransactionService.html":{},"dependencies.html":{}}}],["shall",{"_index":3908,"title":{},"body":{"license.html":{}}}],["shamba",{"_index":1690,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shanzu",{"_index":2335,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["share",{"_index":543,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"license.html":{}}}],["shared",{"_index":3861,"title":{},"body":{"license.html":{}}}],["sharedmodule",{"_index":443,"title":{"modules/SharedModule.html":{}},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{},"modules.html":{},"overview.html":{}}}],["shepard",{"_index":1778,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shephard",{"_index":1779,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shepherd",{"_index":1730,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shirt",{"_index":2064,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shoe",{"_index":1777,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shop",{"_index":2015,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["short",{"_index":4370,"title":{},"body":{"license.html":{}}}],["show",{"_index":3682,"title":{},"body":{"license.html":{}}}],["siaya",{"_index":2361,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sickly",{"_index":2005,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["side",{"_index":1333,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["sidebar",{"_index":698,"title":{},"body":{"components/AppComponent.html":{},"components/FooterStubComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TopbarStubComponent.html":{}}}],["sidebar'},{'name",{"_index":317,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["sidebar.component.html",{"_index":2931,"title":{},"body":{"components/SidebarComponent.html":{}}}],["sidebar.component.scss",{"_index":2930,"title":{},"body":{"components/SidebarComponent.html":{}}}],["sidebar?.classlist.add('active",{"_index":709,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["sidebar?.classlist.contains('active",{"_index":708,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["sidebar?.classlist.remove('active",{"_index":712,"title":{},"body":{"components/AppComponent.html":{}}}],["sidebar?.classlist.toggle('active",{"_index":1518,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["sidebarcollapse",{"_index":703,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{}}}],["sidebarcollapse?.classlist.contains('active",{"_index":705,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["sidebarcollapse?.classlist.remove('active",{"_index":706,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["sidebarcollapse?.classlist.toggle('active",{"_index":1520,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["sidebarcomponent",{"_index":316,"title":{"components/SidebarComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["sidebarstubcomponent",{"_index":318,"title":{"components/SidebarStubComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["sig",{"_index":2725,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["sigei",{"_index":2161,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sign",{"_index":2526,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signer.html":{},"license.html":{}}}],["sign(digest",{"_index":2707,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["sign(plaintext",{"_index":2568,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["signable",{"_index":2704,"title":{"interfaces/Signable.html":{}},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"coverage.html":{}}}],["signature",{"_index":40,"title":{"interfaces/Signature.html":{}},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signer.html":{},"coverage.html":{},"miscellaneous/typealiases.html":{}}}],["signatureobject",{"_index":2622,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"injectables/TransactionService.html":{}}}],["signatureobject.recid",{"_index":3288,"title":{},"body":{"injectables/TransactionService.html":{}}}],["signatureobject.signature",{"_index":2624,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["signatureobject.signature.slice(0",{"_index":3285,"title":{},"body":{"injectables/TransactionService.html":{}}}],["signatureobject.signature.slice(32",{"_index":3287,"title":{},"body":{"injectables/TransactionService.html":{}}}],["signchallenge",{"_index":933,"title":{},"body":{"injectables/AuthService.html":{}}}],["signchallenge(o.challenge",{"_index":1003,"title":{},"body":{"injectables/AuthService.html":{}}}],["signed",{"_index":975,"title":{},"body":{"injectables/AuthService.html":{}}}],["signer",{"_index":104,"title":{"interfaces/Signer.html":{}},"body":{"classes/AccountIndex.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"coverage.html":{}}}],["signer.ts",{"_index":2685,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"coverage.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}}}],["signer.ts:18",{"_index":2937,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:19",{"_index":2938,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:20",{"_index":2936,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:21",{"_index":2939,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:22",{"_index":2941,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:23",{"_index":2940,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:28",{"_index":2697,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:29",{"_index":2695,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:30",{"_index":2696,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:31",{"_index":2701,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:32",{"_index":2698,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:33",{"_index":2699,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:34",{"_index":2700,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:35",{"_index":2693,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:43",{"_index":2702,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:47",{"_index":2705,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:52",{"_index":2710,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:7",{"_index":2935,"title":{},"body":{"interfaces/Signable.html":{}}}],["signer.ts:77",{"_index":2708,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signeraddress",{"_index":76,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["significant",{"_index":4061,"title":{},"body":{"license.html":{}}}],["silc",{"_index":2011,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["silver",{"_index":3400,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["sima",{"_index":1943,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["similar",{"_index":3922,"title":{},"body":{"license.html":{}}}],["simsim",{"_index":1934,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["simu",{"_index":2051,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["simulate",{"_index":2406,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["simultaneously",{"_index":4276,"title":{},"body":{"license.html":{}}}],["sinai",{"_index":2160,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["single",{"_index":4249,"title":{},"body":{"license.html":{}}}],["size",{"_index":4436,"title":{},"body":{"miscellaneous/variables.html":{}}}],["slash",{"_index":2792,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["smokie",{"_index":1954,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["smokies",{"_index":1955,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sms",{"_index":3154,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["snackbar",{"_index":3101,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["snacks",{"_index":1947,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["soap",{"_index":1991,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["societies",{"_index":2967,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["socks",{"_index":2039,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["soda",{"_index":1867,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["software",{"_index":3618,"title":{},"body":{"license.html":{}}}],["soko",{"_index":1871,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["solar",{"_index":2126,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sold",{"_index":4043,"title":{},"body":{"license.html":{}}}],["soldier",{"_index":1653,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sole",{"_index":3888,"title":{},"body":{"license.html":{}}}],["solely",{"_index":3900,"title":{},"body":{"license.html":{}}}],["somehow",{"_index":813,"title":{},"body":{"components/AuthComponent.html":{}}}],["something",{"_index":690,"title":{},"body":{"components/AppComponent.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["sort",{"_index":350,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["soup",{"_index":1952,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["source",{"_index":4,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"classes/W3.html":{},"index.html":{},"license.html":{}}}],["sourcetoken",{"_index":1188,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["south",{"_index":2150,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["soweto",{"_index":2258,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["spare",{"_index":2037,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["spareparts",{"_index":2028,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["speak",{"_index":1015,"title":{},"body":{"injectables/AuthService.html":{},"license.html":{}}}],["special",{"_index":3741,"title":{},"body":{"license.html":{}}}],["specific",{"_index":121,"title":{},"body":{"classes/AccountIndex.html":{},"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["specifically",{"_index":3865,"title":{},"body":{"license.html":{}}}],["specified",{"_index":131,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"license.html":{}}}],["specifies",{"_index":4294,"title":{},"body":{"license.html":{}}}],["specify",{"_index":4297,"title":{},"body":{"license.html":{}}}],["spinach",{"_index":1953,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["spinner",{"_index":490,"title":{},"body":{"modules/AccountsModule.html":{}}}],["spirit",{"_index":4289,"title":{},"body":{"license.html":{}}}],["src/.../account.ts",{"_index":4403,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../accountindex.ts",{"_index":4400,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../array",{"_index":3527,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../clipboard",{"_index":3528,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../environment.dev.ts",{"_index":4404,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../environment.prod.ts",{"_index":4405,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../environment.ts",{"_index":4406,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../export",{"_index":3529,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../http",{"_index":3530,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../mock",{"_index":4402,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../pgp",{"_index":4399,"title":{},"body":{"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}}}],["src/.../read",{"_index":3531,"title":{},"body":{"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["src/.../schema",{"_index":3532,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../token",{"_index":4401,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../transaction.service.ts",{"_index":4407,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../user.service.ts",{"_index":4408,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/app/_eth/accountindex.ts",{"_index":63,"title":{},"body":{"classes/AccountIndex.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/_eth/accountindex.ts:121",{"_index":138,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/accountindex.ts:21",{"_index":97,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/accountindex.ts:23",{"_index":98,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/accountindex.ts:25",{"_index":87,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/accountindex.ts:57",{"_index":100,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/accountindex.ts:78",{"_index":118,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/accountindex.ts:95",{"_index":130,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/token",{"_index":2979,"title":{},"body":{"classes/TokenRegistry.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/_guards/auth.guard.ts",{"_index":836,"title":{},"body":{"guards/AuthGuard.html":{},"coverage.html":{}}}],["src/app/_guards/auth.guard.ts:17",{"_index":842,"title":{},"body":{"guards/AuthGuard.html":{}}}],["src/app/_guards/auth.guard.ts:35",{"_index":853,"title":{},"body":{"guards/AuthGuard.html":{}}}],["src/app/_guards/role.guard.ts",{"_index":2815,"title":{},"body":{"guards/RoleGuard.html":{},"coverage.html":{}}}],["src/app/_guards/role.guard.ts:17",{"_index":2816,"title":{},"body":{"guards/RoleGuard.html":{}}}],["src/app/_guards/role.guard.ts:35",{"_index":2817,"title":{},"body":{"guards/RoleGuard.html":{}}}],["src/app/_helpers/array",{"_index":3434,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_helpers/clipboard",{"_index":3438,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_helpers/custom",{"_index":1244,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"coverage.html":{}}}],["src/app/_helpers/custom.validator.ts",{"_index":1261,"title":{},"body":{"classes/CustomValidator.html":{},"coverage.html":{}}}],["src/app/_helpers/custom.validator.ts:12",{"_index":1271,"title":{},"body":{"classes/CustomValidator.html":{}}}],["src/app/_helpers/custom.validator.ts:4",{"_index":1267,"title":{},"body":{"classes/CustomValidator.html":{}}}],["src/app/_helpers/export",{"_index":3442,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_helpers/global",{"_index":1371,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"coverage.html":{}}}],["src/app/_helpers/http",{"_index":3446,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_helpers/mock",{"_index":1522,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/_helpers/read",{"_index":3448,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["src/app/_helpers/schema",{"_index":3452,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_interceptors/error.interceptor.ts",{"_index":1315,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"coverage.html":{}}}],["src/app/_interceptors/error.interceptor.ts:14",{"_index":1318,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["src/app/_interceptors/error.interceptor.ts:22",{"_index":1322,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["src/app/_interceptors/http",{"_index":1418,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{},"coverage.html":{}}}],["src/app/_interceptors/logging.interceptor.ts",{"_index":1442,"title":{},"body":{"interceptors/LoggingInterceptor.html":{},"coverage.html":{}}}],["src/app/_interceptors/logging.interceptor.ts:14",{"_index":1443,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["src/app/_interceptors/logging.interceptor.ts:20",{"_index":1444,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["src/app/_models/account.ts",{"_index":6,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/_models/mappings.ts",{"_index":506,"title":{},"body":{"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"coverage.html":{}}}],["src/app/_models/settings.ts",{"_index":2852,"title":{},"body":{"classes/Settings.html":{},"classes/W3.html":{},"coverage.html":{}}}],["src/app/_models/settings.ts:16",{"_index":3424,"title":{},"body":{"classes/W3.html":{}}}],["src/app/_models/settings.ts:17",{"_index":3425,"title":{},"body":{"classes/W3.html":{}}}],["src/app/_models/settings.ts:2",{"_index":2861,"title":{},"body":{"classes/Settings.html":{}}}],["src/app/_models/settings.ts:6",{"_index":2859,"title":{},"body":{"classes/Settings.html":{}}}],["src/app/_models/settings.ts:7",{"_index":2858,"title":{},"body":{"classes/Settings.html":{}}}],["src/app/_models/settings.ts:8",{"_index":2857,"title":{},"body":{"classes/Settings.html":{}}}],["src/app/_models/staff.ts",{"_index":2942,"title":{},"body":{"interfaces/Staff.html":{},"coverage.html":{}}}],["src/app/_models/token.ts",{"_index":2945,"title":{},"body":{"interfaces/Token.html":{},"coverage.html":{}}}],["src/app/_models/transaction.ts",{"_index":1166,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"coverage.html":{}}}],["src/app/_models/transaction.ts:12",{"_index":3368,"title":{},"body":{"classes/TxToken.html":{}}}],["src/app/_models/transaction.ts:13",{"_index":3369,"title":{},"body":{"classes/TxToken.html":{}}}],["src/app/_models/transaction.ts:14",{"_index":3370,"title":{},"body":{"classes/TxToken.html":{}}}],["src/app/_models/transaction.ts:18",{"_index":3363,"title":{},"body":{"classes/Tx.html":{}}}],["src/app/_models/transaction.ts:19",{"_index":3364,"title":{},"body":{"classes/Tx.html":{}}}],["src/app/_models/transaction.ts:20",{"_index":3365,"title":{},"body":{"classes/Tx.html":{}}}],["src/app/_models/transaction.ts:21",{"_index":3366,"title":{},"body":{"classes/Tx.html":{}}}],["src/app/_models/transaction.ts:22",{"_index":3367,"title":{},"body":{"classes/Tx.html":{}}}],["src/app/_models/transaction.ts:26",{"_index":3083,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:27",{"_index":3085,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:28",{"_index":3086,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:29",{"_index":3084,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:30",{"_index":3087,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:31",{"_index":3088,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:32",{"_index":3090,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:33",{"_index":3089,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:37",{"_index":1191,"title":{},"body":{"classes/Conversion.html":{}}}],["src/app/_models/transaction.ts:38",{"_index":1192,"title":{},"body":{"classes/Conversion.html":{}}}],["src/app/_models/transaction.ts:39",{"_index":1193,"title":{},"body":{"classes/Conversion.html":{}}}],["src/app/_models/transaction.ts:4",{"_index":1176,"title":{},"body":{"classes/BlocksBloom.html":{}}}],["src/app/_models/transaction.ts:40",{"_index":1194,"title":{},"body":{"classes/Conversion.html":{}}}],["src/app/_models/transaction.ts:41",{"_index":1195,"title":{},"body":{"classes/Conversion.html":{}}}],["src/app/_models/transaction.ts:42",{"_index":1197,"title":{},"body":{"classes/Conversion.html":{}}}],["src/app/_models/transaction.ts:43",{"_index":1196,"title":{},"body":{"classes/Conversion.html":{}}}],["src/app/_models/transaction.ts:5",{"_index":1173,"title":{},"body":{"classes/BlocksBloom.html":{}}}],["src/app/_models/transaction.ts:6",{"_index":1174,"title":{},"body":{"classes/BlocksBloom.html":{}}}],["src/app/_models/transaction.ts:7",{"_index":1172,"title":{},"body":{"classes/BlocksBloom.html":{}}}],["src/app/_models/transaction.ts:8",{"_index":1175,"title":{},"body":{"classes/BlocksBloom.html":{}}}],["src/app/_pgp/pgp",{"_index":2501,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"coverage.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}}}],["src/app/_services/auth.service.ts",{"_index":890,"title":{},"body":{"injectables/AuthService.html":{},"coverage.html":{}}}],["src/app/_services/auth.service.ts:118",{"_index":916,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:147",{"_index":918,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:15",{"_index":930,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:157",{"_index":924,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:16",{"_index":929,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:17",{"_index":907,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:181",{"_index":919,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:187",{"_index":911,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:193",{"_index":910,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:204",{"_index":909,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:27",{"_index":913,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:38",{"_index":927,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:42",{"_index":912,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:61",{"_index":921,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:84",{"_index":908,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:99",{"_index":914,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/block",{"_index":1060,"title":{},"body":{"injectables/BlockSyncService.html":{},"coverage.html":{}}}],["src/app/_services/error",{"_index":1296,"title":{},"body":{"injectables/ErrorDialogService.html":{},"coverage.html":{}}}],["src/app/_services/location.service.ts",{"_index":1426,"title":{},"body":{"injectables/LocationService.html":{},"coverage.html":{}}}],["src/app/_services/location.service.ts:10",{"_index":1431,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/location.service.ts:16",{"_index":1434,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/location.service.ts:20",{"_index":1433,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/location.service.ts:24",{"_index":1437,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/location.service.ts:28",{"_index":1436,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/logging.service.ts",{"_index":1457,"title":{},"body":{"injectables/LoggingService.html":{},"coverage.html":{}}}],["src/app/_services/logging.service.ts:18",{"_index":1481,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:22",{"_index":1471,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:26",{"_index":1477,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:30",{"_index":1479,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:34",{"_index":1483,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:38",{"_index":1473,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:42",{"_index":1475,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:8",{"_index":1484,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:9",{"_index":1469,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/registry.service.ts",{"_index":2793,"title":{},"body":{"injectables/RegistryService.html":{},"coverage.html":{}}}],["src/app/_services/registry.service.ts:11",{"_index":2809,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/registry.service.ts:12",{"_index":2801,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/registry.service.ts:13",{"_index":2808,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/registry.service.ts:14",{"_index":2797,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/registry.service.ts:21",{"_index":2798,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/registry.service.ts:25",{"_index":2799,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/token.service.ts",{"_index":3006,"title":{},"body":{"injectables/TokenService.html":{},"coverage.html":{}}}],["src/app/_services/token.service.ts:13",{"_index":3016,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:14",{"_index":3017,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:15",{"_index":3009,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:29",{"_index":3014,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:34",{"_index":3013,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:38",{"_index":3011,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/transaction.service.ts",{"_index":3166,"title":{},"body":{"injectables/TransactionService.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/_services/transaction.service.ts:102",{"_index":3183,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:108",{"_index":3196,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:26",{"_index":3200,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:27",{"_index":3199,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:28",{"_index":3202,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:29",{"_index":3203,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:30",{"_index":3204,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:31",{"_index":3178,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:45",{"_index":3187,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:49",{"_index":3185,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:53",{"_index":3192,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:73",{"_index":3190,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:89",{"_index":3181,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:97",{"_index":3188,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/user.service.ts",{"_index":3467,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/app",{"_index":765,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["src/app/app.component.ts",{"_index":637,"title":{},"body":{"components/AppComponent.html":{},"coverage.html":{}}}],["src/app/app.component.ts:12",{"_index":671,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:13",{"_index":669,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:14",{"_index":667,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:15",{"_index":653,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:43",{"_index":662,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:68",{"_index":660,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:74",{"_index":658,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.module.ts",{"_index":733,"title":{},"body":{"modules/AppModule.html":{}}}],["src/app/auth/_directives/password",{"_index":2773,"title":{},"body":{"directives/PasswordToggleDirective.html":{},"coverage.html":{}}}],["src/app/auth/auth",{"_index":888,"title":{},"body":{"modules/AuthRoutingModule.html":{}}}],["src/app/auth/auth.component.ts",{"_index":776,"title":{},"body":{"components/AuthComponent.html":{},"coverage.html":{}}}],["src/app/auth/auth.component.ts:14",{"_index":794,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:15",{"_index":796,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:16",{"_index":795,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:17",{"_index":787,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:25",{"_index":789,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:36",{"_index":798,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:38",{"_index":790,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:48",{"_index":788,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:59",{"_index":791,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:67",{"_index":793,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.module.ts",{"_index":883,"title":{},"body":{"modules/AuthModule.html":{}}}],["src/app/pages/accounts/account",{"_index":182,"title":{},"body":{"components/AccountSearchComponent.html":{},"coverage.html":{}}}],["src/app/pages/accounts/accounts",{"_index":496,"title":{},"body":{"modules/AccountsRoutingModule.html":{}}}],["src/app/pages/accounts/accounts.component.ts",{"_index":340,"title":{},"body":{"components/AccountsComponent.html":{},"coverage.html":{}}}],["src/app/pages/accounts/accounts.component.ts:20",{"_index":371,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:21",{"_index":367,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:22",{"_index":375,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:23",{"_index":373,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:24",{"_index":379,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:25",{"_index":368,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:26",{"_index":369,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:28",{"_index":383,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:29",{"_index":358,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:48",{"_index":363,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:57",{"_index":360,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:61",{"_index":366,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:65",{"_index":362,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:76",{"_index":364,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:84",{"_index":361,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.module.ts",{"_index":448,"title":{},"body":{"modules/AccountsModule.html":{}}}],["src/app/pages/accounts/create",{"_index":1198,"title":{},"body":{"components/CreateAccountComponent.html":{},"coverage.html":{}}}],["src/app/pages/admin/admin",{"_index":636,"title":{},"body":{"modules/AdminRoutingModule.html":{}}}],["src/app/pages/admin/admin.component.ts",{"_index":550,"title":{},"body":{"components/AdminComponent.html":{},"coverage.html":{}}}],["src/app/pages/admin/admin.component.ts:25",{"_index":575,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:26",{"_index":578,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:27",{"_index":573,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:28",{"_index":574,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:30",{"_index":579,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:31",{"_index":559,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:46",{"_index":572,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:49",{"_index":567,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:53",{"_index":561,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:57",{"_index":564,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:63",{"_index":566,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:69",{"_index":570,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:73",{"_index":568,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.module.ts",{"_index":633,"title":{},"body":{"modules/AdminModule.html":{}}}],["src/app/pages/pages",{"_index":2761,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["src/app/pages/pages.component.ts",{"_index":2742,"title":{},"body":{"components/PagesComponent.html":{},"coverage.html":{}}}],["src/app/pages/pages.component.ts:10",{"_index":2746,"title":{},"body":{"components/PagesComponent.html":{}}}],["src/app/pages/pages.module.ts",{"_index":2755,"title":{},"body":{"modules/PagesModule.html":{}}}],["src/app/pages/settings/organization/organization.component.ts",{"_index":2650,"title":{},"body":{"components/OrganizationComponent.html":{},"coverage.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:12",{"_index":2659,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:13",{"_index":2660,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:14",{"_index":2656,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:20",{"_index":2657,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:28",{"_index":2662,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:30",{"_index":2658,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/settings",{"_index":2914,"title":{},"body":{"modules/SettingsRoutingModule.html":{}}}],["src/app/pages/settings/settings.component.ts",{"_index":2863,"title":{},"body":{"components/SettingsComponent.html":{},"coverage.html":{}}}],["src/app/pages/settings/settings.component.ts:16",{"_index":2872,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:17",{"_index":2871,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:18",{"_index":2874,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:19",{"_index":2876,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:21",{"_index":2875,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:22",{"_index":2866,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:28",{"_index":2870,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:37",{"_index":2867,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:41",{"_index":2868,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:45",{"_index":2869,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.module.ts",{"_index":2906,"title":{},"body":{"modules/SettingsModule.html":{}}}],["src/app/pages/tokens/token",{"_index":2946,"title":{},"body":{"components/TokenDetailsComponent.html":{},"coverage.html":{}}}],["src/app/pages/tokens/tokens",{"_index":3077,"title":{},"body":{"modules/TokensRoutingModule.html":{}}}],["src/app/pages/tokens/tokens.component.ts",{"_index":3039,"title":{},"body":{"components/TokensComponent.html":{},"coverage.html":{}}}],["src/app/pages/tokens/tokens.component.ts:18",{"_index":3052,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:19",{"_index":3051,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:20",{"_index":3053,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:21",{"_index":3054,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:22",{"_index":3045,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:30",{"_index":3048,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:41",{"_index":3046,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:45",{"_index":3050,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:49",{"_index":3047,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.module.ts",{"_index":3068,"title":{},"body":{"modules/TokensModule.html":{}}}],["src/app/pages/transactions/transaction",{"_index":3091,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"coverage.html":{}}}],["src/app/pages/transactions/transactions",{"_index":3362,"title":{},"body":{"modules/TransactionsRoutingModule.html":{}}}],["src/app/pages/transactions/transactions.component.ts",{"_index":3302,"title":{},"body":{"components/TransactionsComponent.html":{},"coverage.html":{}}}],["src/app/pages/transactions/transactions.component.ts:17",{"_index":3326,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:18",{"_index":3327,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:19",{"_index":3322,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:20",{"_index":3323,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:21",{"_index":3328,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:22",{"_index":3325,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:23",{"_index":3329,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:24",{"_index":3330,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:26",{"_index":3324,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:27",{"_index":3314,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:37",{"_index":3319,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:47",{"_index":3321,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:51",{"_index":3315,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:55",{"_index":3317,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:66",{"_index":3318,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:71",{"_index":3316,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.module.ts",{"_index":3358,"title":{},"body":{"modules/TransactionsModule.html":{}}}],["src/app/shared/_directives/menu",{"_index":1497,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"coverage.html":{}}}],["src/app/shared/_pipes/safe.pipe.ts",{"_index":2842,"title":{},"body":{"pipes/SafePipe.html":{},"coverage.html":{}}}],["src/app/shared/_pipes/safe.pipe.ts:11",{"_index":2847,"title":{},"body":{"pipes/SafePipe.html":{}}}],["src/app/shared/_pipes/token",{"_index":2971,"title":{},"body":{"pipes/TokenRatioPipe.html":{},"coverage.html":{}}}],["src/app/shared/error",{"_index":1280,"title":{},"body":{"components/ErrorDialogComponent.html":{},"coverage.html":{}}}],["src/app/shared/footer/footer.component.ts",{"_index":1361,"title":{},"body":{"components/FooterComponent.html":{},"coverage.html":{}}}],["src/app/shared/footer/footer.component.ts:13",{"_index":1366,"title":{},"body":{"components/FooterComponent.html":{}}}],["src/app/shared/footer/footer.component.ts:9",{"_index":1365,"title":{},"body":{"components/FooterComponent.html":{}}}],["src/app/shared/shared.module.ts",{"_index":2919,"title":{},"body":{"modules/SharedModule.html":{}}}],["src/app/shared/sidebar/sidebar.component.ts",{"_index":2929,"title":{},"body":{"components/SidebarComponent.html":{},"coverage.html":{}}}],["src/app/shared/sidebar/sidebar.component.ts:13",{"_index":2933,"title":{},"body":{"components/SidebarComponent.html":{}}}],["src/app/shared/sidebar/sidebar.component.ts:9",{"_index":2932,"title":{},"body":{"components/SidebarComponent.html":{}}}],["src/app/shared/topbar/topbar.component.ts",{"_index":3078,"title":{},"body":{"components/TopbarComponent.html":{},"coverage.html":{}}}],["src/app/shared/topbar/topbar.component.ts:13",{"_index":3082,"title":{},"body":{"components/TopbarComponent.html":{}}}],["src/app/shared/topbar/topbar.component.ts:9",{"_index":3081,"title":{},"body":{"components/TopbarComponent.html":{}}}],["src/assets/js/ethtx/dist",{"_index":3214,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/assets/js/ethtx/dist/hex",{"_index":252,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["src/assets/js/ethtx/dist/tx",{"_index":3215,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/assets/js/hoba",{"_index":934,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/assets/js/hoba.js",{"_index":932,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/environments",{"_index":3602,"title":{},"body":{"index.html":{}}}],["src/environments/environment",{"_index":145,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AppModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"injectables/LocationService.html":{},"injectables/RegistryService.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["src/environments/environment.dev.ts",{"_index":3473,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/environments/environment.prod.ts",{"_index":3474,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/environments/environment.ts",{"_index":3475,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/testing/activated",{"_index":514,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"coverage.html":{}}}],["src/testing/router",{"_index":2829,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{},"coverage.html":{}}}],["src/testing/shared",{"_index":1368,"title":{},"body":{"components/FooterStubComponent.html":{},"components/SidebarStubComponent.html":{},"components/TopbarStubComponent.html":{},"coverage.html":{}}}],["src/testing/token",{"_index":3035,"title":{},"body":{"classes/TokenServiceStub.html":{},"coverage.html":{}}}],["src/testing/transaction",{"_index":3297,"title":{},"body":{"classes/TransactionServiceStub.html":{},"coverage.html":{}}}],["src/testing/user",{"_index":3372,"title":{},"body":{"classes/UserServiceStub.html":{},"coverage.html":{}}}],["srf",{"_index":3144,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["stadium",{"_index":2291,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["staff",{"_index":622,"title":{"interfaces/Staff.html":{}},"body":{"components/AdminComponent.html":{},"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"components/SettingsComponent.html":{},"interfaces/Staff.html":{},"coverage.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["staff@grassrootseconomics.net",{"_index":1019,"title":{},"body":{"injectables/AuthService.html":{}}}],["stand",{"_index":3727,"title":{},"body":{"license.html":{}}}],["standard",{"_index":3826,"title":{},"body":{"license.html":{}}}],["standards",{"_index":3829,"title":{},"body":{"license.html":{}}}],["starehe",{"_index":2294,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["start",{"_index":4356,"title":{},"body":{"license.html":{}}}],["start:dev",{"_index":3560,"title":{},"body":{"index.html":{}}}],["started",{"_index":3548,"title":{"index.html":{},"license.html":{}},"body":{}}],["starts",{"_index":4371,"title":{},"body":{"license.html":{}}}],["starttime",{"_index":1449,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["state",{"_index":581,"title":{},"body":{"components/AdminComponent.html":{},"guards/AuthGuard.html":{},"classes/CustomErrorStateMatcher.html":{},"guards/RoleGuard.html":{},"coverage.html":{},"license.html":{}}}],["state('collapsed",{"_index":589,"title":{},"body":{"components/AdminComponent.html":{}}}],["state('expanded",{"_index":595,"title":{},"body":{"components/AdminComponent.html":{}}}],["state.url",{"_index":2828,"title":{},"body":{"guards/RoleGuard.html":{}}}],["stated",{"_index":3876,"title":{},"body":{"license.html":{}}}],["statement",{"_index":4141,"title":{},"body":{"license.html":{}}}],["statements",{"_index":3428,"title":{},"body":{"coverage.html":{}}}],["states",{"_index":2677,"title":{},"body":{"components/OrganizationComponent.html":{},"license.html":{}}}],["static",{"_index":1262,"title":{},"body":{"classes/CustomValidator.html":{}}}],["stating",{"_index":3943,"title":{},"body":{"license.html":{}}}],["station",{"_index":2075,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["status",{"_index":562,"title":{},"body":{"components/AdminComponent.html":{},"guards/AuthGuard.html":{},"components/ErrorDialogComponent.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"license.html":{}}}],["step",{"_index":2895,"title":{},"body":{"components/SettingsComponent.html":{}}}],["steps",{"_index":3686,"title":{},"body":{"license.html":{}}}],["stima",{"_index":2127,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["storage",{"_index":3973,"title":{},"body":{"license.html":{}}}],["store",{"_index":2573,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["store.ts",{"_index":2502,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["store.ts:10",{"_index":2561,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:100",{"_index":2627,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:106",{"_index":2628,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:11",{"_index":2551,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:110",{"_index":2632,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:115",{"_index":2629,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:119",{"_index":2634,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:12",{"_index":2556,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:123",{"_index":2631,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:127",{"_index":2635,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:13",{"_index":2554,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:131",{"_index":2637,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:135",{"_index":2646,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:139",{"_index":2648,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:14",{"_index":2545,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:143",{"_index":2647,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:148",{"_index":2625,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:15",{"_index":2549,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:152",{"_index":2649,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:16",{"_index":2548,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:17",{"_index":2528,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:18",{"_index":2539,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:19",{"_index":2535,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:20",{"_index":2560,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:21",{"_index":2558,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:22",{"_index":2529,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:23",{"_index":2531,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:24",{"_index":2538,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:25",{"_index":2533,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:26",{"_index":2541,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:27",{"_index":2537,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:28",{"_index":2543,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:29",{"_index":2547,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:30",{"_index":2563,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:31",{"_index":2567,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:32",{"_index":2565,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:33",{"_index":2527,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:34",{"_index":2569,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:42",{"_index":2645,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:47",{"_index":2640,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:52",{"_index":2642,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:56",{"_index":2641,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:60",{"_index":2636,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:64",{"_index":2639,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:68",{"_index":2638,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:72",{"_index":2626,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:76",{"_index":2633,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:80",{"_index":2630,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:84",{"_index":2644,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:90",{"_index":2643,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["stored",{"_index":3583,"title":{},"body":{"index.html":{}}}],["str",{"_index":3541,"title":{},"body":{"miscellaneous/functions.html":{}}}],["string",{"_index":20,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountsComponent.html":{},"interfaces/Action.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"classes/CustomValidator.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.html":{},"pipes/SafePipe.html":{},"components/SettingsComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{}}}],["stringfromurl",{"_index":2463,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["strip0x",{"_index":251,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["strip0x(abi",{"_index":3266,"title":{},"body":{"injectables/TransactionService.html":{}}}],["stub.ts",{"_index":516,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"components/FooterStubComponent.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/SidebarStubComponent.html":{},"classes/TokenServiceStub.html":{},"components/TopbarStubComponent.html":{},"classes/TransactionServiceStub.html":{},"classes/UserServiceStub.html":{},"coverage.html":{}}}],["stub.ts:11",{"_index":531,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"directives/RouterLinkDirectiveStub.html":{}}}],["stub.ts:12",{"_index":3375,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["stub.ts:18",{"_index":534,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["stub.ts:2",{"_index":3038,"title":{},"body":{"classes/TokenServiceStub.html":{}}}],["stub.ts:21",{"_index":538,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"classes/UserServiceStub.html":{}}}],["stub.ts:37",{"_index":3410,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["stub.ts:4",{"_index":3299,"title":{},"body":{"classes/TransactionServiceStub.html":{},"classes/UserServiceStub.html":{}}}],["stub.ts:6",{"_index":3298,"title":{},"body":{"classes/TransactionServiceStub.html":{}}}],["stub.ts:61",{"_index":3408,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["stub.ts:7",{"_index":2832,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["stub.ts:71",{"_index":3406,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["stub.ts:8",{"_index":2833,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{},"classes/TransactionServiceStub.html":{}}}],["student",{"_index":1587,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["style",{"_index":582,"title":{},"body":{"components/AdminComponent.html":{},"components/AuthComponent.html":{}}}],["style({height",{"_index":590,"title":{},"body":{"components/AdminComponent.html":{}}}],["styles",{"_index":179,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["styleurls",{"_index":193,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["subdividing",{"_index":4190,"title":{},"body":{"license.html":{}}}],["subject",{"_index":528,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"license.html":{}}}],["subkeyid",{"_index":2544,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["sublicenses",{"_index":4219,"title":{},"body":{"license.html":{}}}],["sublicensing",{"_index":3902,"title":{},"body":{"license.html":{}}}],["submit",{"_index":1243,"title":{},"body":{"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["submitted",{"_index":781,"title":{},"body":{"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["subprograms",{"_index":3864,"title":{},"body":{"license.html":{}}}],["subroutine",{"_index":4382,"title":{},"body":{"license.html":{}}}],["subscribe(this.authservice.mutablekeystore.importpublickey",{"_index":687,"title":{},"body":{"components/AppComponent.html":{}}}],["subscribers",{"_index":546,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["subsection",{"_index":4006,"title":{},"body":{"license.html":{}}}],["substantial",{"_index":4057,"title":{},"body":{"license.html":{}}}],["substantially",{"_index":3725,"title":{},"body":{"license.html":{}}}],["succeeded",{"_index":1451,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["success",{"_index":1180,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["successful",{"_index":115,"title":{},"body":{"classes/AccountIndex.html":{}}}],["successfully",{"_index":2457,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"components/TransactionDetailsComponent.html":{}}}],["such",{"_index":3675,"title":{},"body":{"license.html":{}}}],["sue",{"_index":4233,"title":{},"body":{"license.html":{}}}],["suffice",{"_index":4065,"title":{},"body":{"license.html":{}}}],["sugar",{"_index":1948,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["suger",{"_index":1949,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sukari",{"_index":1951,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sukuma",{"_index":1956,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sum.ts",{"_index":3435,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["super",{"_index":1393,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["super(message",{"_index":1390,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["superadmin",{"_index":1534,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["supplement",{"_index":4095,"title":{},"body":{"license.html":{}}}],["supplier",{"_index":1815,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["supply",{"_index":1550,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"miscellaneous/variables.html":{}}}],["support",{"_index":2748,"title":{},"body":{"components/PagesComponent.html":{},"license.html":{},"modules.html":{}}}],["supports",{"_index":4013,"title":{},"body":{"license.html":{}}}],["supposed",{"_index":2586,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["sure",{"_index":3646,"title":{},"body":{"license.html":{}}}],["surname",{"_index":1222,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["surrender",{"_index":3670,"title":{},"body":{"license.html":{}}}],["survive",{"_index":4140,"title":{},"body":{"license.html":{}}}],["sustained",{"_index":4329,"title":{},"body":{"license.html":{}}}],["svg",{"_index":4391,"title":{},"body":{"modules.html":{}}}],["sweats",{"_index":1945,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sweet",{"_index":1944,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["switch",{"_index":1350,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["switchwindows",{"_index":784,"title":{},"body":{"components/AuthComponent.html":{}}}],["symbol",{"_index":1179,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"miscellaneous/variables.html":{}}}],["sync.service.ts",{"_index":1061,"title":{},"body":{"injectables/BlockSyncService.html":{},"coverage.html":{}}}],["sync.service.ts:101",{"_index":1079,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:14",{"_index":1097,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:15",{"_index":1070,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:23",{"_index":1074,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:46",{"_index":1087,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:68",{"_index":1084,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:76",{"_index":1081,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:84",{"_index":1095,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync/data",{"_index":2807,"title":{},"body":{"injectables/RegistryService.html":{}}}],["sync/data/accountregistry.json",{"_index":149,"title":{},"body":{"classes/AccountIndex.html":{},"miscellaneous/variables.html":{}}}],["sync/data/tokenuniquesymbolindex.json",{"_index":2999,"title":{},"body":{"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["sync/head.js",{"_index":1129,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync/ondemand.js",{"_index":1142,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["syncer",{"_index":3489,"title":{},"body":{"dependencies.html":{}}}],["system",{"_index":1013,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["systematic",{"_index":3714,"title":{},"body":{"license.html":{}}}],["taa",{"_index":2132,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["table",{"_index":2077,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["tablesort(document.getelementbyid('coverage",{"_index":3478,"title":{},"body":{"coverage.html":{}}}],["tag",{"_index":2944,"title":{},"body":{"interfaces/Staff.html":{}}}],["tailor",{"_index":1750,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["taka",{"_index":1667,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["takaungu",{"_index":2347,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["take",{"_index":3637,"title":{},"body":{"license.html":{}}}],["talk",{"_index":812,"title":{},"body":{"components/AuthComponent.html":{}}}],["tangible",{"_index":4036,"title":{},"body":{"license.html":{}}}],["tap",{"_index":1447,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["tasia",{"_index":2276,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tassia",{"_index":2275,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["taxi",{"_index":2101,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tea",{"_index":1957,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["teacher",{"_index":1583,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["technician",{"_index":2000,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["technological",{"_index":3911,"title":{},"body":{"license.html":{}}}],["tel",{"_index":36,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["tells",{"_index":3813,"title":{},"body":{"license.html":{}}}],["template",{"_index":178,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"index.html":{}}}],["templateurl",{"_index":195,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["term",{"_index":3874,"title":{},"body":{"license.html":{}}}],["terminal",{"_index":4369,"title":{},"body":{"license.html":{}}}],["terminate",{"_index":4146,"title":{},"body":{"license.html":{}}}],["terminated",{"_index":4167,"title":{},"body":{"license.html":{}}}],["terminates",{"_index":4155,"title":{},"body":{"license.html":{}}}],["termination",{"_index":4143,"title":{},"body":{"license.html":{}}}],["terms",{"_index":3683,"title":{},"body":{"license.html":{}}}],["test",{"_index":518,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["test:dev",{"_index":3591,"title":{},"body":{"index.html":{}}}],["testa",{"_index":1570,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["testb",{"_index":1566,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["testc",{"_index":1574,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tests",{"_index":3590,"title":{},"body":{"index.html":{}}}],["tetra",{"_index":2151,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tetrapak",{"_index":2152,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["text",{"_index":953,"title":{},"body":{"injectables/AuthService.html":{},"directives/PasswordToggleDirective.html":{},"miscellaneous/functions.html":{}}}],["then(res",{"_index":1052,"title":{},"body":{"injectables/AuthService.html":{}}}],["therefore",{"_index":3671,"title":{},"body":{"license.html":{}}}],["thika",{"_index":2289,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["things",{"_index":3662,"title":{},"body":{"license.html":{}}}],["third",{"_index":872,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["this.accounts",{"_index":411,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.accounts.filter(account",{"_index":417,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.accountstype",{"_index":415,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.accounttypes",{"_index":403,"title":{},"body":{"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{}}}],["this.actions",{"_index":607,"title":{},"body":{"components/AdminComponent.html":{}}}],["this.addresssearchform",{"_index":259,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.addresssearchform.controls",{"_index":262,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.addresssearchform.invalid",{"_index":278,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.addresssearchloading",{"_index":279,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.addresssearchsubmitted",{"_index":277,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.addtransaction(conversion",{"_index":3243,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.addtransaction(transaction",{"_index":3233,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.algo",{"_index":2736,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.areanames",{"_index":1229,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.authservice.getprivatekey",{"_index":819,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.authservice.getpublickeys",{"_index":675,"title":{},"body":{"components/AppComponent.html":{}}}],["this.authservice.gettrustedusers",{"_index":2882,"title":{},"body":{"components/SettingsComponent.html":{}}}],["this.authservice.init",{"_index":674,"title":{},"body":{"components/AppComponent.html":{},"components/AuthComponent.html":{}}}],["this.authservice.logout",{"_index":2886,"title":{},"body":{"components/SettingsComponent.html":{}}}],["this.authservice.mutablekeystore.getprivatekey",{"_index":3282,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.authservice.mutablekeystore.importpublickey(publickeys",{"_index":689,"title":{},"body":{"components/AppComponent.html":{}}}],["this.authservice.privatekey",{"_index":801,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.authservice.sessiontoken",{"_index":821,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.authservice.setkey(this.authservice.privatekey",{"_index":803,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.authservice.setkey(this.keyformstub.key.value",{"_index":808,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.blocksyncservice.blocksync",{"_index":3331,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.categories",{"_index":1227,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.contract",{"_index":157,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["this.contract.methods.accountindex(address).call",{"_index":167,"title":{},"body":{"classes/AccountIndex.html":{}}}],["this.contract.methods.accounts(i).call",{"_index":172,"title":{},"body":{"classes/AccountIndex.html":{}}}],["this.contract.methods.add(address).send({from",{"_index":165,"title":{},"body":{"classes/AccountIndex.html":{}}}],["this.contract.methods.addressof(id).call",{"_index":3003,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["this.contract.methods.count().call",{"_index":174,"title":{},"body":{"classes/AccountIndex.html":{}}}],["this.contract.methods.entry(serial).call",{"_index":3004,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["this.contract.methods.entrycount().call",{"_index":3005,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["this.contractaddress",{"_index":156,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["this.createform",{"_index":1219,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.createform.controls",{"_index":1232,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.createform.invalid",{"_index":1233,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.datasource",{"_index":405,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{}}}],["this.datasource.data",{"_index":416,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.datasource.filter",{"_index":412,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{}}}],["this.datasource.paginator",{"_index":407,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{}}}],["this.datasource.sort",{"_index":409,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{}}}],["this.date",{"_index":2879,"title":{},"body":{"components/SettingsComponent.html":{}}}],["this.dgst",{"_index":2720,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.dialog.open(errordialogcomponent",{"_index":1311,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["this.engine",{"_index":2735,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.errordialogservice.opendialog",{"_index":1010,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.errordialogservice.opendialog({message",{"_index":680,"title":{},"body":{"components/AppComponent.html":{},"injectables/AuthService.html":{}}}],["this.fetcher(settings",{"_index":1136,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.filegetter",{"_index":2805,"title":{},"body":{"injectables/RegistryService.html":{}}}],["this.formbuilder.group",{"_index":255,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["this.genders",{"_index":1231,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.getaccountinfo(res.body",{"_index":3229,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.getchallenge",{"_index":998,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.getprivatekey",{"_index":2614,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["this.getwithtoken",{"_index":995,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.haveaccount(address",{"_index":164,"title":{},"body":{"classes/AccountIndex.html":{}}}],["this.httpclient.get(`${environment.ciccacheurl}/tokens/${symbol",{"_index":3029,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.httpclient.get(`${environment.ciccacheurl}/tx/${address}/${offset}/${limit",{"_index":3221,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.httpclient.get(`${environment.ciccacheurl}/tx/${offset}/${limit",{"_index":3220,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.httpclient.get(`${environment.cicmetaurl}/areanames",{"_index":1438,"title":{},"body":{"injectables/LocationService.html":{}}}],["this.httpclient.get(`${environment.cicmetaurl}/areanames/${location.tolowercase",{"_index":1439,"title":{},"body":{"injectables/LocationService.html":{}}}],["this.httpclient.get(`${environment.cicmetaurl}/areatypes/${area.tolowercase()}`).pipe(first",{"_index":1441,"title":{},"body":{"injectables/LocationService.html":{}}}],["this.httpclient.get(`${environment.cicmetaurl}/areatypes`).pipe(first",{"_index":1440,"title":{},"body":{"injectables/LocationService.html":{}}}],["this.isdialogopen",{"_index":1309,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["this.iswarning(errortracestring",{"_index":1401,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.keyform",{"_index":799,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.keyform.controls",{"_index":804,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.keyform.invalid",{"_index":806,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.keystore",{"_index":2716,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.keystore.getfingerprint",{"_index":2719,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.keystore.getprivatekey",{"_index":2730,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.keystore.gettrustedkeys",{"_index":2724,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.linkparams",{"_index":2839,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["this.loadevent.next(date.now",{"_index":3025,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.loading",{"_index":807,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.locationservice.getareanames().pipe(first()).subscribe(res",{"_index":1228,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.logerror(error",{"_index":1394,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.logger.debug(message",{"_index":1491,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.error(message",{"_index":1495,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.fatal(message",{"_index":1496,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.info(message",{"_index":1492,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.log(message",{"_index":1493,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.trace(message",{"_index":1490,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.warn(message",{"_index":1494,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.loggingservice.senderrorlevelmessage",{"_index":1405,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.loggingservice.senderrorlevelmessage('failed",{"_index":400,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.loggingservice.senderrorlevelmessage('login",{"_index":996,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.loggingservice.senderrorlevelmessage('unable",{"_index":677,"title":{},"body":{"components/AppComponent.html":{}}}],["this.loggingservice.senderrorlevelmessage(`failed",{"_index":1042,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.loggingservice.senderrorlevelmessage(`nobody",{"_index":1412,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.loggingservice.senderrorlevelmessage(`there",{"_index":1409,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.loggingservice.senderrorlevelmessage(e.message",{"_index":2727,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.loggingservice.senderrorlevelmessage(errormessage",{"_index":1349,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["this.loggingservice.senderrorlevelmessage(errortracestring",{"_index":1403,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.loggingservice.sendinfolevelmessage(`loaded",{"_index":1119,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.loggingservice.sendinfolevelmessage(`result",{"_index":3293,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.loggingservice.sendinfolevelmessage(`transaction",{"_index":3295,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.loggingservice.sendinfolevelmessage(message",{"_index":1456,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["this.loggingservice.sendinfolevelmessage(request",{"_index":1448,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["this.loggingservice.sendinfolevelmessage(res",{"_index":612,"title":{},"body":{"components/AdminComponent.html":{}}}],["this.loggingservice.sendinfolevelmessage(this.tokens",{"_index":3059,"title":{},"body":{"components/TokensComponent.html":{}}}],["this.loggingservice.sendwarnlevelmessage(errortracestring",{"_index":1402,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.loginresponse(o",{"_index":994,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.loginview",{"_index":1045,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mediaquery.addlistener(this.onresize",{"_index":695,"title":{},"body":{"components/AppComponent.html":{}}}],["this.mutablekeystore",{"_index":941,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.getprivatekey",{"_index":1058,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.getprivatekeyid",{"_index":1027,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.getpublickeys().foreach(key",{"_index":1049,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.importprivatekey(localstorage.getitem(btoa('cicada_private_key",{"_index":948,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.importprivatekey(privatekeyarmored",{"_index":1039,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.isencryptedprivatekey(privatekeyarmored",{"_index":1036,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.isvalidkey(privatekeyarmored",{"_index":1030,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.loadkeyring",{"_index":942,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.name",{"_index":1392,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.namesearchform",{"_index":254,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.namesearchform.controls",{"_index":260,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.namesearchform.invalid",{"_index":264,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.namesearchloading",{"_index":265,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.namesearchsubmitted",{"_index":263,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.navigatedto",{"_index":2838,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["this.onmenuselect",{"_index":1510,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["this.onmenutoggle",{"_index":1516,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["this.onresize(this.mediaquery",{"_index":696,"title":{},"body":{"components/AppComponent.html":{}}}],["this.onsign",{"_index":2717,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.onsign(this.signature",{"_index":2739,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.onsign(undefined",{"_index":2741,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.onverify",{"_index":2718,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.onverify(false",{"_index":2728,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.organizationform",{"_index":2663,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["this.organizationform.controls",{"_index":2667,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["this.organizationform.invalid",{"_index":2668,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["this.paginator",{"_index":408,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["this.paginator._changepagesize(this.paginator.pagesize",{"_index":419,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.phonesearchform",{"_index":257,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.phonesearchform.controls",{"_index":261,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.phonesearchform.invalid",{"_index":268,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.phonesearchloading",{"_index":269,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.phonesearchsubmitted",{"_index":267,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.readystate",{"_index":1124,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.readystateprocessor(settings",{"_index":1121,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.readystatetarget",{"_index":1125,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.recipientbloxberglink",{"_index":3121,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.registry",{"_index":2812,"title":{},"body":{"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["this.registry.addtoken(await",{"_index":3031,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.registry.declaratorhelper.addtrust(environment.trusteddeclaratoraddress",{"_index":2810,"title":{},"body":{"injectables/RegistryService.html":{}}}],["this.registry.getcontractaddressbyname('tokenregistry",{"_index":3024,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.registry.getcontractaddressbyname('transferauthorization",{"_index":3253,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.registry.load",{"_index":2811,"title":{},"body":{"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["this.registry.onload",{"_index":3021,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.registryservice.getregistry",{"_index":1110,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.registryservice.getweb3",{"_index":1108,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TransactionService.html":{}}}],["this.renderer.listen(this.elementref.nativeelement",{"_index":1507,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["this.route.parammap.subscribe((params",{"_index":2956,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["this.router.navigate",{"_index":2825,"title":{},"body":{"guards/RoleGuard.html":{}}}],["this.router.navigate(['/auth",{"_index":877,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["this.router.navigate(['/home",{"_index":820,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.router.navigatebyurl('/auth').then",{"_index":1353,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["this.router.navigatebyurl(`/accounts/${strip0x(account.identities.evm[`bloxberg:${environment.bloxbergchainid}`][0",{"_index":414,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.router.navigatebyurl(`/accounts/${strip0x(res.identities.evm[`bloxberg:${environment.bloxbergchainid}`][0",{"_index":274,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.router.navigatebyurl(`/accounts/${strip0x(this.transaction.from",{"_index":3123,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.router.navigatebyurl(`/accounts/${strip0x(this.transaction.to",{"_index":3124,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.router.navigatebyurl(`/accounts/${strip0x(this.transaction.trader",{"_index":3125,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.router.navigatebyurl(`/tokens/${token.symbol",{"_index":3061,"title":{},"body":{"components/TokensComponent.html":{}}}],["this.router.url",{"_index":1404,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.sanitizer.bypasssecuritytrustresourceurl(url",{"_index":2851,"title":{},"body":{"pipes/SafePipe.html":{}}}],["this.scanfilter",{"_index":2862,"title":{},"body":{"classes/Settings.html":{},"classes/W3.html":{}}}],["this.senderbloxberglink",{"_index":3119,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.sendinfolevelmessage('dropping",{"_index":1487,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.sendresponse(r",{"_index":1006,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.sentencesforwarninglogging.foreach((whitelistsentence",{"_index":1416,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.sessionlogincount",{"_index":970,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.sessiontoken",{"_index":947,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.setparammap(initialparams",{"_index":548,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["this.setstate('click",{"_index":971,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.signature",{"_index":2734,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.signeraddress",{"_index":159,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["this.snackbar.open(address",{"_index":3132,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.sort",{"_index":410,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["this.status",{"_index":1391,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.subject.asobservable",{"_index":533,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["this.subject.next(converttoparammap(params",{"_index":549,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["this.submitted",{"_index":805,"title":{},"body":{"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["this.toggledisplay(divone",{"_index":826,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.toggledisplay(divtwo",{"_index":827,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.togglepasswordvisibility",{"_index":2782,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["this.token",{"_index":2958,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["this.tokenregistry",{"_index":3022,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.tokenregistry.entry(0",{"_index":3032,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.tokenregistry.entry(i",{"_index":3028,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.tokenregistry.totaltokens",{"_index":3026,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.tokens",{"_index":3057,"title":{},"body":{"components/TokensComponent.html":{}}}],["this.tokenservice.gettokenbysymbol(params.get('id')).pipe(first()).subscribe(res",{"_index":2957,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["this.tokenservice.gettokens",{"_index":3058,"title":{},"body":{"components/TokensComponent.html":{}}}],["this.tokenservice.loadevent.subscribe(async",{"_index":3056,"title":{},"body":{"components/TokensComponent.html":{}}}],["this.totalaccounts",{"_index":169,"title":{},"body":{"classes/AccountIndex.html":{}}}],["this.traderbloxberglink",{"_index":3116,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction",{"_index":3339,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transaction.from",{"_index":3129,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction.to",{"_index":3128,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction.token.address",{"_index":3127,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction.value",{"_index":3130,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction?.from",{"_index":3120,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction?.to",{"_index":3122,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction?.trader",{"_index":3118,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction?.type",{"_index":3115,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transactiondatasource",{"_index":3333,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactiondatasource.data",{"_index":3342,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactiondatasource.paginator",{"_index":3335,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactiondatasource.sort",{"_index":3336,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactionlist.asobservable",{"_index":3201,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactionlist.next(this.transactions",{"_index":3246,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactions",{"_index":3247,"title":{},"body":{"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["this.transactions.filter(transaction",{"_index":3343,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactions.find(cachedtx",{"_index":3222,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactions.length",{"_index":3245,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactions.unshift(transaction",{"_index":3244,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactionservice.getaddresstransactions(address",{"_index":1137,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.transactionservice.getalltransactions(offset",{"_index":1134,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.transactionservice.resettransactionslist",{"_index":1102,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.transactionservice.setconversion(conversion",{"_index":721,"title":{},"body":{"components/AppComponent.html":{}}}],["this.transactionservice.settransaction(transaction",{"_index":717,"title":{},"body":{"components/AppComponent.html":{}}}],["this.transactionservice.transactionssubject.subscribe(transactions",{"_index":3332,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactionservice.transferrequest",{"_index":3126,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transactionstype",{"_index":3341,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactionstypes",{"_index":3338,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.trustedusers",{"_index":2881,"title":{},"body":{"components/SettingsComponent.html":{}}}],["this.userservice.accountssubject.subscribe(accounts",{"_index":404,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.userservice.actionssubject.subscribe(actions",{"_index":605,"title":{},"body":{"components/AdminComponent.html":{}}}],["this.userservice.approveaction(action.id).pipe(first()).subscribe(res",{"_index":611,"title":{},"body":{"components/AdminComponent.html":{}}}],["this.userservice.getaccountbyaddress(this.addresssearchformstub.address.value",{"_index":280,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.userservice.getaccountbyphone(this.phonesearchformstub.phonenumber.value",{"_index":270,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.userservice.getaccountdetailsfrommeta(await",{"_index":3226,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.userservice.getaccounttypes().pipe(first()).subscribe(res",{"_index":402,"title":{},"body":{"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{}}}],["this.userservice.getactions",{"_index":604,"title":{},"body":{"components/AdminComponent.html":{}}}],["this.userservice.getcategories().pipe(first()).subscribe(res",{"_index":1226,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.userservice.getgenders().pipe(first()).subscribe(res",{"_index":1230,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.userservice.gettransactiontypes().pipe(first()).subscribe(res",{"_index":3337,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.userservice.loadaccounts(100",{"_index":398,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.userservice.revokeaction(action.id).pipe(first()).subscribe(res",{"_index":614,"title":{},"body":{"components/AdminComponent.html":{}}}],["this.userservice.searchaccountbyname(this.namesearchformstub.name.value",{"_index":266,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.web3",{"_index":2813,"title":{},"body":{"injectables/RegistryService.html":{},"injectables/TransactionService.html":{}}}],["this.web3.eth.getgasprice",{"_index":3272,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.web3.eth.gettransaction(result.transactionhash",{"_index":3294,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.web3.eth.gettransactioncount(senderaddress",{"_index":3269,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.web3.eth.sendsignedtransaction(txwire",{"_index":3292,"title":{},"body":{"injectables/TransactionService.html":{}}}],["those",{"_index":3723,"title":{},"body":{"license.html":{}}}],["though",{"_index":4098,"title":{},"body":{"license.html":{}}}],["threatened",{"_index":3733,"title":{},"body":{"license.html":{}}}],["three",{"_index":3995,"title":{},"body":{"license.html":{}}}],["threw",{"_index":1413,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["through",{"_index":2444,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["throw",{"_index":967,"title":{},"body":{"injectables/AuthService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["throwerror",{"_index":1327,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["throwerror(err",{"_index":1360,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["thrown",{"_index":2412,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["throws",{"_index":1028,"title":{},"body":{"injectables/AuthService.html":{}}}],["thus",{"_index":3893,"title":{},"body":{"license.html":{}}}],["timber",{"_index":2115,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["timberyard",{"_index":2116,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["time",{"_index":863,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["timestamp",{"_index":1181,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["tissue",{"_index":2068,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["title",{"_index":644,"title":{},"body":{"components/AppComponent.html":{}}}],["titlecase",{"_index":1242,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["todo",{"_index":395,"title":{},"body":{"components/AccountsComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"index.html":{}}}],["together",{"_index":944,"title":{},"body":{"injectables/AuthService.html":{}}}],["toggle.directive",{"_index":887,"title":{},"body":{"modules/AuthModule.html":{},"modules/SharedModule.html":{}}}],["toggle.directive.ts",{"_index":1511,"title":{},"body":{"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{},"coverage.html":{}}}],["toggle.directive.ts:11",{"_index":2778,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["toggle.directive.ts:18",{"_index":1515,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["toggle.directive.ts:22",{"_index":2780,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["toggle.directive.ts:6",{"_index":1514,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["toggle.directive.ts:8",{"_index":2779,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["toggledisplay",{"_index":785,"title":{},"body":{"components/AuthComponent.html":{}}}],["toggledisplay(element",{"_index":792,"title":{},"body":{"components/AuthComponent.html":{}}}],["togglepasswordvisibility",{"_index":2775,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["tohex",{"_index":3213,"title":{},"body":{"injectables/TransactionService.html":{}}}],["toi",{"_index":2310,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["toilet",{"_index":1662,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["token",{"_index":320,"title":{"interfaces/Token.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenRegistry.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["token.address",{"_index":2960,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{}}}],["token.name",{"_index":2959,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{}}}],["token.owner",{"_index":2970,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["token.reserveratio",{"_index":2969,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["token.supply",{"_index":2968,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{}}}],["token.symbol",{"_index":2462,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{}}}],["tokenaddress",{"_index":3197,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tokenagent",{"_index":2395,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tokendetailscomponent",{"_index":319,"title":{"components/TokenDetailsComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["tokenratio",{"_index":429,"title":{},"body":{"components/AccountsComponent.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["tokenratiopipe",{"_index":2918,"title":{"pipes/TokenRatioPipe.html":{}},"body":{"modules/SharedModule.html":{},"pipes/TokenRatioPipe.html":{},"coverage.html":{},"overview.html":{}}}],["tokenregistry",{"_index":2978,"title":{"classes/TokenRegistry.html":{}},"body":{"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"coverage.html":{}}}],["tokenregistry(await",{"_index":3023,"title":{},"body":{"injectables/TokenService.html":{}}}],["tokens",{"_index":1545,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"modules/PagesRoutingModule.html":{},"components/SidebarComponent.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenRegistry.html":{},"components/TokensComponent.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["tokens'},{'name",{"_index":322,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["tokens.component.html",{"_index":3041,"title":{},"body":{"components/TokensComponent.html":{}}}],["tokens.component.scss",{"_index":3040,"title":{},"body":{"components/TokensComponent.html":{}}}],["tokens.find(token",{"_index":2461,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["tokenscomponent",{"_index":321,"title":{"components/TokensComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["tokenservice",{"_index":2953,"title":{"injectables/TokenService.html":{}},"body":{"components/TokenDetailsComponent.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"coverage.html":{}}}],["tokenservicestub",{"_index":3034,"title":{"classes/TokenServiceStub.html":{}},"body":{"classes/TokenServiceStub.html":{},"coverage.html":{}}}],["tokensmodule",{"_index":3063,"title":{"modules/TokensModule.html":{}},"body":{"modules/TokensModule.html":{},"modules.html":{},"overview.html":{}}}],["tokensroutingmodule",{"_index":3067,"title":{"modules/TokensRoutingModule.html":{}},"body":{"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["tom",{"_index":1529,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["tomato",{"_index":1873,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tomatoes",{"_index":1874,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["toolbox",{"_index":2888,"title":{},"body":{"components/SettingsComponent.html":{}}}],["tools",{"_index":3857,"title":{},"body":{"license.html":{}}}],["topbar",{"_index":1370,"title":{},"body":{"components/FooterStubComponent.html":{},"components/SidebarStubComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{}}}],["topbar'},{'name",{"_index":324,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["topbar.component.html",{"_index":3080,"title":{},"body":{"components/TopbarComponent.html":{}}}],["topbar.component.scss",{"_index":3079,"title":{},"body":{"components/TopbarComponent.html":{}}}],["topbarcomponent",{"_index":323,"title":{"components/TopbarComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["topbarstubcomponent",{"_index":325,"title":{"components/TopbarStubComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["total",{"_index":139,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["totalaccounts",{"_index":83,"title":{},"body":{"classes/AccountIndex.html":{}}}],["totaltokens",{"_index":2982,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["tour",{"_index":2094,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tout",{"_index":1780,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tovalue",{"_index":1189,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"injectables/TransactionService.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["tovalue(value",{"_index":3278,"title":{},"body":{"injectables/TransactionService.html":{}}}],["town",{"_index":2318,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["trace",{"_index":1399,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["trace|debug|info|log|warn|error|fatal|off",{"_index":1486,"title":{},"body":{"injectables/LoggingService.html":{}}}],["trade",{"_index":1805,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["trademark",{"_index":4124,"title":{},"body":{"license.html":{}}}],["trademarks",{"_index":4125,"title":{},"body":{"license.html":{}}}],["trader",{"_index":1190,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["traderbloxberglink",{"_index":3095,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["trading",{"_index":2963,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["trainer",{"_index":1624,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["transaction",{"_index":327,"title":{"classes/Transaction.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"coverage.html":{},"license.html":{}}}],["transaction.destinationtoken.address",{"_index":3162,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.destinationtoken.name",{"_index":3163,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.destinationtoken.symbol",{"_index":3164,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.from",{"_index":3139,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.fromvalue",{"_index":3160,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.recipient",{"_index":3231,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transaction.recipient?.vcard.fn[0].value",{"_index":3141,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.sender",{"_index":3228,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transaction.sender?.vcard.fn[0].value",{"_index":3138,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.sourcetoken.address",{"_index":3157,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.sourcetoken.name",{"_index":3158,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.sourcetoken.symbol",{"_index":3159,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.to",{"_index":3142,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.token._address",{"_index":3146,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.tovalue",{"_index":3165,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.trader",{"_index":3156,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.tx.block",{"_index":3147,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.tx.success",{"_index":3151,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.tx.timestamp",{"_index":3152,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.tx.txhash",{"_index":3150,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["transaction.tx.txindex",{"_index":3148,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.type",{"_index":3225,"title":{},"body":{"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["transaction.value",{"_index":3145,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["transaction?.recipient?.vcard.fn[0].value",{"_index":3348,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transaction?.sender?.vcard.fn[0].value",{"_index":3347,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transaction?.tovalue",{"_index":3350,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transaction?.tx.timestamp",{"_index":3351,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transaction?.type",{"_index":3352,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transaction?.value",{"_index":3349,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactiondatasource",{"_index":3306,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactiondetailscomponent",{"_index":326,"title":{"components/TransactionDetailsComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"coverage.html":{},"overview.html":{}}}],["transactiondisplayedcolumns",{"_index":3307,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactionhelper",{"_index":1098,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionhelper(settings.w3.engine",{"_index":1112,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionlist",{"_index":3167,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transactions",{"_index":329,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["transactions.component.html",{"_index":3305,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactions.component.scss",{"_index":3304,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactionscomponent",{"_index":328,"title":{"components/TransactionsComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"coverage.html":{},"overview.html":{}}}],["transactionservice",{"_index":651,"title":{"injectables/TransactionService.html":{}},"body":{"components/AppComponent.html":{},"injectables/BlockSyncService.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["transactionservicestub",{"_index":3296,"title":{"classes/TransactionServiceStub.html":{}},"body":{"classes/TransactionServiceStub.html":{},"coverage.html":{}}}],["transactionsinfo",{"_index":1078,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionsinfo.filter_rounds",{"_index":1164,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionsinfo.high",{"_index":1163,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionsinfo.low",{"_index":1162,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionsmodule",{"_index":444,"title":{"modules/TransactionsModule.html":{}},"body":{"modules/AccountsModule.html":{},"modules/TransactionsModule.html":{},"modules.html":{},"overview.html":{}}}],["transactionsroutingmodule",{"_index":3357,"title":{"modules/TransactionsRoutingModule.html":{}},"body":{"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["transactionssubject",{"_index":3168,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transactionstype",{"_index":3308,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactionstypes",{"_index":3309,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactiontype",{"_index":3346,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactiontypes",{"_index":2396,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["transfer",{"_index":2665,"title":{},"body":{"components/OrganizationComponent.html":{},"components/TransactionsComponent.html":{},"license.html":{}}}],["transferauthaddress",{"_index":3252,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transferred",{"_index":4072,"title":{},"body":{"license.html":{}}}],["transferrequest",{"_index":3177,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transferrequest(tokenaddress",{"_index":3193,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transferring",{"_index":4188,"title":{},"body":{"license.html":{}}}],["transfers",{"_index":3345,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transform",{"_index":2844,"title":{},"body":{"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{}}}],["transform(url",{"_index":2845,"title":{},"body":{"pipes/SafePipe.html":{}}}],["transform(value",{"_index":2973,"title":{},"body":{"pipes/TokenRatioPipe.html":{}}}],["transition",{"_index":583,"title":{},"body":{"components/AdminComponent.html":{}}}],["transition('expanded",{"_index":597,"title":{},"body":{"components/AdminComponent.html":{}}}],["transmission",{"_index":4025,"title":{},"body":{"license.html":{}}}],["transport",{"_index":2083,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["transpoter",{"_index":2110,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["trash",{"_index":1675,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["trasportion",{"_index":2105,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["travel",{"_index":2095,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["traverse",{"_index":865,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["treated",{"_index":4097,"title":{},"body":{"license.html":{}}}],["treaty",{"_index":3918,"title":{},"body":{"license.html":{}}}],["tree",{"_index":181,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"guards/RoleGuard.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"miscellaneous/variables.html":{}}}],["trigger",{"_index":584,"title":{},"body":{"components/AdminComponent.html":{},"directives/MenuToggleDirective.html":{}}}],["trigger('detailexpand",{"_index":588,"title":{},"body":{"components/AdminComponent.html":{}}}],["true",{"_index":114,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"modules/AppModule.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"components/CreateAccountComponent.html":{},"classes/CustomValidator.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"guards/RoleGuard.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["trusted",{"_index":678,"title":{},"body":{"components/AppComponent.html":{},"components/SettingsComponent.html":{}}}],["trusteddeclaratoraddress",{"_index":4429,"title":{},"body":{"miscellaneous/variables.html":{}}}],["trustedusers",{"_index":1048,"title":{},"body":{"injectables/AuthService.html":{},"components/SettingsComponent.html":{}}}],["trustedusers.push(key.users[0].userid",{"_index":1050,"title":{},"body":{"injectables/AuthService.html":{}}}],["try",{"_index":394,"title":{},"body":{"components/AccountsComponent.html":{},"components/AppComponent.html":{},"injectables/AuthService.html":{},"injectables/TransactionService.html":{}}}],["ts",{"_index":2786,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["tslib",{"_index":3518,"title":{},"body":{"dependencies.html":{}}}],["tsta",{"_index":1571,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tstb",{"_index":1567,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tstc",{"_index":1575,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tudor",{"_index":2329,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tuition",{"_index":1618,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tuktuk",{"_index":2100,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tution",{"_index":1617,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tv",{"_index":1781,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["two",{"_index":2894,"title":{},"body":{"components/SettingsComponent.html":{},"license.html":{}}}],["tx",{"_index":1082,"title":{"classes/Tx.html":{}},"body":{"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"modules/PagesRoutingModule.html":{},"classes/Transaction.html":{},"injectables/TransactionService.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"coverage.html":{}}}],["tx(environment.bloxbergchainid",{"_index":3267,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.data",{"_index":3279,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.gaslimit",{"_index":3273,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.gasprice",{"_index":3270,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.message",{"_index":3281,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.nonce",{"_index":3268,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.setsignature(r",{"_index":3289,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.to",{"_index":3275,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.value",{"_index":3277,"title":{},"body":{"injectables/TransactionService.html":{}}}],["txhash",{"_index":1182,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["txhelper",{"_index":2854,"title":{},"body":{"classes/Settings.html":{},"classes/W3.html":{}}}],["txindex",{"_index":1183,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["txmsg",{"_index":3280,"title":{},"body":{"injectables/TransactionService.html":{}}}],["txtoken",{"_index":1178,"title":{"classes/TxToken.html":{}},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"coverage.html":{}}}],["txwire",{"_index":3290,"title":{},"body":{"injectables/TransactionService.html":{}}}],["typ",{"_index":38,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["type",{"_index":18,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"classes/W3.html":{},"coverage.html":{},"miscellaneous/functions.html":{},"license.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}}}],["typealiases",{"_index":4397,"title":{"miscellaneous/typealiases.html":{}},"body":{}}],["typeerror",{"_index":1408,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["typescript",{"_index":109,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["typical",{"_index":4051,"title":{},"body":{"license.html":{}}}],["uchumi",{"_index":2286,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uchuuzi",{"_index":1961,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uchuzi",{"_index":1960,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ug",{"_index":2682,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["ugali",{"_index":1959,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uganda",{"_index":2683,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["ugoro",{"_index":1950,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uint256",{"_index":3264,"title":{},"body":{"injectables/TransactionService.html":{}}}],["uint8array",{"_index":1092,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["uint8array(blockfilterbinstr.length",{"_index":1150,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["uint8array(blocktxfilterbinstr.length",{"_index":1158,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["ujenzi",{"_index":1807,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uji",{"_index":1958,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ukulima",{"_index":1687,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ukunda",{"_index":2248,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["umena",{"_index":1883,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["umoja",{"_index":2288,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["unable",{"_index":1014,"title":{},"body":{"injectables/AuthService.html":{}}}],["unacceptable",{"_index":3720,"title":{},"body":{"license.html":{}}}],["unapproved",{"_index":609,"title":{},"body":{"components/AdminComponent.html":{},"classes/UserServiceStub.html":{}}}],["unauthorized",{"_index":1352,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["undefined",{"_index":273,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"classes/Settings.html":{},"classes/W3.html":{}}}],["under",{"_index":3763,"title":{},"body":{"license.html":{}}}],["unga",{"_index":1941,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uniform",{"_index":2070,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["unit",{"_index":3589,"title":{},"body":{"index.html":{}}}],["united",{"_index":2676,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["university",{"_index":1593,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["unknown",{"_index":2142,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"pipes/SafePipe.html":{},"miscellaneous/variables.html":{}}}],["unless",{"_index":4059,"title":{},"body":{"license.html":{}}}],["unlimited",{"_index":3880,"title":{},"body":{"license.html":{}}}],["unmodified",{"_index":3780,"title":{},"body":{"license.html":{}}}],["unnecessary",{"_index":3905,"title":{},"body":{"license.html":{}}}],["unpacking",{"_index":4093,"title":{},"body":{"license.html":{}}}],["unsuccessful",{"_index":1339,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["until",{"_index":4154,"title":{},"body":{"license.html":{}}}],["update",{"_index":2892,"title":{},"body":{"components/SettingsComponent.html":{}}}],["updates",{"_index":4081,"title":{},"body":{"license.html":{}}}],["uploaded",{"_index":855,"title":{},"body":{"guards/AuthGuard.html":{}}}],["uppercase",{"_index":422,"title":{},"body":{"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{},"components/TransactionsComponent.html":{}}}],["urban",{"_index":2392,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["url",{"_index":847,"title":{},"body":{"guards/AuthGuard.html":{},"interceptors/MockBackendInterceptor.html":{},"components/PagesComponent.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{}}}],["url.endswith('/accounttypes",{"_index":2437,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/actions",{"_index":2420,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/areanames",{"_index":2433,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/areatypes",{"_index":2435,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/categories",{"_index":2429,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/genders",{"_index":2441,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/tokens",{"_index":2425,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/transactiontypes",{"_index":2439,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.match(/\\/actions\\/\\d",{"_index":2422,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.match(/\\/areanames\\/\\w",{"_index":2434,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.match(/\\/areatypes\\/\\w",{"_index":2436,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.match(/\\/categories\\/\\w",{"_index":2431,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.match(/\\/tokens\\/\\w",{"_index":2427,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.split",{"_index":2498,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["urlparts",{"_index":2497,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["urlparts[urlparts.length",{"_index":2500,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["urltree",{"_index":867,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["usafi",{"_index":1672,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["use",{"_index":522,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"injectables/AuthService.html":{},"index.html":{},"license.html":{}}}],["useclass",{"_index":763,"title":{},"body":{"modules/AppModule.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["used",{"_index":864,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["useful",{"_index":4363,"title":{},"body":{"license.html":{}}}],["user",{"_index":509,"title":{},"body":{"interfaces/Action.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"guards/AuthGuard.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"interceptors/ErrorInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"components/SettingsComponent.html":{},"classes/Transaction.html":{},"injectables/TransactionService.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["user's",{"_index":869,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["user.email",{"_index":2899,"title":{},"body":{"components/SettingsComponent.html":{}}}],["user.name",{"_index":2898,"title":{},"body":{"components/SettingsComponent.html":{}}}],["user.tokey(conversion.trader)).pipe(first()).subscribe((res",{"_index":3240,"title":{},"body":{"injectables/TransactionService.html":{}}}],["user.tokey(transaction.from)).pipe(first()).subscribe((res",{"_index":3227,"title":{},"body":{"injectables/TransactionService.html":{}}}],["user.tokey(transaction.to)).pipe(first()).subscribe((res",{"_index":3230,"title":{},"body":{"injectables/TransactionService.html":{}}}],["user.userid",{"_index":2900,"title":{},"body":{"components/SettingsComponent.html":{}}}],["user?.balance",{"_index":428,"title":{},"body":{"components/AccountsComponent.html":{}}}],["user?.date_registered",{"_index":426,"title":{},"body":{"components/AccountsComponent.html":{}}}],["user?.location.area_name",{"_index":430,"title":{},"body":{"components/AccountsComponent.html":{}}}],["user?.vcard.fn[0].value",{"_index":424,"title":{},"body":{"components/AccountsComponent.html":{}}}],["user?.vcard.tel[0].value",{"_index":425,"title":{},"body":{"components/AccountsComponent.html":{}}}],["userid",{"_index":2873,"title":{},"body":{"components/SettingsComponent.html":{},"interfaces/Staff.html":{}}}],["userinfo",{"_index":3169,"title":{},"body":{"injectables/TransactionService.html":{}}}],["userkey",{"_index":3411,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["username",{"_index":2890,"title":{},"body":{"components/SettingsComponent.html":{}}}],["users",{"_index":2885,"title":{},"body":{"components/SettingsComponent.html":{},"classes/UserServiceStub.html":{},"index.html":{},"license.html":{}}}],["userservice",{"_index":217,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/CreateAccountComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["userservicestub",{"_index":3371,"title":{"classes/UserServiceStub.html":{}},"body":{"classes/UserServiceStub.html":{},"coverage.html":{}}}],["uses",{"_index":4054,"title":{},"body":{"license.html":{}}}],["using",{"_index":4023,"title":{},"body":{"license.html":{}}}],["ustadh",{"_index":1641,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ustadhi",{"_index":1642,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["utencils",{"_index":2073,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["utensils",{"_index":2074,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["utils",{"_index":3209,"title":{},"body":{"injectables/TransactionService.html":{}}}],["utils.abicoder",{"_index":3262,"title":{},"body":{"injectables/TransactionService.html":{}}}],["uto",{"_index":2057,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uvuvi",{"_index":1747,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uyoma",{"_index":2366,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["v",{"_index":1152,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["v[i",{"_index":1153,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["valid",{"_index":72,"title":{},"body":{"classes/AccountIndex.html":{},"classes/CustomValidator.html":{},"classes/TokenRegistry.html":{},"license.html":{}}}],["validated",{"_index":125,"title":{},"body":{"classes/AccountIndex.html":{}}}],["validation.ts",{"_index":3453,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["validationerrors",{"_index":1270,"title":{},"body":{"classes/CustomValidator.html":{}}}],["validator",{"_index":3498,"title":{},"body":{"dependencies.html":{}}}],["validators",{"_index":246,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["validators.required",{"_index":256,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["value",{"_index":33,"title":{},"body":{"interfaces/AccountDetails.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"injectables/RegistryService.html":{},"directives/RouterLinkDirectiveStub.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"interfaces/Signature.html":{},"pipes/TokenRatioPipe.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"classes/Transaction.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["value.trim().tolocalelowercase",{"_index":413,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["values",{"_index":545,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["var",{"_index":289,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["variable",{"_index":3430,"title":{},"body":{"coverage.html":{}}}],["variables",{"_index":3575,"title":{"miscellaneous/variables.html":{}},"body":{"index.html":{},"miscellaneous/variables.html":{}}}],["vcard",{"_index":19,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"injectables/TransactionService.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["vcard.parse(atob(accountinfo.vcard",{"_index":3251,"title":{},"body":{"injectables/TransactionService.html":{}}}],["vcards",{"_index":3520,"title":{},"body":{"dependencies.html":{}}}],["vcardvalidation",{"_index":3455,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["vcardvalidation(vcard",{"_index":3546,"title":{},"body":{"miscellaneous/functions.html":{}}}],["vegetable",{"_index":1937,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vendor",{"_index":1808,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["verbatim",{"_index":3626,"title":{},"body":{"license.html":{}}}],["verification",{"_index":2897,"title":{},"body":{"components/SettingsComponent.html":{}}}],["verify",{"_index":2691,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signer.html":{}}}],["verify(digest",{"_index":2709,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["version",{"_index":39,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"index.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["versions",{"_index":3643,"title":{},"body":{"license.html":{}}}],["vet",{"_index":2004,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["veterinary",{"_index":2003,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["via",{"_index":3576,"title":{},"body":{"index.html":{}}}],["viatu",{"_index":1800,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["viazi",{"_index":1962,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vidziweni",{"_index":2246,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["view",{"_index":3140,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"license.html":{}}}],["view_in_ar",{"_index":284,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["viewaccount",{"_index":355,"title":{},"body":{"components/AccountsComponent.html":{}}}],["viewaccount(account",{"_index":365,"title":{},"body":{"components/AccountsComponent.html":{}}}],["viewchild",{"_index":386,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["viewchild(matpaginator",{"_index":382,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["viewchild(matsort",{"_index":385,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["viewrecipient",{"_index":3098,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["views",{"_index":846,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["viewsender",{"_index":3099,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["viewtoken",{"_index":3043,"title":{},"body":{"components/TokensComponent.html":{}}}],["viewtoken(token",{"_index":3049,"title":{},"body":{"components/TokensComponent.html":{}}}],["viewtrader",{"_index":3100,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["viewtransaction",{"_index":3312,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["viewtransaction(transaction",{"_index":3320,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["vigungani",{"_index":2245,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vijana",{"_index":1625,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vikapu",{"_index":2069,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vikinduni",{"_index":2233,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vikolani",{"_index":2234,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["village",{"_index":1654,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vinyunduni",{"_index":2247,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["viogato",{"_index":2236,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["violates",{"_index":4087,"title":{},"body":{"license.html":{}}}],["violation",{"_index":4150,"title":{},"body":{"license.html":{}}}],["visibility",{"_index":593,"title":{},"body":{"components/AdminComponent.html":{}}}],["visible",{"_index":596,"title":{},"body":{"components/AdminComponent.html":{},"license.html":{}}}],["vistangani",{"_index":2238,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vitabu",{"_index":1633,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vitangani",{"_index":2235,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vitenge",{"_index":2072,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vitungu",{"_index":1915,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vivian",{"_index":1538,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["void",{"_index":221,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"classes/CustomValidator.html":{},"components/FooterComponent.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"miscellaneous/functions.html":{},"license.html":{}}}],["volume",{"_index":3972,"title":{},"body":{"license.html":{}}}],["volunteer",{"_index":1606,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vsla",{"_index":2012,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vyogato",{"_index":2237,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vyombo",{"_index":2082,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["w",{"_index":1141,"title":{},"body":{"injectables/BlockSyncService.html":{},"license.html":{}}}],["w.onmessage",{"_index":1143,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["w.postmessage",{"_index":1144,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["w3",{"_index":2855,"title":{"classes/W3.html":{}},"body":{"classes/Settings.html":{},"classes/W3.html":{},"coverage.html":{}}}],["w3_provider",{"_index":1133,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["waiter",{"_index":1798,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["waitress",{"_index":1799,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["waive",{"_index":3926,"title":{},"body":{"license.html":{}}}],["waiver",{"_index":4343,"title":{},"body":{"license.html":{}}}],["wakulima",{"_index":1688,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["want",{"_index":3659,"title":{},"body":{"license.html":{}}}],["ward",{"_index":1655,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["warranties",{"_index":3814,"title":{},"body":{"license.html":{}}}],["warranty",{"_index":3696,"title":{},"body":{"license.html":{}}}],["wash",{"_index":1704,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["washing",{"_index":1792,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["waste",{"_index":1666,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["watchlady",{"_index":1809,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["watchman",{"_index":1797,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["water",{"_index":1975,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["way",{"_index":3650,"title":{},"body":{"license.html":{}}}],["ways",{"_index":3985,"title":{},"body":{"license.html":{}}}],["web",{"_index":3549,"title":{},"body":{"index.html":{}}}],["web3",{"_index":141,"title":{},"body":{"classes/AccountIndex.html":{},"injectables/RegistryService.html":{},"classes/TokenRegistry.html":{},"injectables/TransactionService.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/variables.html":{}}}],["web3(environment.web3provider",{"_index":153,"title":{},"body":{"classes/AccountIndex.html":{},"injectables/RegistryService.html":{},"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["web3.eth.abi.encodeparameter('bytes32",{"_index":3001,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["web3.eth.accounts[0",{"_index":160,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["web3.eth.contract(abi",{"_index":158,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["web3.utils.tohex(identifier",{"_index":3002,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["web3provider",{"_index":4422,"title":{},"body":{"miscellaneous/variables.html":{}}}],["weight",{"_index":1558,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"miscellaneous/variables.html":{}}}],["welcome",{"_index":4373,"title":{},"body":{"license.html":{}}}],["welder",{"_index":1794,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["welding",{"_index":1795,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["well",{"_index":3797,"title":{},"body":{"license.html":{}}}],["went",{"_index":1345,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["west",{"_index":2252,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["whatever",{"_index":4192,"title":{},"body":{"license.html":{}}}],["wheadsync",{"_index":1126,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["wheadsync.onmessage",{"_index":1130,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["wheadsync.postmessage",{"_index":1132,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["whether",{"_index":120,"title":{},"body":{"classes/AccountIndex.html":{},"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["whole",{"_index":3835,"title":{},"body":{"license.html":{}}}],["wholesaler",{"_index":2065,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["whose",{"_index":4033,"title":{},"body":{"license.html":{}}}],["widely",{"_index":3831,"title":{},"body":{"license.html":{}}}],["width",{"_index":626,"title":{},"body":{"components/AdminComponent.html":{},"components/AppComponent.html":{},"injectables/ErrorDialogService.html":{},"directives/MenuSelectionDirective.html":{}}}],["window",{"_index":3847,"title":{},"body":{"license.html":{}}}],["window.atob(transactionsinfo.block_filter",{"_index":1148,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["window.atob(transactionsinfo.blocktx_filter",{"_index":1156,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["window.dispatchevent(this.newconversionevent(transaction",{"_index":1116,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["window.dispatchevent(this.newtransferevent(transaction",{"_index":1114,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["window.getcomputedstyle(element).display",{"_index":828,"title":{},"body":{"components/AuthComponent.html":{}}}],["window.location.reload(true",{"_index":1047,"title":{},"body":{"injectables/AuthService.html":{}}}],["window.location.search.substring(1",{"_index":956,"title":{},"body":{"injectables/AuthService.html":{}}}],["window.matchmedia('(max",{"_index":665,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["window.prompt('password",{"_index":2616,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"injectables/TransactionService.html":{}}}],["window:cic_convert",{"_index":647,"title":{},"body":{"components/AppComponent.html":{}}}],["window:cic_convert(event",{"_index":656,"title":{},"body":{"components/AppComponent.html":{}}}],["window:cic_transfer",{"_index":648,"title":{},"body":{"components/AppComponent.html":{}}}],["window:cic_transfer(event",{"_index":659,"title":{},"body":{"components/AppComponent.html":{}}}],["wine",{"_index":1965,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["wipo",{"_index":3917,"title":{},"body":{"license.html":{}}}],["wish",{"_index":3657,"title":{},"body":{"license.html":{}}}],["within",{"_index":4135,"title":{},"body":{"license.html":{}}}],["without",{"_index":3783,"title":{},"body":{"license.html":{}}}],["wood",{"_index":2130,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["work",{"_index":1814,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["work's",{"_index":3856,"title":{},"body":{"license.html":{}}}],["worker",{"_index":1127,"title":{},"body":{"injectables/BlockSyncService.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["worker('./../assets/js/block",{"_index":1128,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["working",{"_index":1796,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["works",{"_index":3633,"title":{},"body":{"license.html":{}}}],["world",{"_index":3301,"title":{},"body":{"classes/TransactionServiceStub.html":{}}}],["worldwide",{"_index":4222,"title":{},"body":{"license.html":{}}}],["wote",{"_index":2386,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["wrap",{"_index":2404,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["writing",{"_index":4304,"title":{},"body":{"license.html":{}}}],["written",{"_index":3994,"title":{},"body":{"license.html":{}}}],["wrong",{"_index":1346,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["ws.dev.grassrootseconomics.net",{"_index":4424,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ws://localhost:63546",{"_index":4434,"title":{},"body":{"miscellaneous/variables.html":{}}}],["wss://bloxberg",{"_index":4423,"title":{},"body":{"miscellaneous/variables.html":{}}}],["xhr",{"_index":950,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.addeventlistener('load",{"_index":964,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.getresponseheader('token",{"_index":985,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.getresponseheader('www",{"_index":991,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.onload",{"_index":989,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.open('get",{"_index":954,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.responsetype",{"_index":952,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.send",{"_index":973,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.setrequestheader('authorization",{"_index":957,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.setrequestheader('content",{"_index":959,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.setrequestheader('x",{"_index":961,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.status",{"_index":965,"title":{},"body":{"injectables/AuthService.html":{}}}],["xmlhttprequest",{"_index":951,"title":{},"body":{"injectables/AuthService.html":{}}}],["yapha",{"_index":2239,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["yava",{"_index":2240,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["years",{"_index":3996,"title":{},"body":{"license.html":{}}}],["yes",{"_index":96,"title":{},"body":{"classes/AccountIndex.html":{},"classes/ActivatedRouteStub.html":{},"classes/TokenRegistry.html":{}}}],["yoga",{"_index":1801,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["yoghurt",{"_index":1963,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["yogurt",{"_index":1964,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["yourself",{"_index":4240,"title":{},"body":{"license.html":{}}}],["youth",{"_index":1626,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["yowani",{"_index":2241,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ziwani",{"_index":2242,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["zone.js",{"_index":3524,"title":{},"body":{"dependencies.html":{}}}],["zoom",{"_index":445,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{},"overview.html":{}}}]],"pipeline":["stemmer"]},
-    "store": {"interfaces/AccountDetails.html":{"url":"interfaces/AccountDetails.html","title":"interface - AccountDetails","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n\n  Interfaces\n  AccountDetails\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_models/account.ts\n        \n\n\n\n        \n            Index\n            \n                \n                    \n                        \n                            Properties\n                        \n                    \n                    \n                        \n                            \n                                \n                                            Optional\n                                        age\n                                \n                                \n                                            Optional\n                                        balance\n                                \n                                \n                                            Optional\n                                        category\n                                \n                                \n                                        date_registered\n                                \n                                \n                                        gender\n                                \n                                \n                                        identities\n                                \n                                \n                                        location\n                                \n                                \n                                        products\n                                \n                                \n                                            Optional\n                                        type\n                                \n                                \n                                        vcard\n                                \n                            \n                        \n                    \n                \n            \n        \n\n\n\n            \n                Properties\n                    \n                        \n                                \n                                    \n                                        \n                                        age\n                                    \n                                \n                                \n                                    \n                                        age:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n                                    \n                                        \n                                            Optional\n                                        \n                                    \n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        balance\n                                    \n                                \n                                \n                                    \n                                        balance:         number\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         number\n\n                                        \n                                    \n\n                                    \n                                        \n                                            Optional\n                                        \n                                    \n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        category\n                                    \n                                \n                                \n                                    \n                                        category:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n                                    \n                                        \n                                            Optional\n                                        \n                                    \n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        date_registered\n                                    \n                                \n                                \n                                    \n                                        date_registered:         number\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         number\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        gender\n                                    \n                                \n                                \n                                    \n                                        gender:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        identities\n                                    \n                                \n                                \n                                    \n                                        identities:     literal type\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :     literal type\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        location\n                                    \n                                \n                                \n                                    \n                                        location:     literal type\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :     literal type\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        products\n                                    \n                                \n                                \n                                    \n                                        products:     string[]\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :     string[]\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        type\n                                    \n                                \n                                \n                                    \n                                        type:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n                                    \n                                        \n                                            Optional\n                                        \n                                    \n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        vcard\n                                    \n                                \n                                \n                                    \n                                        vcard:     literal type\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :     literal type\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n            \n    \n\n\n    \n        interface AccountDetails {\n  date_registered: number;\n  gender: string;\n  age?: string;\n  type?: string;\n  balance?: number;\n  identities: {\n    evm: {\n      'bloxberg:8996': string[];\n      'oldchain:1': string[];\n    };\n    latitude: number;\n    longitude: number;\n  };\n  location: {\n    area?: string;\n    area_name: string;\n    area_type?: string;\n  };\n  products: string[];\n  category?: string;\n  vcard: {\n    email: [{\n      value: string;\n    }];\n    fn: [{\n      value: string;\n    }];\n    n: [{\n      value: string[];\n    }];\n    tel: [{\n      meta: {\n        TYP: string[];\n      },\n      value: string;\n    }],\n    version: [{\n      value: string;\n    }];\n  };\n}\n\ninterface Signature {\n  algo: string;\n  data: string;\n  digest: string;\n  engine: string;\n}\n\ninterface Meta {\n  data: AccountDetails;\n  id: string;\n  signature: Signature;\n}\n\ninterface MetaResponse {\n  id: string;\n  m: Meta;\n}\n\nconst defaultAccount: AccountDetails = {\n  date_registered: Date.now(),\n  gender: 'other',\n  identities: {\n    evm: {\n      'bloxberg:8996': [''],\n      'oldchain:1': [''],\n    },\n    latitude: 0,\n    longitude: 0,\n  },\n  location: {\n    area_name: 'Kilifi',\n  },\n  products: [],\n  vcard: {\n    email: [{\n      value: '',\n    }],\n    fn: [{\n      value: 'Sarafu Contract',\n    }],\n    n: [{\n      value: ['Sarafu', 'Contract'],\n    }],\n    tel: [{\n      meta: {\n        TYP: [],\n      },\n      value: '',\n    }],\n    version: [{\n      value: '3.0',\n    }],\n  },\n};\n\nexport {\n  AccountDetails,\n  Signature,\n  Meta,\n  MetaResponse,\n  defaultAccount\n};\n\n    \n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"classes/AccountIndex.html":{"url":"classes/AccountIndex.html","title":"class - AccountIndex","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n  Classes\n  AccountIndex\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_eth/accountIndex.ts\n        \n\n            \n                Description\n            \n            \n                Provides an instance of the accounts registry contract.\nAllows querying of accounts that have been registered as valid accounts in the network.\n\n            \n\n\n\n            \n                Example\n            \n            \n            \n\n            \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                contract\n                            \n                            \n                                contractAddress\n                            \n                            \n                                signerAddress\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                    Public\n                                    Async\n                                addToAccountRegistry\n                            \n                            \n                                    Public\n                                    Async\n                                haveAccount\n                            \n                            \n                                    Public\n                                    Async\n                                last\n                            \n                            \n                                    Public\n                                    Async\n                                totalAccounts\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n            \n    Constructor\n        \n            \n                \n                    \nconstructor(contractAddress: string, signerAddress?: string)\n                    \n                \n                        \n                            \n                                Defined in src/app/_eth/accountIndex.ts:25\n                            \n                        \n\n                \n                    \n                            Create a connection to the deployed account registry contract.\n\n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                                    Description\n                                            \n                                        \n                                        \n                                                \n                                                        contractAddress\n                                                  \n                                                        \n                                                                        string\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                        \n                                                                \nThe deployed account registry contract's address.\n\n\n                                                        \n                                                \n                                                \n                                                        signerAddress\n                                                  \n                                                        \n                                                                        string\n                                                        \n                                                  \n                                                    \n                                                            Yes\n                                                    \n                                                    \n                                                        \n                                                                \nThe account address of the account that deployed the account registry contract.\n\n\n                                                        \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n            \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            contract\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         any\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_eth/accountIndex.ts:21\n                            \n                        \n\n                \n                    \n                        The instance of the account registry contract. \n\n                    \n                \n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            contractAddress\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_eth/accountIndex.ts:23\n                            \n                        \n\n                \n                    \n                        The deployed account registry contract's address. \n\n                    \n                \n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            signerAddress\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_eth/accountIndex.ts:25\n                            \n                        \n\n                \n                    \n                        The account address of the account that deployed the account registry contract. \n\n                    \n                \n\n            \n        \n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Public\n                            Async\n                            addToAccountRegistry\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    addToAccountRegistry(address: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_eth/accountIndex.ts:57\n                \n            \n\n\n            \n                \n                    Registers an account to the accounts registry.\nRequires availability of the signer address.\n\n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                    Description\n                                \n                            \n                            \n                                \n                                    address\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                    \n                                        \nThe account address to be registered to the accounts registry contract.\n\n\n                                    \n                                \n                            \n                        \n                    \n                    \n                        Example :\n                        \n                            Prints "true" for registration of '0xc0ffee254729296a45a3885639AC7E10F9d54979':\n```typescript\n\nconsole.log(await addToAccountRegistry('0xc0ffee254729296a45a3885639AC7E10F9d54979'));\n```\n\n                        \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        true - If registration is successful or account had already been registered.\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Public\n                            Async\n                            haveAccount\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    haveAccount(address: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_eth/accountIndex.ts:78\n                \n            \n\n\n            \n                \n                    Checks whether a specific account address has been registered in the accounts registry.\nReturns \"true\" for available and \"false\" otherwise.\n\n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                    Description\n                                \n                            \n                            \n                                \n                                    address\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                    \n                                        \nThe account address to be validated.\n\n\n                                    \n                                \n                            \n                        \n                    \n                    \n                        Example :\n                        \n                            Prints "true" or "false" depending on whether '0xc0ffee254729296a45a3885639AC7E10F9d54979' has been registered:\n```typescript\n\nconsole.log(await haveAccount('0xc0ffee254729296a45a3885639AC7E10F9d54979'));\n```\n\n                        \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        true - If the address has been registered in the accounts registry.\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Public\n                            Async\n                            last\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    last(numberOfAccounts: number)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_eth/accountIndex.ts:95\n                \n            \n\n\n            \n                \n                    Returns a specified number of the most recently registered accounts.\n\n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                    Description\n                                \n                            \n                            \n                                \n                                    numberOfAccounts\n                                    \n                                                number\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                    \n                                        \nThe number of accounts to return from the accounts registry.\n\n\n                                    \n                                \n                            \n                        \n                    \n                    \n                        Example :\n                        \n                            Prints an array of accounts:\n```typescript\n\nconsole.log(await last(5));\n```\n\n                        \n                    \n                    \n                        Returns :     Promise>\n\n                    \n                    \n                        An array of registered account addresses.\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Public\n                            Async\n                            totalAccounts\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    totalAccounts()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_eth/accountIndex.ts:121\n                \n            \n\n\n            \n                \n                    Returns the total number of accounts that have been registered in the network.\n\n\n                    \n                        Example :\n                        \n                            Prints the total number of registered accounts:\n```typescript\n\nconsole.log(await totalAccounts());\n```\n\n                        \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        The total number of registered accounts.\n\n                    \n                \n            \n        \n    \n\n\n\n\n\n\n    \n\n\n    \n        import Web3 from 'web3';\n\n// Application imports\nimport {environment} from '@src/environments/environment';\n\n/** Fetch the account registry contract's ABI. */\nconst abi: Array = require('@src/assets/js/block-sync/data/AccountRegistry.json');\n/** Establish a connection to the blockchain network. */\nconst web3: Web3 = new Web3(environment.web3Provider);\n\n/**\n * Provides an instance of the accounts registry contract.\n * Allows querying of accounts that have been registered as valid accounts in the network.\n *\n * @remarks\n * This is our interface to the accounts registry contract.\n */\nexport class AccountIndex {\n  /** The instance of the account registry contract. */\n  contract: any;\n  /** The deployed account registry contract's address. */\n  contractAddress: string;\n  /** The account address of the account that deployed the account registry contract. */\n  signerAddress: string;\n\n  /**\n   * Create a connection to the deployed account registry contract.\n   *\n   * @param contractAddress - The deployed account registry contract's address.\n   * @param signerAddress - The account address of the account that deployed the account registry contract.\n   */\n  constructor(contractAddress: string, signerAddress?: string) {\n    this.contractAddress = contractAddress;\n    this.contract = new web3.eth.Contract(abi, this.contractAddress);\n    if (signerAddress) {\n      this.signerAddress = signerAddress;\n    } else {\n      this.signerAddress = web3.eth.accounts[0];\n    }\n  }\n\n  /**\n   * Registers an account to the accounts registry.\n   * Requires availability of the signer address.\n   *\n   * @async\n   * @example\n   * Prints \"true\" for registration of '0xc0ffee254729296a45a3885639AC7E10F9d54979':\n   * ```typescript\n   * console.log(await addToAccountRegistry('0xc0ffee254729296a45a3885639AC7E10F9d54979'));\n   * ```\n   *\n   * @param address - The account address to be registered to the accounts registry contract.\n   * @returns true - If registration is successful or account had already been registered.\n   */\n  public async addToAccountRegistry(address: string): Promise {\n    if (!await this.haveAccount(address)) {\n      return await this.contract.methods.add(address).send({from: this.signerAddress});\n    }\n    return true;\n  }\n\n  /**\n   * Checks whether a specific account address has been registered in the accounts registry.\n   * Returns \"true\" for available and \"false\" otherwise.\n   *\n   * @async\n   * @example\n   * Prints \"true\" or \"false\" depending on whether '0xc0ffee254729296a45a3885639AC7E10F9d54979' has been registered:\n   * ```typescript\n   * console.log(await haveAccount('0xc0ffee254729296a45a3885639AC7E10F9d54979'));\n   * ```\n   *\n   * @param address - The account address to be validated.\n   * @returns true - If the address has been registered in the accounts registry.\n   */\n  public async haveAccount(address: string): Promise {\n    return await this.contract.methods.accountIndex(address).call() !== 0;\n  }\n\n  /**\n   * Returns a specified number of the most recently registered accounts.\n   *\n   * @async\n   * @example\n   * Prints an array of accounts:\n   * ```typescript\n   * console.log(await last(5));\n   * ```\n   *\n   * @param numberOfAccounts - The number of accounts to return from the accounts registry.\n   * @returns An array of registered account addresses.\n   */\n  public async last(numberOfAccounts: number): Promise> {\n    const count: number = await this.totalAccounts();\n    let lowest: number = count - numberOfAccounts - 1;\n    if (lowest  = [];\n    for (let i = count - 1; i > lowest; i--) {\n      const account: string = await this.contract.methods.accounts(i).call();\n      accounts.push(account);\n    }\n    return accounts;\n  }\n\n  /**\n   * Returns the total number of accounts that have been registered in the network.\n   *\n   * @async\n   * @example\n   * Prints the total number of registered accounts:\n   * ```typescript\n   * console.log(await totalAccounts());\n   * ```\n   *\n   * @returns The total number of registered accounts.\n   */\n  public async totalAccounts(): Promise {\n    return await this.contract.methods.count().call();\n  }\n}\n\n    \n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"components/AccountSearchComponent.html":{"url":"components/AccountSearchComponent.html","title":"component - AccountSearchComponent","body":"\n                   \n\n\n\n\n\n  Components\n  AccountSearchComponent\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n        \n            Template\n        \n        \n            Styles\n        \n        \n            DOM Tree\n        \n\n\n\n    \n    File\n\n\n    src/app/pages/accounts/account-search/account-search.component.ts\n\n\n\n\n    \n        Implements\n    \n    \n                    OnInit\n    \n\n\n\n    Metadata\n    \n        \n\n            \n                changeDetection\n                ChangeDetectionStrategy.OnPush\n            \n\n\n\n\n\n\n\n\n\n\n            \n                selector\n                app-account-search\n            \n\n            \n                styleUrls\n                ./account-search.component.scss\n            \n\n\n\n            \n                templateUrl\n                ./account-search.component.html\n            \n\n\n\n\n\n\n\n\n        \n    \n\n\n    \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                addressSearchForm\n                            \n                            \n                                addressSearchLoading\n                            \n                            \n                                addressSearchSubmitted\n                            \n                            \n                                matcher\n                            \n                            \n                                nameSearchForm\n                            \n                            \n                                nameSearchLoading\n                            \n                            \n                                nameSearchSubmitted\n                            \n                            \n                                phoneSearchForm\n                            \n                            \n                                phoneSearchLoading\n                            \n                            \n                                phoneSearchSubmitted\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                ngOnInit\n                            \n                            \n                                    Async\n                                onAddressSearch\n                            \n                            \n                                onNameSearch\n                            \n                            \n                                    Async\n                                onPhoneSearch\n                            \n                        \n                    \n                \n\n\n\n\n\n                    \n                        \n                            Accessors\n                        \n                    \n                    \n                        \n                            \n                                \n                                    nameSearchFormStub\n                                \n                                \n                                    phoneSearchFormStub\n                                \n                                \n                                    addressSearchFormStub\n                                \n                            \n                        \n                    \n        \n    \n\n\n    \n    Constructor\n        \n            \n                \n                    \nconstructor(formBuilder: FormBuilder, userService: UserService, router: Router)\n                    \n                \n                        \n                            \n                                Defined in src/app/pages/accounts/account-search/account-search.component.ts:25\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        formBuilder\n                                                  \n                                                        \n                                                                        FormBuilder\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        userService\n                                                  \n                                                        \n                                                                        UserService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        router\n                                                  \n                                                        \n                                                                        Router\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n\n\n\n\n    \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            ngOnInit\n                        \n                        \n                    \n                \n            \n            \n                \nngOnInit()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/accounts/account-search/account-search.component.ts:33\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            onAddressSearch\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    onAddressSearch()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/accounts/account-search/account-search.component.ts:71\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Promise\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            onNameSearch\n                        \n                        \n                    \n                \n            \n            \n                \nonNameSearch()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/accounts/account-search/account-search.component.ts:49\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            onPhoneSearch\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    onPhoneSearch()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/accounts/account-search/account-search.component.ts:57\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Promise\n\n                    \n                \n            \n        \n    \n\n    \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            addressSearchForm\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         FormGroup\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/account-search/account-search.component.ts:22\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            addressSearchLoading\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         boolean\n\n                        \n                    \n                    \n                        \n                            Default value : false\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/account-search/account-search.component.ts:24\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            addressSearchSubmitted\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         boolean\n\n                        \n                    \n                    \n                        \n                            Default value : false\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/account-search/account-search.component.ts:23\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            matcher\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         CustomErrorStateMatcher\n\n                        \n                    \n                    \n                        \n                            Default value : new CustomErrorStateMatcher()\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/account-search/account-search.component.ts:25\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            nameSearchForm\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         FormGroup\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/account-search/account-search.component.ts:16\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            nameSearchLoading\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         boolean\n\n                        \n                    \n                    \n                        \n                            Default value : false\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/account-search/account-search.component.ts:18\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            nameSearchSubmitted\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         boolean\n\n                        \n                    \n                    \n                        \n                            Default value : false\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/account-search/account-search.component.ts:17\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            phoneSearchForm\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         FormGroup\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/account-search/account-search.component.ts:19\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            phoneSearchLoading\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         boolean\n\n                        \n                    \n                    \n                        \n                            Default value : false\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/account-search/account-search.component.ts:21\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            phoneSearchSubmitted\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         boolean\n\n                        \n                    \n                    \n                        \n                            Default value : false\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/account-search/account-search.component.ts:20\n                            \n                        \n\n\n            \n        \n\n\n    \n    \n        Accessors\n    \n        \n            \n                \n                    \n                        \n                        nameSearchFormStub\n                    \n                \n\n                \n                    \n                        getnameSearchFormStub()\n                    \n                \n                            \n                                \n                                    Defined in src/app/pages/accounts/account-search/account-search.component.ts:45\n                                \n                            \n\n            \n        \n        \n            \n                \n                    \n                        \n                        phoneSearchFormStub\n                    \n                \n\n                \n                    \n                        getphoneSearchFormStub()\n                    \n                \n                            \n                                \n                                    Defined in src/app/pages/accounts/account-search/account-search.component.ts:46\n                                \n                            \n\n            \n        \n        \n            \n                \n                    \n                        \n                        addressSearchFormStub\n                    \n                \n\n                \n                    \n                        getaddressSearchFormStub()\n                    \n                \n                            \n                                \n                                    Defined in src/app/pages/accounts/account-search/account-search.component.ts:47\n                                \n                            \n\n            \n        \n\n\n\n\n    \n        import { Component, OnInit, ChangeDetectionStrategy } from '@angular/core';\nimport {FormBuilder, FormGroup, Validators} from '@angular/forms';\nimport {CustomErrorStateMatcher} from '@app/_helpers';\nimport {UserService} from '@app/_services';\nimport {Router} from '@angular/router';\nimport {strip0x} from '@src/assets/js/ethtx/dist/hex';\nimport {environment} from '@src/environments/environment';\n\n@Component({\n  selector: 'app-account-search',\n  templateUrl: './account-search.component.html',\n  styleUrls: ['./account-search.component.scss'],\n  changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class AccountSearchComponent implements OnInit {\n  nameSearchForm: FormGroup;\n  nameSearchSubmitted: boolean = false;\n  nameSearchLoading: boolean = false;\n  phoneSearchForm: FormGroup;\n  phoneSearchSubmitted: boolean = false;\n  phoneSearchLoading: boolean = false;\n  addressSearchForm: FormGroup;\n  addressSearchSubmitted: boolean = false;\n  addressSearchLoading: boolean = false;\n  matcher: CustomErrorStateMatcher = new CustomErrorStateMatcher();\n\n  constructor(\n    private formBuilder: FormBuilder,\n    private userService: UserService,\n    private router: Router,\n  ) { }\n\n  ngOnInit(): void {\n    this.nameSearchForm = this.formBuilder.group({\n      name: ['', Validators.required],\n    });\n    this.phoneSearchForm = this.formBuilder.group({\n      phoneNumber: ['', Validators.required],\n    });\n    this.addressSearchForm = this.formBuilder.group({\n      address: ['', Validators.required],\n    });\n  }\n\n  get nameSearchFormStub(): any { return this.nameSearchForm.controls; }\n  get phoneSearchFormStub(): any { return this.phoneSearchForm.controls; }\n  get addressSearchFormStub(): any { return this.addressSearchForm.controls; }\n\n  onNameSearch(): void {\n    this.nameSearchSubmitted = true;\n    if (this.nameSearchForm.invalid) { return; }\n    this.nameSearchLoading = true;\n    this.userService.searchAccountByName(this.nameSearchFormStub.name.value);\n    this.nameSearchLoading = false;\n  }\n\n  async onPhoneSearch(): Promise {\n    this.phoneSearchSubmitted = true;\n    if (this.phoneSearchForm.invalid) { return; }\n    this.phoneSearchLoading = true;\n    (await this.userService.getAccountByPhone(this.phoneSearchFormStub.phoneNumber.value, 100)).subscribe(async res => {\n      if (res !== undefined) {\n        await this.router.navigateByUrl(`/accounts/${strip0x(res.identities.evm[`bloxberg:${environment.bloxbergChainId}`][0])}`);\n      } else {\n        alert('Account not found!');\n      }\n    });\n    this.phoneSearchLoading = false;\n  }\n\n  async onAddressSearch(): Promise {\n    this.addressSearchSubmitted = true;\n    if (this.addressSearchForm.invalid) { return; }\n    this.addressSearchLoading = true;\n    (await this.userService.getAccountByAddress(this.addressSearchFormStub.address.value, 100)).subscribe(async res => {\n      if (res !== undefined) {\n        await this.router.navigateByUrl(`/accounts/${strip0x(res.identities.evm[`bloxberg:${environment.bloxbergChainId}`][0])}`);\n      } else {\n        alert('Account not found!');\n      }\n    });\n    this.addressSearchLoading = false;\n  }\n}\n\n    \n\n    \n        \n\n  \n\n  \n  \n  \n\n  \n    \n    \n    \n      \n        \n          Home\n          Accounts\n          Search\n        \n      \n      \n        \n          Accounts\n        \n        \n          \n            \n              \n                \n                   Search \n                  \n                  Phone Number is required.\n                  phone\n                  Phone Number\n                \n                 SEARCH \n              \n            \n            \n              \n                \n                   Search \n                  \n                  Account Address is required.\n                  view_in_ar\n                  Account Address\n                \n                 SEARCH \n              \n            \n          \n        \n      \n    \n    \n  \n  \n  \n  \n\n\n    \n\n    \n                \n                    ./account-search.component.scss\n                \n                \n    \n\n    \n        \n        \n            \n                Legend\n            \n            \n                Html element\n            \n            \n                Component\n            \n            \n                Html element with directive\n            \n        \n    \n\n    \n\n\n\n\n\n\n        var COMPONENT_TEMPLATE = '                                              Home          Accounts          Search                                      Accounts                                                                                       Search                                     Phone Number is required.                  phone                  Phone Number                                 SEARCH                                                                                        Search                                     Account Address is required.                  view_in_ar                  Account Address                                 SEARCH                                                                   '\n    var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n    var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[routerLink]'}];\n    var ACTUAL_COMPONENT = {'name': 'AccountSearchComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"components/AccountsComponent.html":{"url":"components/AccountsComponent.html","title":"component - AccountsComponent","body":"\n                   \n\n\n\n\n\n  Components\n  AccountsComponent\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n        \n            Template\n        \n        \n            Styles\n        \n        \n            DOM Tree\n        \n\n\n\n    \n    File\n\n\n    src/app/pages/accounts/accounts.component.ts\n\n\n\n\n    \n        Implements\n    \n    \n                    OnInit\n    \n\n\n\n    Metadata\n    \n        \n\n            \n                changeDetection\n                ChangeDetectionStrategy.OnPush\n            \n\n\n\n\n\n\n\n\n\n\n            \n                selector\n                app-accounts\n            \n\n            \n                styleUrls\n                ./accounts.component.scss\n            \n\n\n\n            \n                templateUrl\n                ./accounts.component.html\n            \n\n\n\n\n\n\n\n\n        \n    \n\n\n    \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                accounts\n                            \n                            \n                                accountsType\n                            \n                            \n                                accountTypes\n                            \n                            \n                                dataSource\n                            \n                            \n                                defaultPageSize\n                            \n                            \n                                displayedColumns\n                            \n                            \n                                pageSizeOptions\n                            \n                            \n                                paginator\n                            \n                            \n                                sort\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                doFilter\n                            \n                            \n                                downloadCsv\n                            \n                            \n                                filterAccounts\n                            \n                            \n                                ngOnInit\n                            \n                            \n                                refreshPaginator\n                            \n                            \n                                    Async\n                                viewAccount\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n    \n    Constructor\n        \n            \n                \n                    \nconstructor(userService: UserService, loggingService: LoggingService, router: Router)\n                    \n                \n                        \n                            \n                                Defined in src/app/pages/accounts/accounts.component.ts:29\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        userService\n                                                  \n                                                        \n                                                                        UserService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        loggingService\n                                                  \n                                                        \n                                                                        LoggingService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        router\n                                                  \n                                                        \n                                                                        Router\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n\n\n\n\n    \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            doFilter\n                        \n                        \n                    \n                \n            \n            \n                \ndoFilter(value: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/accounts/accounts.component.ts:57\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    value\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            downloadCsv\n                        \n                        \n                    \n                \n            \n            \n                \ndownloadCsv()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/accounts/accounts.component.ts:84\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            filterAccounts\n                        \n                        \n                    \n                \n            \n            \n                \nfilterAccounts()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/accounts/accounts.component.ts:65\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            ngOnInit\n                        \n                        \n                    \n                \n            \n            \n                \nngOnInit()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/accounts/accounts.component.ts:48\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            refreshPaginator\n                        \n                        \n                    \n                \n            \n            \n                \nrefreshPaginator()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/accounts/accounts.component.ts:76\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            viewAccount\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    viewAccount(account)\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/accounts/accounts.component.ts:61\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Optional\n                                \n                            \n                            \n                                \n                                    account\n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n    \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            accounts\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         Array\n\n                        \n                    \n                    \n                        \n                            Default value : []\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/accounts.component.ts:21\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            accountsType\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                    \n                        \n                            Default value : 'all'\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/accounts.component.ts:25\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            accountTypes\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     Array\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/accounts.component.ts:26\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            dataSource\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     MatTableDataSource\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/accounts.component.ts:20\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            defaultPageSize\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         number\n\n                        \n                    \n                    \n                        \n                            Default value : 10\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/accounts.component.ts:23\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            displayedColumns\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     Array\n\n                        \n                    \n                    \n                        \n                            Default value : ['name', 'phone', 'created', 'balance', 'location']\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/accounts.component.ts:22\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            pageSizeOptions\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     Array\n\n                        \n                    \n                    \n                        \n                            Default value : [10, 20, 50, 100]\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/accounts.component.ts:24\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            paginator\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     MatPaginator\n\n                        \n                    \n                    \n                        \n                            Decorators : \n                            \n                            \n                                @ViewChild(MatPaginator)\n                            \n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/accounts.component.ts:28\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            sort\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     MatSort\n\n                        \n                    \n                    \n                        \n                            Decorators : \n                            \n                            \n                                @ViewChild(MatSort)\n                            \n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/accounts.component.ts:29\n                            \n                        \n\n\n            \n        \n\n\n\n\n\n    \n        import {ChangeDetectionStrategy, Component, OnInit, ViewChild} from '@angular/core';\nimport {MatTableDataSource} from '@angular/material/table';\nimport {MatPaginator} from '@angular/material/paginator';\nimport {MatSort} from '@angular/material/sort';\nimport {LoggingService, UserService} from '@app/_services';\nimport {Router} from '@angular/router';\nimport {exportCsv} from '@app/_helpers';\nimport {strip0x} from '@src/assets/js/ethtx/dist/hex';\nimport {first} from 'rxjs/operators';\nimport {environment} from '@src/environments/environment';\nimport {AccountDetails} from '@app/_models';\n\n@Component({\n  selector: 'app-accounts',\n  templateUrl: './accounts.component.html',\n  styleUrls: ['./accounts.component.scss'],\n  changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class AccountsComponent implements OnInit {\n  dataSource: MatTableDataSource;\n  accounts: Array = [];\n  displayedColumns: Array = ['name', 'phone', 'created', 'balance', 'location'];\n  defaultPageSize: number = 10;\n  pageSizeOptions: Array = [10, 20, 50, 100];\n  accountsType: string = 'all';\n  accountTypes: Array;\n\n  @ViewChild(MatPaginator) paginator: MatPaginator;\n  @ViewChild(MatSort) sort: MatSort;\n\n  constructor(\n    private userService: UserService,\n    private loggingService: LoggingService,\n    private router: Router\n  )\n  {\n    (async () => {\n      try {\n          // TODO it feels like this should be in the onInit handler\n        await this.userService.loadAccounts(100);\n      } catch (error) {\n        this.loggingService.sendErrorLevelMessage('Failed to load accounts', this, {error});\n      }\n    })();\n    this.userService.getAccountTypes().pipe(first()).subscribe(res => this.accountTypes = res);\n  }\n\n  ngOnInit(): void {\n    this.userService.accountsSubject.subscribe(accounts => {\n      this.dataSource = new MatTableDataSource(accounts);\n      this.dataSource.paginator = this.paginator;\n      this.dataSource.sort = this.sort;\n      this.accounts = accounts;\n    });\n  }\n\n  doFilter(value: string): void {\n    this.dataSource.filter = value.trim().toLocaleLowerCase();\n  }\n\n  async viewAccount(account): Promise {\n    await this.router.navigateByUrl(`/accounts/${strip0x(account.identities.evm[`bloxberg:${environment.bloxbergChainId}`][0])}`);\n  }\n\n  filterAccounts(): void {\n    if (this.accountsType === 'all') {\n      this.userService.accountsSubject.subscribe(accounts => {\n        this.dataSource.data = accounts;\n        this.accounts = accounts;\n      });\n    } else {\n      this.dataSource.data = this.accounts.filter(account => account.type === this.accountsType);\n    }\n  }\n\n  refreshPaginator(): void {\n    if (!this.dataSource.paginator) {\n      this.dataSource.paginator = this.paginator;\n    }\n\n    this.paginator._changePageSize(this.paginator.pageSize);\n  }\n\n  downloadCsv(): void {\n    exportCsv(this.accounts, 'accounts');\n  }\n}\n\n    \n\n    \n        \n\n  \n\n  \n  \n  \n\n  \n    \n    \n    \n      \n        \n          Home\n          Accounts\n        \n      \n      \n        \n          Accounts\n        \n        \n          \n            \n               ACCOUNT TYPE \n              \n                ALL\n                \n                  {{accountType | uppercase}}\n                \n              \n            \n             SEARCH \n             EXPORT \n          \n\n          \n             Filter \n            \n            search\n          \n\n          \n\n            \n               NAME \n               {{user?.vcard.fn[0].value}} \n            \n\n            \n               PHONE NUMBER \n               {{user?.vcard.tel[0].value}} \n            \n\n            \n               CREATED \n               {{user?.date_registered | date}} \n            \n\n            \n               BALANCE \n               {{user?.balance | tokenRatio}} \n            \n\n            \n               LOCATION \n               {{user?.location.area_name}} \n            \n\n            \n            \n          \n\n          \n        \n      \n    \n    \n  \n  \n  \n  \n\n\n    \n\n    \n                \n                    ./accounts.component.scss\n                \n                \n    \n\n    \n        \n        \n            \n                Legend\n            \n            \n                Html element\n            \n            \n                Component\n            \n            \n                Html element with directive\n            \n        \n    \n\n    \n\n\n\n\n\n\n        var COMPONENT_TEMPLATE = '                                              Home          Accounts                                      Accounts                                                     ACCOUNT TYPE                               ALL                                  {{accountType | uppercase}}                                                       SEARCH              EXPORT                                  Filter                         search                                               NAME                {{user?.vcard.fn[0].value}}                                        PHONE NUMBER                {{user?.vcard.tel[0].value}}                                        CREATED                {{user?.date_registered | date}}                                        BALANCE                {{user?.balance | tokenRatio}}                                        LOCATION                {{user?.location.area_name}}                                                                                       '\n    var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n    var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[routerLink]'}];\n    var ACTUAL_COMPONENT = {'name': 'AccountsComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"modules/AccountsModule.html":{"url":"modules/AccountsModule.html","title":"module - AccountsModule","body":"\n                   \n\n\n\n\n    Modules\n    AccountsModule\n\n\n\n    \n        \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_AccountsModule\n\n\n\ncluster_AccountsModule_declarations\n\n\n\ncluster_AccountsModule_imports\n\n\n\n\nAccountDetailsComponent\n\nAccountDetailsComponent\n\n\n\nAccountsModule\n\nAccountsModule\n\nAccountsModule -->\n\nAccountDetailsComponent->AccountsModule\n\n\n\n\n\nAccountSearchComponent\n\nAccountSearchComponent\n\nAccountsModule -->\n\nAccountSearchComponent->AccountsModule\n\n\n\n\n\nAccountsComponent\n\nAccountsComponent\n\nAccountsModule -->\n\nAccountsComponent->AccountsModule\n\n\n\n\n\nCreateAccountComponent\n\nCreateAccountComponent\n\nAccountsModule -->\n\nCreateAccountComponent->AccountsModule\n\n\n\n\n\nAccountsRoutingModule\n\nAccountsRoutingModule\n\nAccountsModule -->\n\nAccountsRoutingModule->AccountsModule\n\n\n\n\n\nSharedModule\n\nSharedModule\n\nAccountsModule -->\n\nSharedModule->AccountsModule\n\n\n\n\n\nTransactionsModule\n\nTransactionsModule\n\nAccountsModule -->\n\nTransactionsModule->AccountsModule\n\n\n\n\n\n\n    \n    \n    \n        Zoom in\n        Reset\n        Zoom out\n    \n\n\n\n\n\n    \n        Info\n    \n    \n        Source\n    \n\n\n\n    \n\n        \n            File\n        \n        \n            src/app/pages/accounts/accounts.module.ts\n        \n\n\n\n\n        \n            \n                \n                    Declarations\n                    \n                        \n                            AccountDetailsComponent\n                        \n                        \n                            AccountSearchComponent\n                        \n                        \n                            AccountsComponent\n                        \n                        \n                            CreateAccountComponent\n                        \n                    \n                \n                \n                    Imports\n                    \n                        \n                            AccountsRoutingModule\n                        \n                        \n                            SharedModule\n                        \n                        \n                            TransactionsModule\n                        \n                    \n                \n            \n        \n\n\n    \n\n\n    \n        import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { AccountsRoutingModule } from '@pages/accounts/accounts-routing.module';\nimport { AccountsComponent } from '@pages/accounts/accounts.component';\nimport {SharedModule} from '@app/shared/shared.module';\nimport { AccountDetailsComponent } from '@pages/accounts/account-details/account-details.component';\nimport {DataTablesModule} from 'angular-datatables';\nimport { CreateAccountComponent } from '@pages/accounts/create-account/create-account.component';\nimport {MatTableModule} from '@angular/material/table';\nimport {MatSortModule} from '@angular/material/sort';\nimport {MatCheckboxModule} from '@angular/material/checkbox';\nimport {MatPaginatorModule} from '@angular/material/paginator';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatCardModule} from '@angular/material/card';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatSelectModule} from '@angular/material/select';\nimport {TransactionsModule} from '@pages/transactions/transactions.module';\nimport {MatTabsModule} from '@angular/material/tabs';\nimport {MatRippleModule} from '@angular/material/core';\nimport {MatProgressSpinnerModule} from '@angular/material/progress-spinner';\nimport {ReactiveFormsModule} from '@angular/forms';\nimport { AccountSearchComponent } from './account-search/account-search.component';\nimport {MatSnackBarModule} from '@angular/material/snack-bar';\n\n\n@NgModule({\n  declarations: [\n    AccountsComponent,\n    AccountDetailsComponent,\n    CreateAccountComponent,\n    AccountSearchComponent\n  ],\n  imports: [\n    CommonModule,\n    AccountsRoutingModule,\n    SharedModule,\n    DataTablesModule,\n    MatTableModule,\n    MatSortModule,\n    MatCheckboxModule,\n    MatPaginatorModule,\n    MatInputModule,\n    MatFormFieldModule,\n    MatButtonModule,\n    MatCardModule,\n    MatIconModule,\n    MatSelectModule,\n    TransactionsModule,\n    MatTabsModule,\n    MatRippleModule,\n    MatProgressSpinnerModule,\n    ReactiveFormsModule,\n    MatSnackBarModule,\n  ]\n})\nexport class AccountsModule { }\n\n    \n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"modules/AccountsRoutingModule.html":{"url":"modules/AccountsRoutingModule.html","title":"module - AccountsRoutingModule","body":"\n                   \n\n\n\n\n    Modules\n    AccountsRoutingModule\n\n\n\n\n    \n        Info\n    \n    \n        Source\n    \n\n\n\n    \n\n        \n            File\n        \n        \n            src/app/pages/accounts/accounts-routing.module.ts\n        \n\n\n\n\n        \n            \n            \n        \n\n\n    \n\n\n    \n        import { NgModule } from '@angular/core';\nimport { Routes, RouterModule } from '@angular/router';\n\nimport { AccountsComponent } from '@pages/accounts/accounts.component';\nimport {CreateAccountComponent} from '@pages/accounts/create-account/create-account.component';\nimport {AccountDetailsComponent} from '@pages/accounts/account-details/account-details.component';\nimport {AccountSearchComponent} from '@pages/accounts/account-search/account-search.component';\n\nconst routes: Routes = [\n  { path: '', component: AccountsComponent },\n  { path: 'search', component: AccountSearchComponent },\n  // { path: 'create', component: CreateAccountComponent },\n  { path: ':id', component: AccountDetailsComponent },\n  { path: '**', redirectTo: '', pathMatch: 'full' }\n];\n\n@NgModule({\n  imports: [RouterModule.forChild(routes)],\n  exports: [RouterModule]\n})\nexport class AccountsRoutingModule { }\n\n    \n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"interfaces/Action.html":{"url":"interfaces/Action.html","title":"interface - Action","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n\n  Interfaces\n  Action\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_models/mappings.ts\n        \n\n\n\n        \n            Index\n            \n                \n                    \n                        \n                            Properties\n                        \n                    \n                    \n                        \n                            \n                                \n                                        action\n                                \n                                \n                                        approval\n                                \n                                \n                                        id\n                                \n                                \n                                        role\n                                \n                                \n                                        user\n                                \n                            \n                        \n                    \n                \n            \n        \n\n\n\n            \n                Properties\n                    \n                        \n                                \n                                    \n                                        \n                                        action\n                                    \n                                \n                                \n                                    \n                                        action:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        approval\n                                    \n                                \n                                \n                                    \n                                        approval:         boolean\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         boolean\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        id\n                                    \n                                \n                                \n                                    \n                                        id:         number\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         number\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        role\n                                    \n                                \n                                \n                                    \n                                        role:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        user\n                                    \n                                \n                                \n                                    \n                                        user:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n            \n    \n\n\n    \n        interface Action {\n  id: number;\n  user: string;\n  role: string;\n  action: string;\n  approval: boolean;\n}\n\ninterface Category {\n  name: string;\n  products: Array;\n}\n\ninterface AreaName {\n  name: string;\n  locations: Array;\n}\n\ninterface AreaType {\n  name: string;\n  area: Array;\n}\n\nexport {\n  Action,\n  Category,\n  AreaName,\n  AreaType\n};\n\n    \n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"classes/ActivatedRouteStub.html":{"url":"classes/ActivatedRouteStub.html","title":"class - ActivatedRouteStub","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n  Classes\n  ActivatedRouteStub\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/testing/activated-route-stub.ts\n        \n\n            \n                Description\n            \n            \n                An ActivateRoute test double with a paramMap observable.\nUse the setParamMap() method to add the next paramMap value.\n\n            \n\n\n\n\n            \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                    Readonly\n                                paramMap\n                            \n                            \n                                    Private\n                                subject\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                setParamMap\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n            \n    Constructor\n        \n            \n                \n                    \nconstructor(initialParams?: Params)\n                    \n                \n                        \n                            \n                                Defined in src/testing/activated-route-stub.ts:11\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        initialParams\n                                                  \n                                                        \n                                                                        Params\n                                                        \n                                                  \n                                                    \n                                                            Yes\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n            \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                                Readonly\n                            paramMap\n                            \n                        \n                    \n                \n                    \n                        \n                            Default value : this.subject.asObservable()\n                        \n                    \n                        \n                            \n                                    Defined in src/testing/activated-route-stub.ts:18\n                            \n                        \n\n                \n                    \n                        The mock paramMap observable \n\n                    \n                \n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                                Private\n                            subject\n                            \n                        \n                    \n                \n                    \n                        \n                            Default value : new ReplaySubject()\n                        \n                    \n                        \n                            \n                                    Defined in src/testing/activated-route-stub.ts:11\n                            \n                        \n\n\n            \n        \n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            setParamMap\n                        \n                        \n                    \n                \n            \n            \n                \nsetParamMap(params?: Params)\n                \n            \n\n\n            \n                \n                    Defined in src/testing/activated-route-stub.ts:21\n                \n            \n\n\n            \n                \n                    Set the paramMap observables's next value \n\n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    params\n                                    \n                                                Params\n                                    \n\n                                    \n                                        Yes\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n\n\n\n\n\n    \n\n\n    \n        import { convertToParamMap, ParamMap, Params } from '@angular/router';\nimport { ReplaySubject } from 'rxjs';\n\n/**\n * An ActivateRoute test double with a `paramMap` observable.\n * Use the `setParamMap()` method to add the next `paramMap` value.\n */\nexport class ActivatedRouteStub {\n  // Use a ReplaySubject to share previous values with subscribers\n  // and pump new values into the `paramMap` observable\n  private subject = new ReplaySubject();\n\n  constructor(initialParams?: Params) {\n    this.setParamMap(initialParams);\n  }\n\n  /** The mock paramMap observable */\n  readonly paramMap = this.subject.asObservable();\n\n  /** Set the paramMap observables's next value */\n  setParamMap(params?: Params): void {\n    this.subject.next(convertToParamMap(params));\n  }\n}\n\n    \n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"components/AdminComponent.html":{"url":"components/AdminComponent.html","title":"component - AdminComponent","body":"\n                   \n\n\n\n\n\n  Components\n  AdminComponent\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n        \n            Template\n        \n        \n            Styles\n        \n        \n            DOM Tree\n        \n\n\n\n    \n    File\n\n\n    src/app/pages/admin/admin.component.ts\n\n\n\n\n    \n        Implements\n    \n    \n                    OnInit\n    \n\n\n\n    Metadata\n    \n        \n\n            \n                changeDetection\n                ChangeDetectionStrategy.OnPush\n            \n\n\n\n\n\n\n\n\n\n\n            \n                selector\n                app-admin\n            \n\n            \n                styleUrls\n                ./admin.component.scss\n            \n\n\n\n            \n                templateUrl\n                ./admin.component.html\n            \n\n\n\n\n\n\n\n\n        \n    \n\n\n    \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                action\n                            \n                            \n                                actions\n                            \n                            \n                                dataSource\n                            \n                            \n                                displayedColumns\n                            \n                            \n                                paginator\n                            \n                            \n                                sort\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                approvalStatus\n                            \n                            \n                                approveAction\n                            \n                            \n                                disapproveAction\n                            \n                            \n                                doFilter\n                            \n                            \n                                downloadCsv\n                            \n                            \n                                expandCollapse\n                            \n                            \n                                ngOnInit\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n    \n    Constructor\n        \n            \n                \n                    \nconstructor(userService: UserService, loggingService: LoggingService)\n                    \n                \n                        \n                            \n                                Defined in src/app/pages/admin/admin.component.ts:31\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        userService\n                                                  \n                                                        \n                                                                        UserService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        loggingService\n                                                  \n                                                        \n                                                                        LoggingService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n\n\n\n\n    \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            approvalStatus\n                        \n                        \n                    \n                \n            \n            \n                \napprovalStatus(status: boolean)\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/admin/admin.component.ts:53\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    status\n                                    \n                                                boolean\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         string\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            approveAction\n                        \n                        \n                    \n                \n            \n            \n                \napproveAction(action: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/admin/admin.component.ts:57\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    action\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            disapproveAction\n                        \n                        \n                    \n                \n            \n            \n                \ndisapproveAction(action: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/admin/admin.component.ts:63\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    action\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            doFilter\n                        \n                        \n                    \n                \n            \n            \n                \ndoFilter(value: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/admin/admin.component.ts:49\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    value\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            downloadCsv\n                        \n                        \n                    \n                \n            \n            \n                \ndownloadCsv()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/admin/admin.component.ts:73\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            expandCollapse\n                        \n                        \n                    \n                \n            \n            \n                \nexpandCollapse(row)\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/admin/admin.component.ts:69\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Optional\n                                \n                            \n                            \n                                \n                                    row\n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            ngOnInit\n                        \n                        \n                    \n                \n            \n            \n                \nngOnInit()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/admin/admin.component.ts:46\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n\n    \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            action\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         Action\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/admin/admin.component.ts:27\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            actions\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         Array\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/admin/admin.component.ts:28\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            dataSource\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     MatTableDataSource\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/admin/admin.component.ts:25\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            displayedColumns\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     Array\n\n                        \n                    \n                    \n                        \n                            Default value : ['expand', 'user', 'role', 'action', 'status', 'approve']\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/admin/admin.component.ts:26\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            paginator\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     MatPaginator\n\n                        \n                    \n                    \n                        \n                            Decorators : \n                            \n                            \n                                @ViewChild(MatPaginator)\n                            \n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/admin/admin.component.ts:30\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            sort\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     MatSort\n\n                        \n                    \n                    \n                        \n                            Decorators : \n                            \n                            \n                                @ViewChild(MatSort)\n                            \n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/admin/admin.component.ts:31\n                            \n                        \n\n\n            \n        \n\n\n\n\n\n    \n        import {ChangeDetectionStrategy, Component, OnInit, ViewChild} from '@angular/core';\nimport {MatTableDataSource} from '@angular/material/table';\nimport {MatPaginator} from '@angular/material/paginator';\nimport {MatSort} from '@angular/material/sort';\nimport {LoggingService, UserService} from '@app/_services';\nimport {animate, state, style, transition, trigger} from '@angular/animations';\nimport {first} from 'rxjs/operators';\nimport {exportCsv} from '@app/_helpers';\nimport {Action} from '../../_models';\n\n@Component({\n  selector: 'app-admin',\n  templateUrl: './admin.component.html',\n  styleUrls: ['./admin.component.scss'],\n  changeDetection: ChangeDetectionStrategy.OnPush,\n  animations: [\n    trigger('detailExpand', [\n      state('collapsed', style({height: '0px', minHeight: 0, visibility: 'hidden'})),\n      state('expanded', style({height: '*', visibility: 'visible'})),\n      transition('expanded  collapsed', animate('225ms cubic-bezier(0.4, 0.0, 0.2, 1)')),\n    ])\n  ]\n})\nexport class AdminComponent implements OnInit {\n  dataSource: MatTableDataSource;\n  displayedColumns: Array = ['expand', 'user', 'role', 'action', 'status', 'approve'];\n  action: Action;\n  actions: Array;\n\n  @ViewChild(MatPaginator) paginator: MatPaginator;\n  @ViewChild(MatSort) sort: MatSort;\n\n  constructor(\n    private userService: UserService,\n    private loggingService: LoggingService\n  ) {\n    this.userService.getActions();\n    this.userService.actionsSubject.subscribe(actions => {\n      this.dataSource = new MatTableDataSource(actions);\n      this.dataSource.paginator = this.paginator;\n      this.dataSource.sort = this.sort;\n      this.actions = actions;\n    });\n  }\n\n  ngOnInit(): void {\n  }\n\n  doFilter(value: string): void {\n    this.dataSource.filter = value.trim().toLocaleLowerCase();\n  }\n\n  approvalStatus(status: boolean): string {\n    return status ? 'Approved' : 'Unapproved';\n  }\n\n  approveAction(action: any): void {\n    if (!confirm('Approve action?')) { return; }\n    this.userService.approveAction(action.id).pipe(first()).subscribe(res => this.loggingService.sendInfoLevelMessage(res));\n    this.userService.getActions();\n  }\n\n  disapproveAction(action: any): void {\n    if (!confirm('Disapprove action?')) { return; }\n    this.userService.revokeAction(action.id).pipe(first()).subscribe(res => this.loggingService.sendInfoLevelMessage(res));\n    this.userService.getActions();\n  }\n\n  expandCollapse(row): void {\n    row.isExpanded = !row.isExpanded;\n  }\n\n  downloadCsv(): void {\n    exportCsv(this.actions, 'actions');\n  }\n}\n\n    \n\n    \n        \n\n  \n\n  \n  \n  \n\n  \n    \n    \n    \n      \n        \n          Home\n          Admin\n        \n      \n      \n        \n          \n            Actions\n             EXPORT \n          \n        \n        \n\n          \n             Filter \n            \n            search\n          \n\n          \n\n            \n            \n               Expand \n              \n                 + \n                 - \n              \n            \n\n            \n               NAME \n               {{action.user}} \n            \n\n            \n               ROLE \n               {{action.role}} \n            \n\n            \n               ACTION \n               {{action.action}} \n            \n\n            \n               STATUS \n              \n                 {{approvalStatus(action.approval)}} \n                 {{approvalStatus(action.approval)}} \n              \n            \n\n            \n               APPROVE \n              \n                 Approve \n                 Disapprove \n              \n            \n\n            \n            \n              \n                \n                  Staff Name: {{action.user}}\n                  Role: {{action.role}}\n                  Action Details: {{action.action}}\n                  Approval Status: {{action.approval}}\n                \n              \n            \n\n            \n            \n            \n          \n\n          \n        \n      \n    \n    \n  \n  \n  \n  \n\n\n\n    \n\n    \n                \n                    ./admin.component.scss\n                \n                button {\n  width: 6rem;\n}\n\n    \n\n    \n        \n        \n            \n                Legend\n            \n            \n                Html element\n            \n            \n                Component\n            \n            \n                Html element with directive\n            \n        \n    \n\n    \n\n\n\n\n\n\n        var COMPONENT_TEMPLATE = '                                              Home          Admin                                                  Actions             EXPORT                                                  Filter                         search                                                           Expand                                +                  -                                                      NAME                {{action.user}}                                        ROLE                {{action.role}}                                        ACTION                {{action.action}}                                        STATUS                                {{approvalStatus(action.approval)}}                  {{approvalStatus(action.approval)}}                                                      APPROVE                                Approve                  Disapprove                                                                                                   Staff Name: {{action.user}}                  Role: {{action.role}}                  Action Details: {{action.action}}                  Approval Status: {{action.approval}}                                                                                                                                '\n    var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n    var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[routerLink]'}];\n    var ACTUAL_COMPONENT = {'name': 'AdminComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"modules/AdminModule.html":{"url":"modules/AdminModule.html","title":"module - AdminModule","body":"\n                   \n\n\n\n\n    Modules\n    AdminModule\n\n\n\n    \n        \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_AdminModule\n\n\n\ncluster_AdminModule_declarations\n\n\n\ncluster_AdminModule_imports\n\n\n\n\nAdminComponent\n\nAdminComponent\n\n\n\nAdminModule\n\nAdminModule\n\nAdminModule -->\n\nAdminComponent->AdminModule\n\n\n\n\n\nAdminRoutingModule\n\nAdminRoutingModule\n\nAdminModule -->\n\nAdminRoutingModule->AdminModule\n\n\n\n\n\nSharedModule\n\nSharedModule\n\nAdminModule -->\n\nSharedModule->AdminModule\n\n\n\n\n\n\n    \n    \n    \n        Zoom in\n        Reset\n        Zoom out\n    \n\n\n\n\n\n    \n        Info\n    \n    \n        Source\n    \n\n\n\n    \n\n        \n            File\n        \n        \n            src/app/pages/admin/admin.module.ts\n        \n\n\n\n\n        \n            \n                \n                    Declarations\n                    \n                        \n                            AdminComponent\n                        \n                    \n                \n                \n                    Imports\n                    \n                        \n                            AdminRoutingModule\n                        \n                        \n                            SharedModule\n                        \n                    \n                \n            \n        \n\n\n    \n\n\n    \n        import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { AdminRoutingModule } from '@pages/admin/admin-routing.module';\nimport { AdminComponent } from '@pages/admin/admin.component';\nimport {SharedModule} from '@app/shared/shared.module';\nimport {MatCardModule} from '@angular/material/card';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatTableModule} from '@angular/material/table';\nimport {MatSortModule} from '@angular/material/sort';\nimport {MatPaginatorModule} from '@angular/material/paginator';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatRippleModule} from '@angular/material/core';\n\n\n@NgModule({\n  declarations: [AdminComponent],\n    imports: [\n        CommonModule,\n        AdminRoutingModule,\n        SharedModule,\n        MatCardModule,\n        MatFormFieldModule,\n        MatInputModule,\n        MatIconModule,\n        MatTableModule,\n        MatSortModule,\n        MatPaginatorModule,\n        MatButtonModule,\n        MatRippleModule\n    ]\n})\nexport class AdminModule { }\n\n    \n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"modules/AdminRoutingModule.html":{"url":"modules/AdminRoutingModule.html","title":"module - AdminRoutingModule","body":"\n                   \n\n\n\n\n    Modules\n    AdminRoutingModule\n\n\n\n\n    \n        Info\n    \n    \n        Source\n    \n\n\n\n    \n\n        \n            File\n        \n        \n            src/app/pages/admin/admin-routing.module.ts\n        \n\n\n\n\n        \n            \n            \n        \n\n\n    \n\n\n    \n        import { NgModule } from '@angular/core';\nimport { Routes, RouterModule } from '@angular/router';\n\nimport { AdminComponent } from '@pages/admin/admin.component';\n\nconst routes: Routes = [{ path: '', component: AdminComponent }];\n\n@NgModule({\n  imports: [RouterModule.forChild(routes)],\n  exports: [RouterModule]\n})\nexport class AdminRoutingModule { }\n\n    \n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"components/AppComponent.html":{"url":"components/AppComponent.html","title":"component - AppComponent","body":"\n                   \n\n\n\n\n\n  Components\n  AppComponent\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n        \n            Template\n        \n        \n            Styles\n        \n        \n            DOM Tree\n        \n\n\n\n    \n    File\n\n\n    src/app/app.component.ts\n\n\n\n\n\n\n\n    Metadata\n    \n        \n\n            \n                changeDetection\n                ChangeDetectionStrategy.OnPush\n            \n\n\n\n\n\n\n\n\n\n\n            \n                selector\n                app-root\n            \n\n            \n                styleUrls\n                ./app.component.scss\n            \n\n\n\n            \n                templateUrl\n                ./app.component.html\n            \n\n\n\n\n\n\n\n\n        \n    \n\n\n    \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                mediaQuery\n                            \n                            \n                                readyState\n                            \n                            \n                                readyStateTarget\n                            \n                            \n                                title\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                onResize\n                            \n                        \n                    \n                \n\n\n\n\n                \n                    \n                        HostListeners\n                    \n                \n                \n                    \n                        \n                            \n                                window:cic_convert\n                            \n                            \n                                window:cic_transfer\n                            \n                        \n                    \n                \n\n        \n    \n\n\n    \n    Constructor\n        \n            \n                \n                    \nconstructor(authService: AuthService, transactionService: TransactionService, loggingService: LoggingService, errorDialogService: ErrorDialogService)\n                    \n                \n                        \n                            \n                                Defined in src/app/app.component.ts:15\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        authService\n                                                  \n                                                        \n                                                                        AuthService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        transactionService\n                                                  \n                                                        \n                                                                        TransactionService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        loggingService\n                                                  \n                                                        \n                                                                        LoggingService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        errorDialogService\n                                                  \n                                                        \n                                                                        ErrorDialogService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n\n\n\n    \n    HostListeners    \n        \n            \n                \n                    \n                    \n                        \n                            window:cic_convert\n                        \n                        \n                    \n                \n            \n            \n                \n                    Arguments : '$event' \n                \n            \n            \n                \nwindow:cic_convert(event: CustomEvent)\n                \n            \n\n\n            \n                \n                    Defined in src/app/app.component.ts:74\n                \n            \n\n\n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            window:cic_transfer\n                        \n                        \n                    \n                \n            \n            \n                \n                    Arguments : '$event' \n                \n            \n            \n                \nwindow:cic_transfer(event: CustomEvent)\n                \n            \n\n\n            \n                \n                    Defined in src/app/app.component.ts:68\n                \n            \n\n\n        \n    \n\n    \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            onResize\n                        \n                        \n                    \n                \n            \n            \n                \nonResize(e)\n                \n            \n\n\n            \n                \n                    Defined in src/app/app.component.ts:43\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Optional\n                                \n                            \n                            \n                                \n                                    e\n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n    \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            mediaQuery\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     MediaQueryList\n\n                        \n                    \n                    \n                        \n                            Default value : window.matchMedia('(max-width: 768px)')\n                        \n                    \n                        \n                            \n                                    Defined in src/app/app.component.ts:15\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            readyState\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         number\n\n                        \n                    \n                    \n                        \n                            Default value : 0\n                        \n                    \n                        \n                            \n                                    Defined in src/app/app.component.ts:14\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            readyStateTarget\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         number\n\n                        \n                    \n                    \n                        \n                            Default value : 3\n                        \n                    \n                        \n                            \n                                    Defined in src/app/app.component.ts:13\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            title\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                    \n                        \n                            Default value : 'CICADA'\n                        \n                    \n                        \n                            \n                                    Defined in src/app/app.component.ts:12\n                            \n                        \n\n\n            \n        \n\n\n\n\n\n    \n        import {ChangeDetectionStrategy, Component, HostListener} from '@angular/core';\nimport {AuthService, ErrorDialogService, LoggingService, TransactionService} from '@app/_services';\nimport {catchError} from 'rxjs/operators';\n\n@Component({\n  selector: 'app-root',\n  templateUrl: './app.component.html',\n  styleUrls: ['./app.component.scss'],\n  changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class AppComponent {\n  title = 'CICADA';\n  readyStateTarget: number = 3;\n  readyState: number = 0;\n  mediaQuery: MediaQueryList = window.matchMedia('(max-width: 768px)');\n\n  constructor(\n    private authService: AuthService,\n    private transactionService: TransactionService,\n    private loggingService: LoggingService,\n    private errorDialogService: ErrorDialogService\n  ) {\n    (async () => {\n      try {\n        await this.authService.init();\n        // this.authService.getPublicKeys()\n        //   .pipe(catchError(async (error) => {\n        //     this.loggingService.sendErrorLevelMessage('Unable to load trusted public keys.', this, {error});\n        //     this.errorDialogService.openDialog({message: 'Trusted keys endpoint can\\'t be reached. Please try again later.'});\n        // })).subscribe(this.authService.mutableKeyStore.importPublicKey);\n        const publicKeys = await this.authService.getPublicKeys();\n        await this.authService.mutableKeyStore.importPublicKey(publicKeys);\n      } catch (error) {\n        this.errorDialogService.openDialog({message: 'Trusted keys endpoint can\\'t be reached. Please try again later.'});\n        // TODO do something to halt user progress...show a sad cicada page 🦗?\n      }\n    })();\n    this.mediaQuery.addListener(this.onResize);\n    this.onResize(this.mediaQuery);\n  }\n\n  // Load resize\n  onResize(e): void {\n    const sidebar: HTMLElement = document.getElementById('sidebar');\n    const content: HTMLElement = document.getElementById('content');\n    const sidebarCollapse: HTMLElement = document.getElementById('sidebarCollapse');\n    if (sidebarCollapse?.classList.contains('active')) {\n      sidebarCollapse?.classList.remove('active');\n    }\n    if (e.matches) {\n      if (!sidebar?.classList.contains('active')) {\n        sidebar?.classList.add('active');\n      }\n      if (!content?.classList.contains('active')) {\n        content?.classList.add('active');\n      }\n    } else {\n      if (sidebar?.classList.contains('active')) {\n        sidebar?.classList.remove('active');\n      }\n      if (content?.classList.contains('active')) {\n        content?.classList.remove('active');\n      }\n    }\n  }\n\n  @HostListener('window:cic_transfer', ['$event'])\n  async cicTransfer(event: CustomEvent): Promise {\n    const transaction: any = event.detail.tx;\n    await this.transactionService.setTransaction(transaction, 100);\n  }\n\n  @HostListener('window:cic_convert', ['$event'])\n  async cicConvert(event: CustomEvent): Promise {\n    const conversion: any = event.detail.tx;\n    await this.transactionService.setConversion(conversion, 100);\n  }\n}\n\n    \n\n    \n        \n\n    \n\n    \n                \n                    ./app.component.scss\n                \n                \n    \n\n    \n        \n        \n            \n                Legend\n            \n            \n                Html element\n            \n            \n                Component\n            \n            \n                Html element with directive\n            \n        \n    \n\n    \n\n\n\n\n\n\n        var COMPONENT_TEMPLATE = ''\n    var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n    var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[routerLink]'}];\n    var ACTUAL_COMPONENT = {'name': 'AppComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"modules/AppModule.html":{"url":"modules/AppModule.html","title":"module - AppModule","body":"\n                   \n\n\n\n\n    Modules\n    AppModule\n\n\n\n    \n        \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_AppModule\n\n\n\ncluster_AppModule_imports\n\n\n\ncluster_AppModule_providers\n\n\n\ncluster_AppModule_declarations\n\n\n\ncluster_AppModule_bootstrap\n\n\n\n\nAppComponent\n\nAppComponent\n\n\n\nAppModule\n\nAppModule\n\nAppModule -->\n\nAppComponent->AppModule\n\n\n\n\n\nAppComponent \n\nAppComponent \n\nAppComponent  -->\n\nAppModule->AppComponent \n\n\n\n\n\nAppRoutingModule\n\nAppRoutingModule\n\nAppModule -->\n\nAppRoutingModule->AppModule\n\n\n\n\n\nSharedModule\n\nSharedModule\n\nAppModule -->\n\nSharedModule->AppModule\n\n\n\n\n\nErrorInterceptor\n\nErrorInterceptor\n\nAppModule -->\n\nErrorInterceptor->AppModule\n\n\n\n\n\nGlobalErrorHandler\n\nGlobalErrorHandler\n\nAppModule -->\n\nGlobalErrorHandler->AppModule\n\n\n\n\n\nHttpConfigInterceptor\n\nHttpConfigInterceptor\n\nAppModule -->\n\nHttpConfigInterceptor->AppModule\n\n\n\n\n\nLoggingInterceptor\n\nLoggingInterceptor\n\nAppModule -->\n\nLoggingInterceptor->AppModule\n\n\n\n\n\n\n    \n    \n    \n        Zoom in\n        Reset\n        Zoom out\n    \n\n\n\n\n\n    \n        Info\n    \n    \n        Source\n    \n\n\n\n    \n\n        \n            File\n        \n        \n            src/app/app.module.ts\n        \n\n\n\n\n        \n            \n                \n                    Declarations\n                    \n                        \n                            AppComponent\n                        \n                    \n                \n                \n                    Providers\n                    \n                        \n                            ErrorInterceptor\n                        \n                        \n                            GlobalErrorHandler\n                        \n                        \n                            HttpConfigInterceptor\n                        \n                        \n                            LoggingInterceptor\n                        \n                    \n                \n                \n                    Imports\n                    \n                        \n                            AppRoutingModule\n                        \n                        \n                            SharedModule\n                        \n                    \n                \n                \n                    Bootstrap\n                    \n                        \n                            AppComponent\n                        \n                    \n                \n            \n        \n\n\n    \n\n\n    \n        import {BrowserModule} from '@angular/platform-browser';\nimport {ErrorHandler, NgModule} from '@angular/core';\n\nimport {AppRoutingModule} from '@app/app-routing.module';\nimport {AppComponent} from '@app/app.component';\nimport {BrowserAnimationsModule} from '@angular/platform-browser/animations';\nimport {HTTP_INTERCEPTORS, HttpClientModule} from '@angular/common/http';\nimport {\n  GlobalErrorHandler,\n  MockBackendProvider,\n} from '@app/_helpers';\nimport {DataTablesModule} from 'angular-datatables';\nimport {SharedModule} from '@app/shared/shared.module';\nimport {MatTableModule} from '@angular/material/table';\nimport {AuthGuard} from '@app/_guards';\nimport {LoggerModule} from 'ngx-logger';\nimport {environment} from '@src/environments/environment';\nimport {ErrorInterceptor, HttpConfigInterceptor, LoggingInterceptor} from '@app/_interceptors';\nimport {MutablePgpKeyStore} from '@app/_pgp';\n\n@NgModule({\n  declarations: [\n    AppComponent\n  ],\n  imports: [\n    BrowserModule,\n    AppRoutingModule,\n    BrowserAnimationsModule,\n    HttpClientModule,\n    DataTablesModule,\n    SharedModule,\n    MatTableModule,\n    LoggerModule.forRoot({\n      level: environment.logLevel,\n      serverLogLevel: environment.serverLogLevel,\n      serverLoggingUrl: `${environment.loggingUrl}/api/logs/`,\n      disableConsoleLogging: false\n    })\n  ],\n  providers: [\n    AuthGuard,\n    MutablePgpKeyStore,\n    MockBackendProvider,\n    GlobalErrorHandler,\n    { provide: ErrorHandler, useClass: GlobalErrorHandler },\n    { provide: HTTP_INTERCEPTORS, useClass: HttpConfigInterceptor, multi: true },\n    { provide: HTTP_INTERCEPTORS, useClass: ErrorInterceptor, multi: true },\n    { provide: HTTP_INTERCEPTORS, useClass: LoggingInterceptor, multi: true },\n  ],\n  bootstrap: [AppComponent]\n})\nexport class AppModule { }\n\n    \n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"modules/AppRoutingModule.html":{"url":"modules/AppRoutingModule.html","title":"module - AppRoutingModule","body":"\n                   \n\n\n\n\n    Modules\n    AppRoutingModule\n\n\n\n\n    \n        Info\n    \n    \n        Source\n    \n\n\n\n    \n\n        \n            File\n        \n        \n            src/app/app-routing.module.ts\n        \n\n\n\n\n        \n            \n            \n        \n\n\n    \n\n\n    \n        import { NgModule } from '@angular/core';\nimport {Routes, RouterModule, PreloadAllModules} from '@angular/router';\nimport {AuthGuard} from '@app/_guards';\n\nconst routes: Routes = [\n  { path: 'auth', loadChildren: () => \"import('@app/auth/auth.module').then(m => m.AuthModule)\" },\n  { path: '', loadChildren: () => \"import('@pages/pages.module').then(m => m.PagesModule)\", canActivate: [AuthGuard] },\n  { path: '**', redirectTo: '', pathMatch: 'full' }\n];\n\n@NgModule({\n  imports: [RouterModule.forRoot(routes, {\n    preloadingStrategy: PreloadAllModules\n  })],\n  exports: [RouterModule]\n})\nexport class AppRoutingModule { }\n\n    \n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"interfaces/AreaName.html":{"url":"interfaces/AreaName.html","title":"interface - AreaName","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n\n  Interfaces\n  AreaName\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_models/mappings.ts\n        \n\n\n\n        \n            Index\n            \n                \n                    \n                        \n                            Properties\n                        \n                    \n                    \n                        \n                            \n                                \n                                        locations\n                                \n                                \n                                        name\n                                \n                            \n                        \n                    \n                \n            \n        \n\n\n\n            \n                Properties\n                    \n                        \n                                \n                                    \n                                        \n                                        locations\n                                    \n                                \n                                \n                                    \n                                        locations:     Array\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :     Array\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        name\n                                    \n                                \n                                \n                                    \n                                        name:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n            \n    \n\n\n    \n        interface Action {\n  id: number;\n  user: string;\n  role: string;\n  action: string;\n  approval: boolean;\n}\n\ninterface Category {\n  name: string;\n  products: Array;\n}\n\ninterface AreaName {\n  name: string;\n  locations: Array;\n}\n\ninterface AreaType {\n  name: string;\n  area: Array;\n}\n\nexport {\n  Action,\n  Category,\n  AreaName,\n  AreaType\n};\n\n    \n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"interfaces/AreaType.html":{"url":"interfaces/AreaType.html","title":"interface - AreaType","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n\n  Interfaces\n  AreaType\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_models/mappings.ts\n        \n\n\n\n        \n            Index\n            \n                \n                    \n                        \n                            Properties\n                        \n                    \n                    \n                        \n                            \n                                \n                                        area\n                                \n                                \n                                        name\n                                \n                            \n                        \n                    \n                \n            \n        \n\n\n\n            \n                Properties\n                    \n                        \n                                \n                                    \n                                        \n                                        area\n                                    \n                                \n                                \n                                    \n                                        area:     Array\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :     Array\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        name\n                                    \n                                \n                                \n                                    \n                                        name:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n            \n    \n\n\n    \n        interface Action {\n  id: number;\n  user: string;\n  role: string;\n  action: string;\n  approval: boolean;\n}\n\ninterface Category {\n  name: string;\n  products: Array;\n}\n\ninterface AreaName {\n  name: string;\n  locations: Array;\n}\n\ninterface AreaType {\n  name: string;\n  area: Array;\n}\n\nexport {\n  Action,\n  Category,\n  AreaName,\n  AreaType\n};\n\n    \n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"components/AuthComponent.html":{"url":"components/AuthComponent.html","title":"component - AuthComponent","body":"\n                   \n\n\n\n\n\n  Components\n  AuthComponent\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n        \n            Template\n        \n        \n            Styles\n        \n        \n            DOM Tree\n        \n\n\n\n    \n    File\n\n\n    src/app/auth/auth.component.ts\n\n\n\n\n    \n        Implements\n    \n    \n                    OnInit\n    \n\n\n\n    Metadata\n    \n        \n\n            \n                changeDetection\n                ChangeDetectionStrategy.OnPush\n            \n\n\n\n\n\n\n\n\n\n\n            \n                selector\n                app-auth\n            \n\n            \n                styleUrls\n                ./auth.component.scss\n            \n\n\n\n            \n                templateUrl\n                ./auth.component.html\n            \n\n\n\n\n\n\n\n\n        \n    \n\n\n    \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                keyForm\n                            \n                            \n                                loading\n                            \n                            \n                                matcher\n                            \n                            \n                                submitted\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                login\n                            \n                            \n                                    Async\n                                ngOnInit\n                            \n                            \n                                    Async\n                                onSubmit\n                            \n                            \n                                switchWindows\n                            \n                            \n                                toggleDisplay\n                            \n                        \n                    \n                \n\n\n\n\n\n                    \n                        \n                            Accessors\n                        \n                    \n                    \n                        \n                            \n                                \n                                    keyFormStub\n                                \n                            \n                        \n                    \n        \n    \n\n\n    \n    Constructor\n        \n            \n                \n                    \nconstructor(authService: AuthService, formBuilder: FormBuilder, router: Router)\n                    \n                \n                        \n                            \n                                Defined in src/app/auth/auth.component.ts:17\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        authService\n                                                  \n                                                        \n                                                                        AuthService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        formBuilder\n                                                  \n                                                        \n                                                                        FormBuilder\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        router\n                                                  \n                                                        \n                                                                        Router\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n\n\n\n\n    \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            login\n                        \n                        \n                    \n                \n            \n            \n                \nlogin()\n                \n            \n\n\n            \n                \n                    Defined in src/app/auth/auth.component.ts:48\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            ngOnInit\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    ngOnInit()\n                \n            \n\n\n            \n                \n                    Defined in src/app/auth/auth.component.ts:25\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Promise\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            onSubmit\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    onSubmit()\n                \n            \n\n\n            \n                \n                    Defined in src/app/auth/auth.component.ts:38\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Promise\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            switchWindows\n                        \n                        \n                    \n                \n            \n            \n                \nswitchWindows()\n                \n            \n\n\n            \n                \n                    Defined in src/app/auth/auth.component.ts:59\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            toggleDisplay\n                        \n                        \n                    \n                \n            \n            \n                \ntoggleDisplay(element: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/auth/auth.component.ts:67\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    element\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n    \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            keyForm\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         FormGroup\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/auth/auth.component.ts:14\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            loading\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         boolean\n\n                        \n                    \n                    \n                        \n                            Default value : false\n                        \n                    \n                        \n                            \n                                    Defined in src/app/auth/auth.component.ts:16\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            matcher\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         CustomErrorStateMatcher\n\n                        \n                    \n                    \n                        \n                            Default value : new CustomErrorStateMatcher()\n                        \n                    \n                        \n                            \n                                    Defined in src/app/auth/auth.component.ts:17\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            submitted\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         boolean\n\n                        \n                    \n                    \n                        \n                            Default value : false\n                        \n                    \n                        \n                            \n                                    Defined in src/app/auth/auth.component.ts:15\n                            \n                        \n\n\n            \n        \n\n\n    \n    \n        Accessors\n    \n        \n            \n                \n                    \n                        \n                        keyFormStub\n                    \n                \n\n                \n                    \n                        getkeyFormStub()\n                    \n                \n                            \n                                \n                                    Defined in src/app/auth/auth.component.ts:36\n                                \n                            \n\n            \n        \n\n\n\n\n    \n        import {ChangeDetectionStrategy, Component, OnInit} from '@angular/core';\nimport {FormBuilder, FormGroup, Validators} from '@angular/forms';\nimport {CustomErrorStateMatcher} from '@app/_helpers';\nimport {AuthService} from '@app/_services';\nimport {Router} from '@angular/router';\n\n@Component({\n  selector: 'app-auth',\n  templateUrl: './auth.component.html',\n  styleUrls: ['./auth.component.scss'],\n  changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class AuthComponent implements OnInit {\n  keyForm: FormGroup;\n  submitted: boolean = false;\n  loading: boolean = false;\n  matcher: CustomErrorStateMatcher = new CustomErrorStateMatcher();\n\n  constructor(\n    private authService: AuthService,\n    private formBuilder: FormBuilder,\n    private router: Router\n  ) { }\n\n  async ngOnInit(): Promise {\n    this.keyForm = this.formBuilder.group({\n      key: ['', Validators.required],\n    });\n    await this.authService.init();\n    // if (this.authService.privateKey !== undefined) {\n    //   const setKey = await this.authService.setKey(this.authService.privateKey);\n    //   }\n    // }\n  }\n\n  get keyFormStub(): any { return this.keyForm.controls; }\n\n  async onSubmit(): Promise {\n    this.submitted = true;\n\n    if (this.keyForm.invalid) { return; }\n\n    this.loading = true;\n    await this.authService.setKey(this.keyFormStub.key.value);\n    this.loading = false;\n  }\n\n  login(): void {\n     // TODO check if we have privatekey\n     // Send us to home if we have a private key\n     // talk to meta somehow\n     // in the error interceptor if 401/403 handle it\n     // if 200 go /home\n    if (this.authService.getPrivateKey()) {\n      this.router.navigate(['/home']);\n    }\n  }\n\n  switchWindows(): void {\n    this.authService.sessionToken = undefined;\n    const divOne: HTMLElement = document.getElementById('one');\n    const divTwo: HTMLElement = document.getElementById('two');\n    this.toggleDisplay(divOne);\n    this.toggleDisplay(divTwo);\n  }\n\n  toggleDisplay(element: any): void {\n    const style: string = window.getComputedStyle(element).display;\n    if (style === 'block') {\n      element.style.display = 'none';\n    } else {\n      element.style.display = 'block';\n    }\n  }\n}\n\n    \n\n    \n        \n  \n    \n      \n        \n          \n            CICADA\n          \n        \n        \n\n          \n            Add Private Key\n          \n\n          \n\n            \n              Private Key\n              \n              \n                Private Key is required.\n              \n            \n\n            \n              \n              Add Key\n            \n\n          \n        \n        \n\n          \n            \n             Login \n          \n\n          \n            \n              Change private key? Enter private key\n             \n          \n          \n        \n      \n    \n  \n\n\n    \n\n    \n                \n                    ./auth.component.scss\n                \n                \n    \n\n    \n        \n        \n            \n                Legend\n            \n            \n                Html element\n            \n            \n                Component\n            \n            \n                Html element with directive\n            \n        \n    \n\n    \n\n\n\n\n\n\n        var COMPONENT_TEMPLATE = '                                          CICADA                                                Add Private Key                                              Private Key                                            Private Key is required.                                                                  Add Key                                                                         Login                                               Change private key? Enter private key                                                     '\n    var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n    var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[routerLink]'}];\n    var ACTUAL_COMPONENT = {'name': 'AuthComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"guards/AuthGuard.html":{"url":"guards/AuthGuard.html","title":"guard - AuthGuard","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n    Guards\n    AuthGuard\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n        \n            \n            File\n            \n            \n                src/app/_guards/auth.guard.ts\n            \n\n                \n                Description\n                \n                \n                    Auth guard implementation.\nDictates access to routes depending on the authentication status.\n\n                \n\n\n\n                \n                Example\n                \n                \n                \n\n                \n    Index\n    \n        \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                canActivate\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n                \n    Constructor\n        \n            \n                \n                    \nconstructor(router: Router)\n                    \n                \n                        \n                            \n                                Defined in src/app/_guards/auth.guard.ts:17\n                            \n                        \n\n                \n                    \n                            Instantiates the auth guard class.\n\n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                                    Description\n                                            \n                                        \n                                        \n                                                \n                                                        router\n                                                  \n                                                        \n                                                                        Router\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                        \n                                                                \nA service that provides navigation among views and URL manipulation capabilities.\n\n\n                                                        \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n                \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            canActivate\n                        \n                        \n                    \n                \n            \n            \n                \ncanActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_guards/auth.guard.ts:35\n                \n            \n\n\n            \n                \n                    Returns whether navigation to a specific route is acceptable.\nChecks if the user has uploaded a private key.\n\n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                    Description\n                                \n                            \n                            \n                                \n                                    route\n                                    \n                                                ActivatedRouteSnapshot\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                    \n                                        \nContains the information about a route associated with a component loaded in an outlet at a particular moment in time.\nActivatedRouteSnapshot can also be used to traverse the router state tree.\n\n\n                                    \n                                \n                                \n                                    state\n                                    \n                                                RouterStateSnapshot\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                    \n                                        \nRepresents the state of the router at a moment in time.\n\n\n                                    \n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Observable | Promise | boolean | UrlTree\n\n                    \n                    \n                        true - If there is an active private key in the user's localStorage.\n\n                    \n                \n            \n        \n    \n\n        \n\n\n        \n            import { Injectable } from '@angular/core';\nimport {ActivatedRouteSnapshot, CanActivate, Router, RouterStateSnapshot, UrlTree} from '@angular/router';\n\n// Third party imports\nimport { Observable } from 'rxjs';\n\n/**\n * Auth guard implementation.\n * Dictates access to routes depending on the authentication status.\n *\n * @implements CanActivate\n */\n@Injectable({\n  providedIn: 'root'\n})\nexport class AuthGuard implements CanActivate {\n\n  /**\n   * Instantiates the auth guard class.\n   *\n   * @param router - A service that provides navigation among views and URL manipulation capabilities.\n   */\n  constructor(private router: Router) {}\n\n  /**\n   * Returns whether navigation to a specific route is acceptable.\n   * Checks if the user has uploaded a private key.\n   *\n   * @param route - Contains the information about a route associated with a component loaded in an outlet at a particular moment in time.\n   * ActivatedRouteSnapshot can also be used to traverse the router state tree.\n   * @param state - Represents the state of the router at a moment in time.\n   * @returns true - If there is an active private key in the user's localStorage.\n   */\n  canActivate(\n    route: ActivatedRouteSnapshot,\n    state: RouterStateSnapshot): Observable | Promise | boolean | UrlTree {\n    if (localStorage.getItem(btoa('CICADA_PRIVATE_KEY'))) {\n      return true;\n    }\n    this.router.navigate(['/auth']);\n    return false;\n  }\n\n}\n\n        \n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"modules/AuthModule.html":{"url":"modules/AuthModule.html","title":"module - AuthModule","body":"\n                   \n\n\n\n\n    Modules\n    AuthModule\n\n\n\n    \n        \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_AuthModule\n\n\n\ncluster_AuthModule_imports\n\n\n\ncluster_AuthModule_declarations\n\n\n\n\nAuthComponent\n\nAuthComponent\n\n\n\nAuthModule\n\nAuthModule\n\nAuthModule -->\n\nAuthComponent->AuthModule\n\n\n\n\n\nPasswordToggleDirective\n\nPasswordToggleDirective\n\nAuthModule -->\n\nPasswordToggleDirective->AuthModule\n\n\n\n\n\nAuthRoutingModule\n\nAuthRoutingModule\n\nAuthModule -->\n\nAuthRoutingModule->AuthModule\n\n\n\n\n\n\n    \n    \n    \n        Zoom in\n        Reset\n        Zoom out\n    \n\n\n\n\n\n    \n        Info\n    \n    \n        Source\n    \n\n\n\n    \n\n        \n            File\n        \n        \n            src/app/auth/auth.module.ts\n        \n\n\n\n\n        \n            \n                \n                    Declarations\n                    \n                        \n                            AuthComponent\n                        \n                        \n                            PasswordToggleDirective\n                        \n                    \n                \n                \n                    Imports\n                    \n                        \n                            AuthRoutingModule\n                        \n                    \n                \n            \n        \n\n\n    \n\n\n    \n        import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { AuthRoutingModule } from '@app/auth/auth-routing.module';\nimport { AuthComponent } from '@app/auth/auth.component';\nimport {ReactiveFormsModule} from '@angular/forms';\nimport {PasswordToggleDirective} from '@app/auth/_directives/password-toggle.directive';\nimport {MatCardModule} from '@angular/material/card';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatRippleModule} from '@angular/material/core';\n\n\n@NgModule({\n  declarations: [AuthComponent, PasswordToggleDirective],\n  imports: [\n    CommonModule,\n    AuthRoutingModule,\n    ReactiveFormsModule,\n    MatCardModule,\n    MatSelectModule,\n    MatInputModule,\n    MatButtonModule,\n    MatRippleModule,\n  ]\n})\nexport class AuthModule { }\n\n    \n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"modules/AuthRoutingModule.html":{"url":"modules/AuthRoutingModule.html","title":"module - AuthRoutingModule","body":"\n                   \n\n\n\n\n    Modules\n    AuthRoutingModule\n\n\n\n\n    \n        Info\n    \n    \n        Source\n    \n\n\n\n    \n\n        \n            File\n        \n        \n            src/app/auth/auth-routing.module.ts\n        \n\n\n\n\n        \n            \n            \n        \n\n\n    \n\n\n    \n        import { NgModule } from '@angular/core';\nimport { Routes, RouterModule } from '@angular/router';\n\nimport { AuthComponent } from '@app/auth/auth.component';\n\nconst routes: Routes = [\n  { path: '', component: AuthComponent },\n  { path: '**', redirectTo: '', pathMatch: 'full'},\n];\n\n@NgModule({\n  imports: [RouterModule.forChild(routes)],\n  exports: [RouterModule]\n})\nexport class AuthRoutingModule { }\n\n    \n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"injectables/AuthService.html":{"url":"injectables/AuthService.html","title":"injectable - AuthService","body":"\n                   \n\n\n\n\n\n\n\n\n  Injectables\n  AuthService\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_services/auth.service.ts\n        \n\n\n\n\n            \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                mutableKeyStore\n                            \n                            \n                                sessionLoginCount\n                            \n                            \n                                sessionToken\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                getChallenge\n                            \n                            \n                                getPrivateKey\n                            \n                            \n                                    Async\n                                getPublicKeys\n                            \n                            \n                                getTrustedUsers\n                            \n                            \n                                getWithToken\n                            \n                            \n                                    Async\n                                init\n                            \n                            \n                                login\n                            \n                            \n                                    Async\n                                loginResponse\n                            \n                            \n                                loginView\n                            \n                            \n                                logout\n                            \n                            \n                                sendResponse\n                            \n                            \n                                    Async\n                                setKey\n                            \n                            \n                                setState\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n            \n    Constructor\n        \n            \n                \n                    \nconstructor(httpClient: HttpClient, loggingService: LoggingService, errorDialogService: ErrorDialogService)\n                    \n                \n                        \n                            \n                                Defined in src/app/_services/auth.service.ts:17\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        httpClient\n                                                  \n                                                        \n                                                                        HttpClient\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        loggingService\n                                                  \n                                                        \n                                                                        LoggingService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        errorDialogService\n                                                  \n                                                        \n                                                                        ErrorDialogService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getChallenge\n                        \n                        \n                    \n                \n            \n            \n                \ngetChallenge()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/auth.service.ts:84\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getPrivateKey\n                        \n                        \n                    \n                \n            \n            \n                \ngetPrivateKey()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/auth.service.ts:204\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         any\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            getPublicKeys\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    getPublicKeys()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/auth.service.ts:193\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Promise\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getTrustedUsers\n                        \n                        \n                    \n                \n            \n            \n                \ngetTrustedUsers()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/auth.service.ts:187\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         any\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getWithToken\n                        \n                        \n                    \n                \n            \n            \n                \ngetWithToken()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/auth.service.ts:42\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            init\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    init()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/auth.service.ts:27\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Promise\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            login\n                        \n                        \n                    \n                \n            \n            \n                \nlogin()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/auth.service.ts:99\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         boolean\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            loginResponse\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    loginResponse(o: literal type)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/auth.service.ts:118\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    o\n                                    \n                                            literal type\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            loginView\n                        \n                        \n                    \n                \n            \n            \n                \nloginView()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/auth.service.ts:147\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            logout\n                        \n                        \n                    \n                \n            \n            \n                \nlogout()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/auth.service.ts:181\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            sendResponse\n                        \n                        \n                    \n                \n            \n            \n                \nsendResponse(hobaResponseEncoded: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/auth.service.ts:61\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    hobaResponseEncoded\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            setKey\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    setKey(privateKeyArmored)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/auth.service.ts:157\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Optional\n                                \n                            \n                            \n                                \n                                    privateKeyArmored\n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            setState\n                        \n                        \n                    \n                \n            \n            \n                \nsetState(s)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/auth.service.ts:38\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Optional\n                                \n                            \n                            \n                                \n                                    s\n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n            \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            mutableKeyStore\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         MutableKeyStore\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_services/auth.service.ts:17\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            sessionLoginCount\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         number\n\n                        \n                    \n                    \n                        \n                            Default value : 0\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_services/auth.service.ts:16\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            sessionToken\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         any\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_services/auth.service.ts:15\n                            \n                        \n\n\n            \n        \n\n\n    \n\n\n    \n        import {Injectable} from '@angular/core';\nimport {hobaParseChallengeHeader} from '@src/assets/js/hoba.js';\nimport {signChallenge} from '@src/assets/js/hoba-pgp.js';\nimport {environment} from '@src/environments/environment';\nimport {LoggingService} from '@app/_services/logging.service';\nimport {MutableKeyStore, MutablePgpKeyStore} from '@app/_pgp';\nimport {ErrorDialogService} from '@app/_services/error-dialog.service';\nimport {HttpClient} from '@angular/common/http';\nimport {HttpError} from '@app/_helpers/global-error-handler';\n\n@Injectable({\n  providedIn: 'root'\n})\nexport class AuthService {\n  sessionToken: any;\n  sessionLoginCount: number = 0;\n  mutableKeyStore: MutableKeyStore;\n\n  constructor(\n    private httpClient: HttpClient,\n    private loggingService: LoggingService,\n    private errorDialogService: ErrorDialogService\n  ) {\n    this.mutableKeyStore = new MutablePgpKeyStore();\n  }\n\n  async init(): Promise {\n    await this.mutableKeyStore.loadKeyring();\n    // TODO setting these together should be atomic\n    if (sessionStorage.getItem(btoa('CICADA_SESSION_TOKEN'))) {\n      this.sessionToken = sessionStorage.getItem(btoa('CICADA_SESSION_TOKEN'));\n    }\n    if (localStorage.getItem(btoa('CICADA_PRIVATE_KEY'))) {\n      await this.mutableKeyStore.importPrivateKey(localStorage.getItem(btoa('CICADA_PRIVATE_KEY')));\n    }\n  }\n\n  setState(s): void {\n    document.getElementById('state').innerHTML = s;\n  }\n\n  getWithToken(): void {\n    const xhr: XMLHttpRequest = new XMLHttpRequest();\n    xhr.responseType = 'text';\n    xhr.open('GET', environment.cicMetaUrl + window.location.search.substring(1));\n    xhr.setRequestHeader('Authorization', 'Bearer ' + this.sessionToken);\n    xhr.setRequestHeader('Content-Type', 'application/json');\n    xhr.setRequestHeader('x-cic-automerge', 'none');\n    xhr.addEventListener('load', (e) => {\n      if (xhr.status === 401) {\n        throw new Error('login rejected');\n      }\n      this.sessionLoginCount++;\n      this.setState('Click button to log in');\n      return;\n    });\n    xhr.send();\n  }\n\n  // TODO rename to send signed challenge and set session. Also separate these responsibilities\n  sendResponse(hobaResponseEncoded: any): Promise {\n    return new Promise((resolve, reject) => {\n      const xhr: XMLHttpRequest = new XMLHttpRequest();\n      xhr.responseType = 'text';\n      xhr.open('GET', environment.cicMetaUrl + window.location.search.substring(1));\n      xhr.setRequestHeader('Authorization', 'HOBA ' + hobaResponseEncoded);\n      xhr.setRequestHeader('Content-Type', 'application/json');\n      xhr.setRequestHeader('x-cic-automerge', 'none');\n      xhr.addEventListener('load', (e) => {\n        if (xhr.status !== 200) {\n            const error = new HttpError(xhr.statusText, xhr.status);\n            return reject(error);\n        }\n        this.sessionToken = xhr.getResponseHeader('Token');\n        sessionStorage.setItem(btoa('CICADA_SESSION_TOKEN'), this.sessionToken);\n        this.sessionLoginCount++;\n        this.setState('Click button to log in');\n        return resolve(true);\n      });\n      xhr.send();\n    });\n  }\n\n  getChallenge(): void {\n    const xhr: XMLHttpRequest = new XMLHttpRequest();\n    xhr.responseType = 'arraybuffer';\n    xhr.open('GET', environment.cicMetaUrl + window.location.search.substring(1));\n    xhr.onload = async (e) => {\n      if (xhr.status === 401) {\n        const authHeader = xhr.getResponseHeader('WWW-Authenticate');\n        const o = hobaParseChallengeHeader(authHeader);\n        this.loginResponse(o);\n      }\n    };\n    xhr.send();\n  }\n\n\n  login(): boolean {\n    if (this.sessionToken !== undefined) {\n      try {\n        this.getWithToken();\n        return true;\n      } catch (e) {\n        this.loggingService.sendErrorLevelMessage('Login token failed', this, {error: e});\n      }\n    } else {\n      try {\n        this.getChallenge();\n      } catch (e) {\n        this.loggingService.sendErrorLevelMessage('Login challenge failed', this, {error: e});\n      }\n    }\n    return false;\n  }\n\n\n  async loginResponse(o: { challenge: string, realm: any }): Promise {\n    return new Promise(async (resolve, reject) => {\n      try {\n        const r = await signChallenge(o.challenge,\n                                      o.realm,\n                                      environment.cicMetaUrl,\n                                      this.mutableKeyStore);\n        const sessionTokenResult: boolean = await this.sendResponse(r);\n      } catch (error) {\n        if (error instanceof HttpError) {\n          if (error.status === 403) {\n            this.errorDialogService.openDialog({ message: 'You are not authorized to use this system' });\n          }\n          if (error.status === 401) {\n            this.errorDialogService.openDialog({\n              message: 'Unable to authenticate with the service. ' +\n                'Please speak with the staff at Grassroots ' +\n                'Economics for requesting access ' +\n                'staff@grassrootseconomics.net.'\n            });\n          }\n        }\n        // TODO define this error\n        this.errorDialogService.openDialog({message: 'Incorrect key passphrase.'});\n        resolve(false);\n      }\n    });\n  }\n\n  loginView(): void {\n    document.getElementById('one').style.display = 'none';\n    document.getElementById('two').style.display = 'block';\n    this.setState('Click button to log in with PGP key ' + this.mutableKeyStore.getPrivateKeyId());\n  }\n\n  /**\n   * @throws\n   * @param privateKeyArmored\n   */\n  async setKey(privateKeyArmored): Promise {\n    try {\n      const isValidKeyCheck = await this.mutableKeyStore.isValidKey(privateKeyArmored);\n      if (!isValidKeyCheck) {\n        throw Error('The private key is invalid');\n      }\n      // TODO leaving this out for now.\n      // const isEncryptedKeyCheck = await this.mutableKeyStore.isEncryptedPrivateKey(privateKeyArmored);\n      // if (!isEncryptedKeyCheck) {\n      //   throw Error('The private key doesn\\'t have a password!');\n      // }\n      const key = await this.mutableKeyStore.importPrivateKey(privateKeyArmored);\n      localStorage.setItem(btoa('CICADA_PRIVATE_KEY'), privateKeyArmored);\n    } catch (err) {\n      this.loggingService.sendErrorLevelMessage(`Failed to set key: ${err.message || err.statusText}`, this, {error: err});\n      this.errorDialogService.openDialog({\n        message: `Failed to set key: ${err.message || err.statusText}`,\n      });\n      return false;\n    }\n    this.loginView();\n    return true;\n  }\n\n  logout(): void {\n    sessionStorage.removeItem(btoa('CICADA_SESSION_TOKEN'));\n    this.sessionToken = undefined;\n    window.location.reload(true);\n  }\n\n  getTrustedUsers(): any {\n    const trustedUsers: Array = [];\n    this.mutableKeyStore.getPublicKeys().forEach(key => trustedUsers.push(key.users[0].userId));\n    return trustedUsers;\n  }\n\n  async getPublicKeys(): Promise {\n    return await fetch(environment.publicKeysUrl)\n      .then(res => {\n        if (!res.ok) {\n          // TODO does angular recommend an error interface?\n          throw Error(`${res.statusText} - ${res.status}`);\n        }\n        return res.text();\n      });\n  }\n\n  getPrivateKey(): any {\n      return this.mutableKeyStore.getPrivateKey();\n  }\n}\n\n    \n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"injectables/BlockSyncService.html":{"url":"injectables/BlockSyncService.html","title":"injectable - BlockSyncService","body":"\n                   \n\n\n\n\n\n\n\n\n  Injectables\n  BlockSyncService\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_services/block-sync.service.ts\n        \n\n\n\n\n            \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                readyState\n                            \n                            \n                                readyStateTarget\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                blockSync\n                            \n                            \n                                fetcher\n                            \n                            \n                                newConversionEvent\n                            \n                            \n                                newTransferEvent\n                            \n                            \n                                readyStateProcessor\n                            \n                            \n                                    Async\n                                scan\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n            \n    Constructor\n        \n            \n                \n                    \nconstructor(transactionService: TransactionService, loggingService: LoggingService, registryService: RegistryService)\n                    \n                \n                        \n                            \n                                Defined in src/app/_services/block-sync.service.ts:15\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        transactionService\n                                                  \n                                                        \n                                                                        TransactionService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        loggingService\n                                                  \n                                                        \n                                                                        LoggingService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        registryService\n                                                  \n                                                        \n                                                                        RegistryService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            blockSync\n                        \n                        \n                    \n                \n            \n            \n                \nblockSync(address: string, offset: number, limit: number)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/block-sync.service.ts:23\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                    Default value\n                                \n                            \n                            \n                                \n                                    address\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n                                    \n                                        null\n                                    \n\n                                \n                                \n                                    offset\n                                    \n                                                number\n                                    \n\n                                    \n                                        No\n                                    \n\n                                    \n                                        0\n                                    \n\n                                \n                                \n                                    limit\n                                    \n                                                number\n                                    \n\n                                    \n                                        No\n                                    \n\n                                    \n                                        100\n                                    \n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            fetcher\n                        \n                        \n                    \n                \n            \n            \n                \nfetcher(settings: Settings, transactionsInfo: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/block-sync.service.ts:101\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    settings\n                                    \n                                                Settings\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    transactionsInfo\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            newConversionEvent\n                        \n                        \n                    \n                \n            \n            \n                \nnewConversionEvent(tx: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/block-sync.service.ts:76\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    tx\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         any\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            newTransferEvent\n                        \n                        \n                    \n                \n            \n            \n                \nnewTransferEvent(tx: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/block-sync.service.ts:68\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    tx\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         any\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            readyStateProcessor\n                        \n                        \n                    \n                \n            \n            \n                \nreadyStateProcessor(settings: Settings, bit: number, address: string, offset: number, limit: number)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/block-sync.service.ts:46\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    settings\n                                    \n                                                Settings\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    bit\n                                    \n                                                number\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    address\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    offset\n                                    \n                                                number\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    limit\n                                    \n                                                number\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            scan\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    scan(settings: Settings, lo: number, hi: number, bloomBlockBytes: Uint8Array, bloomBlocktxBytes: Uint8Array, bloomRounds: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/block-sync.service.ts:84\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    settings\n                                    \n                                                Settings\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    lo\n                                    \n                                                number\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    hi\n                                    \n                                                number\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    bloomBlockBytes\n                                    \n                                            Uint8Array\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    bloomBlocktxBytes\n                                    \n                                            Uint8Array\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    bloomRounds\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n            \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            readyState\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         number\n\n                        \n                    \n                    \n                        \n                            Default value : 0\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_services/block-sync.service.ts:15\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            readyStateTarget\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         number\n\n                        \n                    \n                    \n                        \n                            Default value : 2\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_services/block-sync.service.ts:14\n                            \n                        \n\n\n            \n        \n\n\n    \n\n\n    \n        import {Injectable} from '@angular/core';\nimport {Settings} from '@app/_models';\nimport {TransactionHelper} from 'cic-client';\nimport {first} from 'rxjs/operators';\nimport {TransactionService} from '@app/_services/transaction.service';\nimport {environment} from '@src/environments/environment';\nimport {LoggingService} from '@app/_services/logging.service';\nimport {RegistryService} from '@app/_services/registry.service';\n\n@Injectable({\n  providedIn: 'root'\n})\nexport class BlockSyncService {\n  readyStateTarget: number = 2;\n  readyState: number = 0;\n\n  constructor(\n    private transactionService: TransactionService,\n    private loggingService: LoggingService,\n    private registryService: RegistryService,\n  ) { }\n\n  blockSync(address: string = null, offset: number = 0, limit: number = 100): void {\n    this.transactionService.resetTransactionsList();\n    const settings: Settings = new Settings(this.scan);\n    const readyStateElements: { network: number } = { network: 2 };\n    settings.w3.provider = environment.web3Provider;\n    settings.w3.engine = this.registryService.getWeb3();\n    settings.registry = this.registryService.getRegistry();\n    settings.txHelper = new TransactionHelper(settings.w3.engine, settings.registry);\n\n    settings.txHelper.ontransfer = async (transaction: any): Promise => {\n      window.dispatchEvent(this.newTransferEvent(transaction));\n    };\n    settings.txHelper.onconversion = async (transaction: any): Promise => {\n      window.dispatchEvent(this.newConversionEvent(transaction));\n    };\n    settings.registry.onload = (addressReturned: number): void => {\n      this.loggingService.sendInfoLevelMessage(`Loaded network contracts ${addressReturned}`);\n      this.readyStateProcessor(settings, readyStateElements.network, address, offset, limit);\n    };\n\n    settings.registry.load();\n  }\n\n  readyStateProcessor(settings: Settings, bit: number, address: string, offset: number, limit: number): void {\n    this.readyState |= bit;\n    if (this.readyStateTarget === this.readyState && this.readyStateTarget) {\n      const wHeadSync: Worker = new Worker('./../assets/js/block-sync/head.js');\n      wHeadSync.onmessage = (m) => {\n        settings.txHelper.processReceipt(m.data);\n      };\n      wHeadSync.postMessage({\n        w3_provider: settings.w3.provider,\n      });\n      if (address === null) {\n        this.transactionService.getAllTransactions(offset, limit).pipe(first()).subscribe(res => {\n          this.fetcher(settings, res);\n        });\n      } else {\n        this.transactionService.getAddressTransactions(address, offset, limit).pipe(first()).subscribe(res => {\n          this.fetcher(settings, res);\n        });\n      }\n    }\n  }\n\n  newTransferEvent(tx: any): any {\n    return new CustomEvent('cic_transfer', {\n      detail: {\n        tx,\n      },\n    });\n  }\n\n  newConversionEvent(tx: any): any {\n    return new CustomEvent('cic_convert', {\n      detail: {\n        tx,\n      },\n    });\n  }\n\n  async scan(settings: Settings, lo: number, hi: number, bloomBlockBytes: Uint8Array, bloomBlocktxBytes: Uint8Array, bloomRounds: any): Promise {\n    const w: Worker = new Worker('./../assets/js/block-sync/ondemand.js');\n    w.onmessage = (m) => {\n      settings.txHelper.processReceipt(m.data);\n    };\n    w.postMessage({\n      w3_provider: settings.w3.provider,\n      lo,\n      hi,\n      filters: [\n        bloomBlockBytes,\n        bloomBlocktxBytes,\n      ],\n      filter_rounds: bloomRounds,\n    });\n  }\n\n  fetcher(settings: Settings, transactionsInfo: any): void {\n    const blockFilterBinstr: string = window.atob(transactionsInfo.block_filter);\n    const bOne: Uint8Array = new Uint8Array(blockFilterBinstr.length);\n    bOne.map((e, i, v) => v[i] = blockFilterBinstr.charCodeAt(i));\n\n    const blocktxFilterBinstr: string = window.atob(transactionsInfo.blocktx_filter);\n    const bTwo: Uint8Array = new Uint8Array(blocktxFilterBinstr.length);\n    bTwo.map((e, i, v) => v[i] = blocktxFilterBinstr.charCodeAt(i));\n\n    settings.scanFilter(settings, transactionsInfo.low, transactionsInfo.high, bOne, bTwo, transactionsInfo.filter_rounds);\n  }\n}\n\n    \n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"classes/BlocksBloom.html":{"url":"classes/BlocksBloom.html","title":"class - BlocksBloom","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n  Classes\n  BlocksBloom\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_models/transaction.ts\n        \n\n\n\n\n\n            \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                alg\n                            \n                            \n                                blockFilter\n                            \n                            \n                                blocktxFilter\n                            \n                            \n                                filterRounds\n                            \n                            \n                                low\n                            \n                        \n                    \n                \n\n\n\n\n\n\n        \n    \n\n\n\n            \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            alg\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:7\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            blockFilter\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:5\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            blocktxFilter\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:6\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            filterRounds\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         number\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:8\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            low\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         number\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:4\n                            \n                        \n\n\n            \n        \n\n\n\n\n\n\n\n\n    \n\n\n    \n        import {AccountDetails} from '@app/_models/account';\n\nclass BlocksBloom {\n  low: number;\n  blockFilter: string;\n  blocktxFilter: string;\n  alg: string;\n  filterRounds: number;\n}\n\nclass TxToken {\n  address: string;\n  name: string;\n  symbol: string;\n}\n\nclass Tx {\n  block: number;\n  success: boolean;\n  timestamp: number;\n  txHash: string;\n  txIndex: number;\n}\n\nclass Transaction {\n  from: string;\n  sender: AccountDetails;\n  to: string;\n  recipient: AccountDetails;\n  token: TxToken;\n  tx: Tx;\n  value: number;\n  type?: string;\n}\n\nclass Conversion {\n  destinationToken: TxToken;\n  fromValue: number;\n  sourceToken: TxToken;\n  toValue: number;\n  trader: string;\n  user: AccountDetails;\n  tx: Tx;\n}\n\nexport {\n  BlocksBloom,\n  TxToken,\n  Tx,\n  Transaction,\n  Conversion\n};\n\n    \n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"interfaces/Category.html":{"url":"interfaces/Category.html","title":"interface - Category","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n\n  Interfaces\n  Category\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_models/mappings.ts\n        \n\n\n\n        \n            Index\n            \n                \n                    \n                        \n                            Properties\n                        \n                    \n                    \n                        \n                            \n                                \n                                        name\n                                \n                                \n                                        products\n                                \n                            \n                        \n                    \n                \n            \n        \n\n\n\n            \n                Properties\n                    \n                        \n                                \n                                    \n                                        \n                                        name\n                                    \n                                \n                                \n                                    \n                                        name:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        products\n                                    \n                                \n                                \n                                    \n                                        products:     Array\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :     Array\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n            \n    \n\n\n    \n        interface Action {\n  id: number;\n  user: string;\n  role: string;\n  action: string;\n  approval: boolean;\n}\n\ninterface Category {\n  name: string;\n  products: Array;\n}\n\ninterface AreaName {\n  name: string;\n  locations: Array;\n}\n\ninterface AreaType {\n  name: string;\n  area: Array;\n}\n\nexport {\n  Action,\n  Category,\n  AreaName,\n  AreaType\n};\n\n    \n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"classes/Conversion.html":{"url":"classes/Conversion.html","title":"class - Conversion","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n  Classes\n  Conversion\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_models/transaction.ts\n        \n\n\n\n\n\n            \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                destinationToken\n                            \n                            \n                                fromValue\n                            \n                            \n                                sourceToken\n                            \n                            \n                                toValue\n                            \n                            \n                                trader\n                            \n                            \n                                tx\n                            \n                            \n                                user\n                            \n                        \n                    \n                \n\n\n\n\n\n\n        \n    \n\n\n\n            \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            destinationToken\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         TxToken\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:37\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            fromValue\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         number\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:38\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            sourceToken\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         TxToken\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:39\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            toValue\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         number\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:40\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            trader\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:41\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            tx\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         Tx\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:43\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            user\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         AccountDetails\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:42\n                            \n                        \n\n\n            \n        \n\n\n\n\n\n\n\n\n    \n\n\n    \n        import {AccountDetails} from '@app/_models/account';\n\nclass BlocksBloom {\n  low: number;\n  blockFilter: string;\n  blocktxFilter: string;\n  alg: string;\n  filterRounds: number;\n}\n\nclass TxToken {\n  address: string;\n  name: string;\n  symbol: string;\n}\n\nclass Tx {\n  block: number;\n  success: boolean;\n  timestamp: number;\n  txHash: string;\n  txIndex: number;\n}\n\nclass Transaction {\n  from: string;\n  sender: AccountDetails;\n  to: string;\n  recipient: AccountDetails;\n  token: TxToken;\n  tx: Tx;\n  value: number;\n  type?: string;\n}\n\nclass Conversion {\n  destinationToken: TxToken;\n  fromValue: number;\n  sourceToken: TxToken;\n  toValue: number;\n  trader: string;\n  user: AccountDetails;\n  tx: Tx;\n}\n\nexport {\n  BlocksBloom,\n  TxToken,\n  Tx,\n  Transaction,\n  Conversion\n};\n\n    \n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"components/CreateAccountComponent.html":{"url":"components/CreateAccountComponent.html","title":"component - CreateAccountComponent","body":"\n                   \n\n\n\n\n\n  Components\n  CreateAccountComponent\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n        \n            Template\n        \n        \n            Styles\n        \n        \n            DOM Tree\n        \n\n\n\n    \n    File\n\n\n    src/app/pages/accounts/create-account/create-account.component.ts\n\n\n\n\n    \n        Implements\n    \n    \n                    OnInit\n    \n\n\n\n    Metadata\n    \n        \n\n            \n                changeDetection\n                ChangeDetectionStrategy.OnPush\n            \n\n\n\n\n\n\n\n\n\n\n            \n                selector\n                app-create-account\n            \n\n            \n                styleUrls\n                ./create-account.component.scss\n            \n\n\n\n            \n                templateUrl\n                ./create-account.component.html\n            \n\n\n\n\n\n\n\n\n        \n    \n\n\n    \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                accountTypes\n                            \n                            \n                                areaNames\n                            \n                            \n                                categories\n                            \n                            \n                                createForm\n                            \n                            \n                                genders\n                            \n                            \n                                matcher\n                            \n                            \n                                submitted\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                ngOnInit\n                            \n                            \n                                onSubmit\n                            \n                        \n                    \n                \n\n\n\n\n\n                    \n                        \n                            Accessors\n                        \n                    \n                    \n                        \n                            \n                                \n                                    createFormStub\n                                \n                            \n                        \n                    \n        \n    \n\n\n    \n    Constructor\n        \n            \n                \n                    \nconstructor(formBuilder: FormBuilder, locationService: LocationService, userService: UserService)\n                    \n                \n                        \n                            \n                                Defined in src/app/pages/accounts/create-account/create-account.component.ts:21\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        formBuilder\n                                                  \n                                                        \n                                                                        FormBuilder\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        locationService\n                                                  \n                                                        \n                                                                        LocationService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        userService\n                                                  \n                                                        \n                                                                        UserService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n\n\n\n\n    \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            ngOnInit\n                        \n                        \n                    \n                \n            \n            \n                \nngOnInit()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/accounts/create-account/create-account.component.ts:29\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            onSubmit\n                        \n                        \n                    \n                \n            \n            \n                \nonSubmit()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/accounts/create-account/create-account.component.ts:50\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n\n    \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            accountTypes\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     Array\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/create-account/create-account.component.ts:20\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            areaNames\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         Array\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/create-account/create-account.component.ts:19\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            categories\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         Array\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/create-account/create-account.component.ts:18\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            createForm\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         FormGroup\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/create-account/create-account.component.ts:15\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            genders\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     Array\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/create-account/create-account.component.ts:21\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            matcher\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         CustomErrorStateMatcher\n\n                        \n                    \n                    \n                        \n                            Default value : new CustomErrorStateMatcher()\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/create-account/create-account.component.ts:16\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            submitted\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         boolean\n\n                        \n                    \n                    \n                        \n                            Default value : false\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/create-account/create-account.component.ts:17\n                            \n                        \n\n\n            \n        \n\n\n    \n    \n        Accessors\n    \n        \n            \n                \n                    \n                        \n                        createFormStub\n                    \n                \n\n                \n                    \n                        getcreateFormStub()\n                    \n                \n                            \n                                \n                                    Defined in src/app/pages/accounts/create-account/create-account.component.ts:48\n                                \n                            \n\n            \n        \n\n\n\n\n    \n        import {ChangeDetectionStrategy, Component, OnInit} from '@angular/core';\nimport {FormBuilder, FormGroup, Validators} from '@angular/forms';\nimport {LocationService, UserService} from '@app/_services';\nimport {CustomErrorStateMatcher} from '@app/_helpers';\nimport {first} from 'rxjs/operators';\nimport {AreaName, Category} from '@app/_models';\n\n@Component({\n  selector: 'app-create-account',\n  templateUrl: './create-account.component.html',\n  styleUrls: ['./create-account.component.scss'],\n  changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class CreateAccountComponent implements OnInit {\n  createForm: FormGroup;\n  matcher: CustomErrorStateMatcher = new CustomErrorStateMatcher();\n  submitted: boolean = false;\n  categories: Array;\n  areaNames: Array;\n  accountTypes: Array;\n  genders: Array;\n\n  constructor(\n    private formBuilder: FormBuilder,\n    private locationService: LocationService,\n    private userService: UserService\n  ) { }\n\n  ngOnInit(): void {\n    this.createForm = this.formBuilder.group({\n      accountType: ['', Validators.required],\n      idNumber: ['', Validators.required],\n      phoneNumber: ['', Validators.required],\n      givenName: ['', Validators.required],\n      surname: ['', Validators.required],\n      directoryEntry: ['', Validators.required],\n      location: ['', Validators.required],\n      gender: ['', Validators.required],\n      referrer: ['', Validators.required],\n      businessCategory: ['', Validators.required]\n    });\n    this.userService.getCategories().pipe(first()).subscribe(res => this.categories = res);\n    this.locationService.getAreaNames().pipe(first()).subscribe(res => this.areaNames = res);\n    this.userService.getAccountTypes().pipe(first()).subscribe(res => this.accountTypes = res);\n    this.userService.getGenders().pipe(first()).subscribe(res => this.genders = res);\n  }\n\n  get createFormStub(): any { return this.createForm.controls; }\n\n  onSubmit(): void {\n    this.submitted = true;\n    if (this.createForm.invalid || !confirm('Create account?')) { return; }\n    this.submitted = false;\n  }\n}\n\n    \n\n    \n        \n\n  \n\n  \n  \n  \n\n  \n    \n    \n    \n      \n        \n          Home\n          Accounts\n          Create Account\n        \n      \n      \n        \n          CREATE A USER ACCOUNT\n        \n        \n          \n            \n              \n                Account Type: \n                \n                  \n                    {{accountType | uppercase}}\n                  \n                \n                Account type is required.\n              \n            \n\n            \n              \n                ID Number: \n                \n                ID Number is required.\n              \n            \n\n            \n              \n                Phone Number: \n                \n                Phone Number is required.\n              \n            \n\n            \n              \n                Given Name(s):* \n                \n                Given Names are required.\n              \n            \n\n            \n              \n                Family/Surname: \n                \n                Surname is required.\n              \n            \n\n            \n              \n                Directory Entry: \n                \n                Directory Entry is required.\n              \n            \n\n            \n              \n                Location: \n                \n                  \n                    {{area | uppercase}}\n                  \n                \n                Location is required.\n              \n            \n\n            \n              \n                Gender: \n                \n                  \n                    {{gender | uppercase}}\n                  \n                \n                Gender is required.\n              \n            \n\n            \n              \n                Referrer Phone Number: \n                \n                Referrer is required.\n              \n            \n\n            \n              \n                Business Category: \n                \n                  \n                    {{category | titlecase}}\n                  \n                \n                Business Category is required.\n              \n            \n\n            Submit\n          \n        \n      \n    \n    \n  \n  \n  \n  \n\n\n    \n\n    \n                \n                    ./create-account.component.scss\n                \n                \n    \n\n    \n        \n        \n            \n                Legend\n            \n            \n                Html element\n            \n            \n                Component\n            \n            \n                Html element with directive\n            \n        \n    \n\n    \n\n\n\n\n\n\n        var COMPONENT_TEMPLATE = '                                              Home          Accounts          Create Account                                      CREATE A USER ACCOUNT                                                                    Account Type:                                                       {{accountType | uppercase}}                                                  Account type is required.                                                                    ID Number:                                 ID Number is required.                                                                    Phone Number:                                 Phone Number is required.                                                                    Given Name(s):*                                 Given Names are required.                                                                    Family/Surname:                                 Surname is required.                                                                    Directory Entry:                                 Directory Entry is required.                                                                    Location:                                                       {{area | uppercase}}                                                  Location is required.                                                                    Gender:                                                       {{gender | uppercase}}                                                  Gender is required.                                                                    Referrer Phone Number:                                 Referrer is required.                                                                    Business Category:                                                       {{category | titlecase}}                                                  Business Category is required.                                      Submit                                        '\n    var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n    var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[routerLink]'}];\n    var ACTUAL_COMPONENT = {'name': 'CreateAccountComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"classes/CustomErrorStateMatcher.html":{"url":"classes/CustomErrorStateMatcher.html","title":"class - CustomErrorStateMatcher","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n  Classes\n  CustomErrorStateMatcher\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_helpers/custom-error-state-matcher.ts\n        \n\n\n\n            \n                Implements\n            \n            \n                        ErrorStateMatcher\n            \n\n\n            \n    Index\n    \n        \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                isErrorState\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            isErrorState\n                        \n                        \n                    \n                \n            \n            \n                \nisErrorState(control: FormControl | null, form: FormGroupDirective | NgForm | null)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_helpers/custom-error-state-matcher.ts:5\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    control\n                                    \n                                            FormControl | null\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    form\n                                    \n                                            FormGroupDirective | NgForm | null\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         boolean\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n\n\n\n\n\n    \n\n\n    \n        import {ErrorStateMatcher} from '@angular/material/core';\nimport {FormControl, FormGroupDirective, NgForm} from '@angular/forms';\n\nexport class CustomErrorStateMatcher implements ErrorStateMatcher{\n  isErrorState(control: FormControl | null, form: FormGroupDirective | NgForm | null): boolean {\n    const isSubmitted: boolean = form && form.submitted;\n    return !!(control && control.invalid && (control.dirty || control.touched || isSubmitted));\n  }\n}\n\n    \n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"classes/CustomValidator.html":{"url":"classes/CustomValidator.html","title":"class - CustomValidator","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n  Classes\n  CustomValidator\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_helpers/custom.validator.ts\n        \n\n\n\n\n\n            \n    Index\n    \n        \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                    Static\n                                passwordMatchValidator\n                            \n                            \n                                    Static\n                                patternValidator\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Static\n                            passwordMatchValidator\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    passwordMatchValidator(control: AbstractControl)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_helpers/custom.validator.ts:4\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    control\n                                    \n                                                AbstractControl\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Static\n                            patternValidator\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    patternValidator(regex: RegExp, error: ValidationErrors)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_helpers/custom.validator.ts:12\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    regex\n                                    \n                                            RegExp\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    error\n                                    \n                                                ValidationErrors\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     ValidationErrors | null\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n\n\n\n\n\n    \n\n\n    \n        import {AbstractControl, ValidationErrors} from '@angular/forms';\n\nexport class CustomValidator {\n  static passwordMatchValidator(control: AbstractControl): void {\n    const password: string = control.get('password').value;\n    const confirmPassword: string = control.get('confirmPassword').value;\n    if (password !== confirmPassword) {\n      control.get('confirmPassword').setErrors({ NoPasswordMatch: true });\n    }\n  }\n\n  static patternValidator(regex: RegExp, error: ValidationErrors): ValidationErrors | null {\n    return (control: AbstractControl): { [key: string]: any } => {\n      if (!control.value) {\n        return null;\n      }\n\n      const valid: boolean = regex.test(control.value);\n      return valid ? null : error;\n    };\n  }\n}\n\n    \n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"components/ErrorDialogComponent.html":{"url":"components/ErrorDialogComponent.html","title":"component - ErrorDialogComponent","body":"\n                   \n\n\n\n\n\n  Components\n  ErrorDialogComponent\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n        \n            Template\n        \n        \n            Styles\n        \n        \n            DOM Tree\n        \n\n\n\n    \n    File\n\n\n    src/app/shared/error-dialog/error-dialog.component.ts\n\n\n\n\n\n\n\n    Metadata\n    \n        \n\n            \n                changeDetection\n                ChangeDetectionStrategy.OnPush\n            \n\n\n\n\n\n\n\n\n\n\n            \n                selector\n                app-error-dialog\n            \n\n            \n                styleUrls\n                ./error-dialog.component.scss\n            \n\n\n\n            \n                templateUrl\n                ./error-dialog.component.html\n            \n\n\n\n\n\n\n\n\n        \n    \n\n\n    \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                    Public\n                                data\n                            \n                        \n                    \n                \n\n\n\n\n\n\n        \n    \n\n\n    \n    Constructor\n        \n            \n                \n                    \nconstructor(data: any)\n                    \n                \n                        \n                            \n                                Defined in src/app/shared/error-dialog/error-dialog.component.ts:10\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        data\n                                                  \n                                                        \n                                                                        any\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n\n\n\n\n\n    \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                                Public\n                            data\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         any\n\n                        \n                    \n                    \n                        \n                            Decorators : \n                            \n                            \n                                @Inject(MAT_DIALOG_DATA)\n                            \n                        \n                    \n                        \n                            \n                                    Defined in src/app/shared/error-dialog/error-dialog.component.ts:12\n                            \n                        \n\n\n            \n        \n\n\n\n\n\n    \n        import {Component, ChangeDetectionStrategy, Inject} from '@angular/core';\nimport {MAT_DIALOG_DATA} from '@angular/material/dialog';\n\n@Component({\n  selector: 'app-error-dialog',\n  templateUrl: './error-dialog.component.html',\n  styleUrls: ['./error-dialog.component.scss'],\n  changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class ErrorDialogComponent {\n\n  constructor(@Inject(MAT_DIALOG_DATA) public data: any) { }\n\n}\n\n    \n\n    \n        \n  \n    \n      Message: {{ data.message }}\n    \n    \n      Status: {{ data?.status }}\n    \n  \n\n\n    \n\n    \n                \n                    ./error-dialog.component.scss\n                \n                \n    \n\n    \n        \n        \n            \n                Legend\n            \n            \n                Html element\n            \n            \n                Component\n            \n            \n                Html element with directive\n            \n        \n    \n\n    \n\n\n\n\n\n\n        var COMPONENT_TEMPLATE = '            Message: {{ data.message }}              Status: {{ data?.status }}      '\n    var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n    var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[routerLink]'}];\n    var ACTUAL_COMPONENT = {'name': 'ErrorDialogComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"injectables/ErrorDialogService.html":{"url":"injectables/ErrorDialogService.html","title":"injectable - ErrorDialogService","body":"\n                   \n\n\n\n\n\n\n\n\n  Injectables\n  ErrorDialogService\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_services/error-dialog.service.ts\n        \n\n\n\n\n            \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                    Public\n                                dialog\n                            \n                            \n                                    Public\n                                isDialogOpen\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                openDialog\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n            \n    Constructor\n        \n            \n                \n                    \nconstructor(dialog: MatDialog)\n                    \n                \n                        \n                            \n                                Defined in src/app/_services/error-dialog.service.ts:9\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        dialog\n                                                  \n                                                        \n                                                                    MatDialog\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            openDialog\n                        \n                        \n                    \n                \n            \n            \n                \nopenDialog(data)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/error-dialog.service.ts:15\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Optional\n                                \n                            \n                            \n                                \n                                    data\n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         any\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n            \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                                Public\n                            dialog\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     MatDialog\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_services/error-dialog.service.ts:12\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                                Public\n                            isDialogOpen\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         boolean\n\n                        \n                    \n                    \n                        \n                            Default value : false\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_services/error-dialog.service.ts:9\n                            \n                        \n\n\n            \n        \n\n\n    \n\n\n    \n        import { Injectable } from '@angular/core';\nimport {MatDialog, MatDialogRef} from '@angular/material/dialog';\nimport {ErrorDialogComponent} from '@app/shared/error-dialog/error-dialog.component';\n\n@Injectable({\n  providedIn: 'root'\n})\nexport class ErrorDialogService {\n  public isDialogOpen: boolean = false;\n\n  constructor(\n    public dialog: MatDialog,\n  ) { }\n\n  openDialog(data): any {\n    if (this.isDialogOpen) {\n      return false;\n    }\n    this.isDialogOpen = true;\n    const dialogRef: MatDialogRef = this.dialog.open(ErrorDialogComponent, {\n      width: '300px',\n      data\n    });\n\n    dialogRef.afterClosed().subscribe(() => this.isDialogOpen = false);\n  }\n}\n\n    \n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"interceptors/ErrorInterceptor.html":{"url":"interceptors/ErrorInterceptor.html","title":"interceptor - ErrorInterceptor","body":"\n                   \n\n\n\n\n\n\n\n\n\n  Interceptors\n  ErrorInterceptor\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_interceptors/error.interceptor.ts\n        \n\n\n\n            \n    Index\n    \n        \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                intercept\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n            \n    Constructor\n        \n            \n                \n                    \nconstructor(errorDialogService: ErrorDialogService, loggingService: LoggingService, router: Router)\n                    \n                \n                        \n                            \n                                Defined in src/app/_interceptors/error.interceptor.ts:14\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        errorDialogService\n                                                  \n                                                        \n                                                                        ErrorDialogService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        loggingService\n                                                  \n                                                        \n                                                                        LoggingService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        router\n                                                  \n                                                        \n                                                                        Router\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            intercept\n                        \n                        \n                    \n                \n            \n            \n                \nintercept(request: HttpRequest, next: HttpHandler)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_interceptors/error.interceptor.ts:22\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    request\n                                    \n                                            HttpRequest\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    next\n                                    \n                                                HttpHandler\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Observable>\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n\n    \n\n\n    \n        import {Injectable} from '@angular/core';\nimport {\n  HttpRequest,\n  HttpHandler,\n  HttpEvent,\n  HttpInterceptor, HttpErrorResponse\n} from '@angular/common/http';\nimport {Observable, throwError} from 'rxjs';\nimport {catchError} from 'rxjs/operators';\nimport {ErrorDialogService, LoggingService} from '@app/_services';\nimport {Router} from '@angular/router';\n\n@Injectable()\nexport class ErrorInterceptor implements HttpInterceptor {\n\n  constructor(\n    private errorDialogService: ErrorDialogService,\n    private loggingService: LoggingService,\n    private router: Router\n  ) {}\n\n  intercept(request: HttpRequest, next: HttpHandler): Observable> {\n    return next.handle(request).pipe(\n      catchError((err: HttpErrorResponse) => {\n        let errorMessage: string;\n        if (err.error instanceof ErrorEvent) {\n          // A client-side or network error occurred. Handle it accordingly.\n          errorMessage = `An error occurred: ${err.error.message}`;\n        } else {\n          // The backend returned an unsuccessful response code.\n          // The response body may contain clues as to what went wrong.\n          errorMessage = `Backend returned code ${err.status}, body was: ${JSON.stringify(err.error)}`;\n        }\n        this.loggingService.sendErrorLevelMessage(errorMessage, this, {error: err});\n        switch (err.status) {\n          case 401:  // unauthorized\n            this.router.navigateByUrl('/auth').then();\n            break;\n          case 403: // forbidden\n            alert('Access to resource is not allowed!');\n            break;\n        }\n        // Return an observable with a user-facing error message.\n        return throwError(err);\n      })\n    );\n  }\n}\n\n    \n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"components/FooterComponent.html":{"url":"components/FooterComponent.html","title":"component - FooterComponent","body":"\n                   \n\n\n\n\n\n  Components\n  FooterComponent\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n        \n            Template\n        \n        \n            Styles\n        \n        \n            DOM Tree\n        \n\n\n\n    \n    File\n\n\n    src/app/shared/footer/footer.component.ts\n\n\n\n\n    \n        Implements\n    \n    \n                    OnInit\n    \n\n\n\n    Metadata\n    \n        \n\n            \n                changeDetection\n                ChangeDetectionStrategy.OnPush\n            \n\n\n\n\n\n\n\n\n\n\n            \n                selector\n                app-footer\n            \n\n            \n                styleUrls\n                ./footer.component.scss\n            \n\n\n\n            \n                templateUrl\n                ./footer.component.html\n            \n\n\n\n\n\n\n\n\n        \n    \n\n\n    \n    Index\n    \n        \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                ngOnInit\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n    \n    Constructor\n        \n            \n                \n                    \nconstructor()\n                    \n                \n                        \n                            \n                                Defined in src/app/shared/footer/footer.component.ts:9\n                            \n                        \n\n            \n        \n\n\n\n\n\n\n    \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            ngOnInit\n                        \n                        \n                    \n                \n            \n            \n                \nngOnInit()\n                \n            \n\n\n            \n                \n                    Defined in src/app/shared/footer/footer.component.ts:13\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n\n\n\n\n\n    \n        import {ChangeDetectionStrategy, Component, OnInit} from '@angular/core';\n\n@Component({\n  selector: 'app-footer',\n  templateUrl: './footer.component.html',\n  styleUrls: ['./footer.component.scss'],\n  changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class FooterComponent implements OnInit {\n\n  constructor() { }\n\n  ngOnInit(): void {\n  }\n\n}\n\n    \n\n    \n        \n\n  2020 © Grassroots Economics\n\n\n\n    \n\n    \n                \n                    ./footer.component.scss\n                \n                \n    \n\n    \n        \n        \n            \n                Legend\n            \n            \n                Html element\n            \n            \n                Component\n            \n            \n                Html element with directive\n            \n        \n    \n\n    \n\n\n\n\n\n\n        var COMPONENT_TEMPLATE = '  2020 © Grassroots Economics'\n    var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n    var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[routerLink]'}];\n    var ACTUAL_COMPONENT = {'name': 'FooterComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"components/FooterStubComponent.html":{"url":"components/FooterStubComponent.html","title":"component - FooterStubComponent","body":"\n                   \n\n\n\n\n\n  Components\n  FooterStubComponent\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n        \n            DOM Tree\n        \n\n\n\n    \n    File\n\n\n    src/testing/shared-module-stub.ts\n\n\n\n\n\n\n\n    Metadata\n    \n        \n\n\n\n\n\n\n\n\n\n\n\n            \n                selector\n                app-footer\n            \n\n\n\n\n\n\n\n\n\n\n\n\n        \n    \n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n        import {Component} from '@angular/core';\n\n@Component({selector: 'app-sidebar', template: ''})\nexport class SidebarStubComponent {}\n\n@Component({selector: 'app-topbar', template: ''})\nexport class TopbarStubComponent {}\n\n@Component({selector: 'app-footer', template: ''})\nexport class FooterStubComponent {}\n\n    \n\n\n\n    \n        \n        \n            \n                Legend\n            \n            \n                Html element\n            \n            \n                Component\n            \n            \n                Html element with directive\n            \n        \n    \n\n    \n\n\n\n\n\n\n        var COMPONENT_TEMPLATE = ''\n    var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n    var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[routerLink]'}];\n    var ACTUAL_COMPONENT = {'name': 'FooterStubComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"injectables/GlobalErrorHandler.html":{"url":"injectables/GlobalErrorHandler.html","title":"injectable - GlobalErrorHandler","body":"\n                   \n\n\n\n\n\n\n\n\n  Injectables\n  GlobalErrorHandler\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_helpers/global-error-handler.ts\n        \n\n\n            \n                Extends\n            \n            \n                        ErrorHandler\n            \n\n\n            \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                    Private\n                                sentencesForWarningLogging\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                handleError\n                            \n                            \n                                    Private\n                                isWarning\n                            \n                            \n                                logError\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n            \n    Constructor\n        \n            \n                \n                    \nconstructor(loggingService: LoggingService, router: Router)\n                    \n                \n                        \n                            \n                                Defined in src/app/_helpers/global-error-handler.ts:18\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        loggingService\n                                                  \n                                                        \n                                                                        LoggingService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        router\n                                                  \n                                                        \n                                                                        Router\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            handleError\n                        \n                        \n                    \n                \n            \n            \n                \nhandleError(error: Error)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_helpers/global-error-handler.ts:27\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    error\n                                    \n                                            Error\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Private\n                            isWarning\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    isWarning(errorTraceString: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_helpers/global-error-handler.ts:67\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    errorTraceString\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         boolean\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            logError\n                        \n                        \n                    \n                \n            \n            \n                \nlogError(error: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_helpers/global-error-handler.ts:47\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    error\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n            \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                                Private\n                            sentencesForWarningLogging\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     Array\n\n                        \n                    \n                    \n                        \n                            Default value : []\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_helpers/global-error-handler.ts:18\n                            \n                        \n\n\n            \n        \n\n\n    \n\n\n    \n        import {ErrorHandler, Injectable} from '@angular/core';\nimport {LoggingService} from '@app/_services/logging.service';\nimport {HttpErrorResponse} from '@angular/common/http';\nimport {Router} from '@angular/router';\n\n// A generalized http response error\nexport class HttpError extends Error {\n  public status: number;\n  constructor(message: string, status: number) {\n    super(message);\n    this.status = status;\n    this.name = 'HttpError';\n  }\n}\n\n@Injectable()\nexport class GlobalErrorHandler extends ErrorHandler {\n  private sentencesForWarningLogging: Array = [];\n\n  constructor(\n    private loggingService: LoggingService,\n    private router: Router\n  ) {\n    super();\n  }\n\n  handleError(error: Error): void {\n    this.logError(error);\n    const message: string = error.message ? error.message : error.toString();\n\n    // if (error.status) {\n    //   error = new Error(message);\n    // }\n\n    const errorTraceString: string = `Error message:\\n${message}.\\nStack trace: ${error.stack}`;\n\n    const isWarning: boolean = this.isWarning(errorTraceString);\n    if (isWarning) {\n      this.loggingService.sendWarnLevelMessage(errorTraceString, {error});\n    } else {\n      this.loggingService.sendErrorLevelMessage(errorTraceString, this, {error});\n    }\n\n    throw error;\n  }\n\n  logError(error: any): void {\n    const route: string = this.router.url;\n    if (error instanceof HttpErrorResponse) {\n      this.loggingService.sendErrorLevelMessage(\n        `There was an HTTP error on route ${route}.\\n${error.message}.\\nStatus code: ${(error as HttpErrorResponse).status}`,\n        this, {error});\n    } else if (error instanceof TypeError) {\n      this.loggingService.sendErrorLevelMessage(`There was a Type error on route ${route}.\\n${error.message}`, this, {error});\n    } else if (error instanceof Error) {\n      this.loggingService.sendErrorLevelMessage(`There was a general error on route ${route}.\\n${error.message}`, this, {error});\n    } else {\n      this.loggingService.sendErrorLevelMessage(`Nobody threw an error but something happened on route ${route}!`, this, {error});\n    }\n  }\n\n  /**\n   *\n   * @param errorTraceString\n   * @private\n   */\n  private isWarning(errorTraceString: string): boolean {\n    let isWarning: boolean = true;\n    if (errorTraceString.includes('/src/app/')) {\n      isWarning = false;\n    }\n\n    this.sentencesForWarningLogging.forEach((whiteListSentence: string) => {\n      if (errorTraceString.includes(whiteListSentence)) {\n        isWarning = true;\n      }\n    });\n\n    return isWarning;\n  }\n}\n\n    \n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"interceptors/HttpConfigInterceptor.html":{"url":"interceptors/HttpConfigInterceptor.html","title":"interceptor - HttpConfigInterceptor","body":"\n                   \n\n\n\n\n\n\n\n\n\n  Interceptors\n  HttpConfigInterceptor\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_interceptors/http-config.interceptor.ts\n        \n\n\n\n            \n    Index\n    \n        \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                intercept\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n            \n    Constructor\n        \n            \n                \n                    \nconstructor()\n                    \n                \n                        \n                            \n                                Defined in src/app/_interceptors/http-config.interceptor.ts:11\n                            \n                        \n\n            \n        \n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            intercept\n                        \n                        \n                    \n                \n            \n            \n                \nintercept(request: HttpRequest, next: HttpHandler)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_interceptors/http-config.interceptor.ts:15\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    request\n                                    \n                                            HttpRequest\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    next\n                                    \n                                                HttpHandler\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Observable>\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n\n    \n\n\n    \n        import { Injectable } from '@angular/core';\nimport {\n  HttpRequest,\n  HttpHandler,\n  HttpEvent,\n  HttpInterceptor\n} from '@angular/common/http';\nimport { Observable } from 'rxjs';\n\n@Injectable()\nexport class HttpConfigInterceptor implements HttpInterceptor {\n\n  constructor() {}\n\n  intercept(request: HttpRequest, next: HttpHandler): Observable> {\n    // const token: string = sessionStorage.getItem(btoa('CICADA_SESSION_TOKEN'));\n\n    // if (token) {\n    //   request = request.clone({headers: request.headers.set('Authorization', 'Bearer ' + token)});\n    // }\n\n    return next.handle(request);\n  }\n}\n\n    \n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"classes/HttpError.html":{"url":"classes/HttpError.html","title":"class - HttpError","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n  Classes\n  HttpError\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_helpers/global-error-handler.ts\n        \n\n\n            \n                Extends\n            \n            \n                    Error\n            \n\n\n\n            \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                    Public\n                                status\n                            \n                        \n                    \n                \n\n\n\n\n\n\n        \n    \n\n\n            \n    Constructor\n        \n            \n                \n                    \nconstructor(message: string, status: number)\n                    \n                \n                        \n                            \n                                Defined in src/app/_helpers/global-error-handler.ts:8\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        message\n                                                  \n                                                        \n                                                                        string\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        status\n                                                  \n                                                        \n                                                                        number\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n            \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                                Public\n                            status\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         number\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_helpers/global-error-handler.ts:8\n                            \n                        \n\n\n            \n        \n\n\n\n\n\n\n\n\n    \n\n\n    \n        import {ErrorHandler, Injectable} from '@angular/core';\nimport {LoggingService} from '@app/_services/logging.service';\nimport {HttpErrorResponse} from '@angular/common/http';\nimport {Router} from '@angular/router';\n\n// A generalized http response error\nexport class HttpError extends Error {\n  public status: number;\n  constructor(message: string, status: number) {\n    super(message);\n    this.status = status;\n    this.name = 'HttpError';\n  }\n}\n\n@Injectable()\nexport class GlobalErrorHandler extends ErrorHandler {\n  private sentencesForWarningLogging: Array = [];\n\n  constructor(\n    private loggingService: LoggingService,\n    private router: Router\n  ) {\n    super();\n  }\n\n  handleError(error: Error): void {\n    this.logError(error);\n    const message: string = error.message ? error.message : error.toString();\n\n    // if (error.status) {\n    //   error = new Error(message);\n    // }\n\n    const errorTraceString: string = `Error message:\\n${message}.\\nStack trace: ${error.stack}`;\n\n    const isWarning: boolean = this.isWarning(errorTraceString);\n    if (isWarning) {\n      this.loggingService.sendWarnLevelMessage(errorTraceString, {error});\n    } else {\n      this.loggingService.sendErrorLevelMessage(errorTraceString, this, {error});\n    }\n\n    throw error;\n  }\n\n  logError(error: any): void {\n    const route: string = this.router.url;\n    if (error instanceof HttpErrorResponse) {\n      this.loggingService.sendErrorLevelMessage(\n        `There was an HTTP error on route ${route}.\\n${error.message}.\\nStatus code: ${(error as HttpErrorResponse).status}`,\n        this, {error});\n    } else if (error instanceof TypeError) {\n      this.loggingService.sendErrorLevelMessage(`There was a Type error on route ${route}.\\n${error.message}`, this, {error});\n    } else if (error instanceof Error) {\n      this.loggingService.sendErrorLevelMessage(`There was a general error on route ${route}.\\n${error.message}`, this, {error});\n    } else {\n      this.loggingService.sendErrorLevelMessage(`Nobody threw an error but something happened on route ${route}!`, this, {error});\n    }\n  }\n\n  /**\n   *\n   * @param errorTraceString\n   * @private\n   */\n  private isWarning(errorTraceString: string): boolean {\n    let isWarning: boolean = true;\n    if (errorTraceString.includes('/src/app/')) {\n      isWarning = false;\n    }\n\n    this.sentencesForWarningLogging.forEach((whiteListSentence: string) => {\n      if (errorTraceString.includes(whiteListSentence)) {\n        isWarning = true;\n      }\n    });\n\n    return isWarning;\n  }\n}\n\n    \n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"injectables/LocationService.html":{"url":"injectables/LocationService.html","title":"injectable - LocationService","body":"\n                   \n\n\n\n\n\n\n\n\n  Injectables\n  LocationService\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_services/location.service.ts\n        \n\n\n\n\n            \n    Index\n    \n        \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                getAreaNameByLocation\n                            \n                            \n                                getAreaNames\n                            \n                            \n                                getAreaTypeByArea\n                            \n                            \n                                getAreaTypes\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n            \n    Constructor\n        \n            \n                \n                    \nconstructor(httpClient: HttpClient)\n                    \n                \n                        \n                            \n                                Defined in src/app/_services/location.service.ts:10\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        httpClient\n                                                  \n                                                        \n                                                                        HttpClient\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getAreaNameByLocation\n                        \n                        \n                    \n                \n            \n            \n                \ngetAreaNameByLocation(location: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/location.service.ts:20\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    location\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Observable\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getAreaNames\n                        \n                        \n                    \n                \n            \n            \n                \ngetAreaNames()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/location.service.ts:16\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Observable\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getAreaTypeByArea\n                        \n                        \n                    \n                \n            \n            \n                \ngetAreaTypeByArea(area: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/location.service.ts:28\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    area\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Observable\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getAreaTypes\n                        \n                        \n                    \n                \n            \n            \n                \ngetAreaTypes()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/location.service.ts:24\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Observable\n\n                    \n                \n            \n        \n    \n\n\n    \n\n\n    \n        import { Injectable } from '@angular/core';\nimport {Observable} from 'rxjs';\nimport {environment} from '@src/environments/environment';\nimport {first} from 'rxjs/operators';\nimport {HttpClient} from '@angular/common/http';\n\n@Injectable({\n  providedIn: 'root'\n})\nexport class LocationService {\n\n  constructor(\n    private httpClient: HttpClient,\n  ) { }\n\n  getAreaNames(): Observable {\n    return this.httpClient.get(`${environment.cicMetaUrl}/areanames`);\n  }\n\n  getAreaNameByLocation(location: string): Observable {\n    return this.httpClient.get(`${environment.cicMetaUrl}/areanames/${location.toLowerCase()}`);\n  }\n\n  getAreaTypes(): Observable {\n    return this.httpClient.get(`${environment.cicMetaUrl}/areatypes`).pipe(first());\n  }\n\n  getAreaTypeByArea(area: string): Observable {\n    return this.httpClient.get(`${environment.cicMetaUrl}/areatypes/${area.toLowerCase()}`).pipe(first());\n  }\n}\n\n    \n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"interceptors/LoggingInterceptor.html":{"url":"interceptors/LoggingInterceptor.html","title":"interceptor - LoggingInterceptor","body":"\n                   \n\n\n\n\n\n\n\n\n\n  Interceptors\n  LoggingInterceptor\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_interceptors/logging.interceptor.ts\n        \n\n\n\n            \n    Index\n    \n        \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                intercept\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n            \n    Constructor\n        \n            \n                \n                    \nconstructor(loggingService: LoggingService)\n                    \n                \n                        \n                            \n                                Defined in src/app/_interceptors/logging.interceptor.ts:14\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        loggingService\n                                                  \n                                                        \n                                                                        LoggingService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            intercept\n                        \n                        \n                    \n                \n            \n            \n                \nintercept(request: HttpRequest, next: HttpHandler)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_interceptors/logging.interceptor.ts:20\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    request\n                                    \n                                            HttpRequest\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    next\n                                    \n                                                HttpHandler\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Observable>\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n\n    \n\n\n    \n        import { Injectable } from '@angular/core';\nimport {\n  HttpRequest,\n  HttpHandler,\n  HttpEvent,\n  HttpInterceptor,\n  HttpResponse\n} from '@angular/common/http';\nimport {Observable} from 'rxjs';\nimport {LoggingService} from '@app/_services/logging.service';\nimport {finalize, tap} from 'rxjs/operators';\n\n@Injectable()\nexport class LoggingInterceptor implements HttpInterceptor {\n\n  constructor(\n    private loggingService: LoggingService\n  ) {}\n\n  intercept(request: HttpRequest, next: HttpHandler): Observable> {\n    return next.handle(request);\n    // this.loggingService.sendInfoLevelMessage(request);\n    // const startTime: number = Date.now();\n    // let status: string;\n    //\n    // return next.handle(request).pipe(tap(event => {\n    //   status = '';\n    //   if (event instanceof HttpResponse) {\n    //     status = 'succeeded';\n    //   }\n    // }, error => status = 'failed'),\n    //   finalize(() => {\n    //   const elapsedTime: number = Date.now() - startTime;\n    //   const message: string = `${request.method} request for ${request.urlWithParams} ${status} in ${elapsedTime} ms`;\n    //   this.loggingService.sendInfoLevelMessage(message);\n    // }));\n  }\n}\n\n    \n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"injectables/LoggingService.html":{"url":"injectables/LoggingService.html","title":"injectable - LoggingService","body":"\n                   \n\n\n\n\n\n\n\n\n  Injectables\n  LoggingService\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_services/logging.service.ts\n        \n\n\n\n\n            \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                canDebug\n                            \n                            \n                                env\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                sendDebugLevelMessage\n                            \n                            \n                                sendErrorLevelMessage\n                            \n                            \n                                sendFatalLevelMessage\n                            \n                            \n                                sendInfoLevelMessage\n                            \n                            \n                                sendLogLevelMessage\n                            \n                            \n                                sendTraceLevelMessage\n                            \n                            \n                                sendWarnLevelMessage\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n            \n    Constructor\n        \n            \n                \n                    \nconstructor(logger: NGXLogger)\n                    \n                \n                        \n                            \n                                Defined in src/app/_services/logging.service.ts:9\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        logger\n                                                  \n                                                        \n                                                                    NGXLogger\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            sendDebugLevelMessage\n                        \n                        \n                    \n                \n            \n            \n                \nsendDebugLevelMessage(message: any, source: any, error: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/logging.service.ts:22\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    message\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    source\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    error\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            sendErrorLevelMessage\n                        \n                        \n                    \n                \n            \n            \n                \nsendErrorLevelMessage(message: any, source: any, error: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/logging.service.ts:38\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    message\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    source\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    error\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            sendFatalLevelMessage\n                        \n                        \n                    \n                \n            \n            \n                \nsendFatalLevelMessage(message: any, source: any, error: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/logging.service.ts:42\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    message\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    source\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    error\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            sendInfoLevelMessage\n                        \n                        \n                    \n                \n            \n            \n                \nsendInfoLevelMessage(message: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/logging.service.ts:26\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    message\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            sendLogLevelMessage\n                        \n                        \n                    \n                \n            \n            \n                \nsendLogLevelMessage(message: any, source: any, error: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/logging.service.ts:30\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    message\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    source\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    error\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            sendTraceLevelMessage\n                        \n                        \n                    \n                \n            \n            \n                \nsendTraceLevelMessage(message: any, source: any, error: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/logging.service.ts:18\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    message\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    source\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    error\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            sendWarnLevelMessage\n                        \n                        \n                    \n                \n            \n            \n                \nsendWarnLevelMessage(message: any, error: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/logging.service.ts:34\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    message\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    error\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n            \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            canDebug\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         boolean\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_services/logging.service.ts:9\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            env\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_services/logging.service.ts:8\n                            \n                        \n\n\n            \n        \n\n\n    \n\n\n    \n        import {Injectable, isDevMode} from '@angular/core';\nimport {NGXLogger} from 'ngx-logger';\n\n@Injectable({\n  providedIn: 'root'\n})\nexport class LoggingService {\n  env: string;\n  canDebug: boolean;\n\n  constructor(private logger: NGXLogger) {\n    // TRACE|DEBUG|INFO|LOG|WARN|ERROR|FATAL|OFF\n    if (isDevMode()) {\n      this.sendInfoLevelMessage('Dropping into debug mode');\n    }\n  }\n\n  sendTraceLevelMessage(message: any, source: any, error: any): void {\n    this.logger.trace(message, source, error);\n  }\n\n  sendDebugLevelMessage(message: any, source: any, error: any): void {\n    this.logger.debug(message, source, error);\n  }\n\n  sendInfoLevelMessage(message: any): void {\n    this.logger.info(message);\n  }\n\n  sendLogLevelMessage(message: any, source: any, error: any): void {\n    this.logger.log(message, source, error);\n  }\n\n  sendWarnLevelMessage(message: any, error: any): void {\n    this.logger.warn(message, error);\n  }\n\n  sendErrorLevelMessage(message: any, source: any, error: any): void {\n    this.logger.error(message, source, error);\n  }\n\n  sendFatalLevelMessage(message: any, source: any, error: any): void {\n    this.logger.fatal(message, source, error);\n  }\n}\n\n    \n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"directives/MenuSelectionDirective.html":{"url":"directives/MenuSelectionDirective.html","title":"directive - MenuSelectionDirective","body":"\n                   \n\n\n\n\n\n\n\n  Directives\n  MenuSelectionDirective\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/shared/_directives/menu-selection.directive.ts\n        \n\n\n\n\n        \n            Metadata\n            \n                \n\n                    \n                        Selector\n                        [appMenuSelection]\n                    \n\n                \n            \n        \n\n            \n    Index\n    \n        \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                onMenuSelect\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n            \n    Constructor\n        \n            \n                \n                    \nconstructor(elementRef: ElementRef, renderer: Renderer2)\n                    \n                \n                        \n                            \n                                Defined in src/app/shared/_directives/menu-selection.directive.ts:6\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        elementRef\n                                                  \n                                                        \n                                                                        ElementRef\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        renderer\n                                                  \n                                                        \n                                                                        Renderer2\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n\n\n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            onMenuSelect\n                        \n                        \n                    \n                \n            \n            \n                \nonMenuSelect()\n                \n            \n\n\n            \n                \n                    Defined in src/app/shared/_directives/menu-selection.directive.ts:20\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n\n\n\n    \n\n\n    \n        import {Directive, ElementRef, Renderer2} from '@angular/core';\n\n@Directive({\n  selector: '[appMenuSelection]'\n})\nexport class MenuSelectionDirective {\n\n  constructor(\n    private elementRef: ElementRef,\n    private renderer: Renderer2\n  ) {\n    this.renderer.listen(this.elementRef.nativeElement, 'click', () => {\n      const mediaQuery = window.matchMedia('(max-width: 768px)');\n      if (mediaQuery.matches) {\n        this.onMenuSelect();\n      }\n    });\n  }\n\n  onMenuSelect(): void {\n    const sidebar: HTMLElement = document.getElementById('sidebar');\n    if (!sidebar?.classList.contains('active')) {\n      sidebar?.classList.add('active');\n    }\n    const content: HTMLElement = document.getElementById('content');\n    if (!content?.classList.contains('active')) {\n      content?.classList.add('active');\n    }\n    const sidebarCollapse: HTMLElement = document.getElementById('sidebarCollapse');\n    if (sidebarCollapse?.classList.contains('active')) {\n      sidebarCollapse?.classList.remove('active');\n    }\n  }\n}\n\n    \n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"directives/MenuToggleDirective.html":{"url":"directives/MenuToggleDirective.html","title":"directive - MenuToggleDirective","body":"\n                   \n\n\n\n\n\n\n\n  Directives\n  MenuToggleDirective\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/shared/_directives/menu-toggle.directive.ts\n        \n\n\n\n\n        \n            Metadata\n            \n                \n\n                    \n                        Selector\n                        [appMenuToggle]\n                    \n\n                \n            \n        \n\n            \n    Index\n    \n        \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                onMenuToggle\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n            \n    Constructor\n        \n            \n                \n                    \nconstructor(elementRef: ElementRef, renderer: Renderer2)\n                    \n                \n                        \n                            \n                                Defined in src/app/shared/_directives/menu-toggle.directive.ts:6\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        elementRef\n                                                  \n                                                        \n                                                                        ElementRef\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        renderer\n                                                  \n                                                        \n                                                                        Renderer2\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n\n\n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            onMenuToggle\n                        \n                        \n                    \n                \n            \n            \n                \nonMenuToggle()\n                \n            \n\n\n            \n                \n                    Defined in src/app/shared/_directives/menu-toggle.directive.ts:18\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n\n\n\n    \n\n\n    \n        import {Directive, ElementRef, Renderer2} from '@angular/core';\n\n@Directive({\n  selector: '[appMenuToggle]'\n})\nexport class MenuToggleDirective {\n\n  constructor(\n    private elementRef: ElementRef,\n    private renderer: Renderer2\n  ) {\n    this.renderer.listen(this.elementRef.nativeElement, 'click', () => {\n      this.onMenuToggle();\n    });\n  }\n\n  // Menu Trigger\n  onMenuToggle(): void {\n    const sidebar: HTMLElement = document.getElementById('sidebar');\n    sidebar?.classList.toggle('active');\n    const content: HTMLElement = document.getElementById('content');\n    content?.classList.toggle('active');\n    const sidebarCollapse: HTMLElement = document.getElementById('sidebarCollapse');\n    sidebarCollapse?.classList.toggle('active');\n  }\n}\n\n    \n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"interfaces/Meta.html":{"url":"interfaces/Meta.html","title":"interface - Meta","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n\n  Interfaces\n  Meta\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_models/account.ts\n        \n\n\n\n        \n            Index\n            \n                \n                    \n                        \n                            Properties\n                        \n                    \n                    \n                        \n                            \n                                \n                                        data\n                                \n                                \n                                        id\n                                \n                                \n                                        signature\n                                \n                            \n                        \n                    \n                \n            \n        \n\n\n\n            \n                Properties\n                    \n                        \n                                \n                                    \n                                        \n                                        data\n                                    \n                                \n                                \n                                    \n                                        data:         AccountDetails\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         AccountDetails\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        id\n                                    \n                                \n                                \n                                    \n                                        id:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        signature\n                                    \n                                \n                                \n                                    \n                                        signature:         Signature\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         Signature\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n            \n    \n\n\n    \n        interface AccountDetails {\n  date_registered: number;\n  gender: string;\n  age?: string;\n  type?: string;\n  balance?: number;\n  identities: {\n    evm: {\n      'bloxberg:8996': string[];\n      'oldchain:1': string[];\n    };\n    latitude: number;\n    longitude: number;\n  };\n  location: {\n    area?: string;\n    area_name: string;\n    area_type?: string;\n  };\n  products: string[];\n  category?: string;\n  vcard: {\n    email: [{\n      value: string;\n    }];\n    fn: [{\n      value: string;\n    }];\n    n: [{\n      value: string[];\n    }];\n    tel: [{\n      meta: {\n        TYP: string[];\n      },\n      value: string;\n    }],\n    version: [{\n      value: string;\n    }];\n  };\n}\n\ninterface Signature {\n  algo: string;\n  data: string;\n  digest: string;\n  engine: string;\n}\n\ninterface Meta {\n  data: AccountDetails;\n  id: string;\n  signature: Signature;\n}\n\ninterface MetaResponse {\n  id: string;\n  m: Meta;\n}\n\nconst defaultAccount: AccountDetails = {\n  date_registered: Date.now(),\n  gender: 'other',\n  identities: {\n    evm: {\n      'bloxberg:8996': [''],\n      'oldchain:1': [''],\n    },\n    latitude: 0,\n    longitude: 0,\n  },\n  location: {\n    area_name: 'Kilifi',\n  },\n  products: [],\n  vcard: {\n    email: [{\n      value: '',\n    }],\n    fn: [{\n      value: 'Sarafu Contract',\n    }],\n    n: [{\n      value: ['Sarafu', 'Contract'],\n    }],\n    tel: [{\n      meta: {\n        TYP: [],\n      },\n      value: '',\n    }],\n    version: [{\n      value: '3.0',\n    }],\n  },\n};\n\nexport {\n  AccountDetails,\n  Signature,\n  Meta,\n  MetaResponse,\n  defaultAccount\n};\n\n    \n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"interfaces/MetaResponse.html":{"url":"interfaces/MetaResponse.html","title":"interface - MetaResponse","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n\n  Interfaces\n  MetaResponse\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_models/account.ts\n        \n\n\n\n        \n            Index\n            \n                \n                    \n                        \n                            Properties\n                        \n                    \n                    \n                        \n                            \n                                \n                                        id\n                                \n                                \n                                        m\n                                \n                            \n                        \n                    \n                \n            \n        \n\n\n\n            \n                Properties\n                    \n                        \n                                \n                                    \n                                        \n                                        id\n                                    \n                                \n                                \n                                    \n                                        id:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        m\n                                    \n                                \n                                \n                                    \n                                        m:         Meta\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         Meta\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n            \n    \n\n\n    \n        interface AccountDetails {\n  date_registered: number;\n  gender: string;\n  age?: string;\n  type?: string;\n  balance?: number;\n  identities: {\n    evm: {\n      'bloxberg:8996': string[];\n      'oldchain:1': string[];\n    };\n    latitude: number;\n    longitude: number;\n  };\n  location: {\n    area?: string;\n    area_name: string;\n    area_type?: string;\n  };\n  products: string[];\n  category?: string;\n  vcard: {\n    email: [{\n      value: string;\n    }];\n    fn: [{\n      value: string;\n    }];\n    n: [{\n      value: string[];\n    }];\n    tel: [{\n      meta: {\n        TYP: string[];\n      },\n      value: string;\n    }],\n    version: [{\n      value: string;\n    }];\n  };\n}\n\ninterface Signature {\n  algo: string;\n  data: string;\n  digest: string;\n  engine: string;\n}\n\ninterface Meta {\n  data: AccountDetails;\n  id: string;\n  signature: Signature;\n}\n\ninterface MetaResponse {\n  id: string;\n  m: Meta;\n}\n\nconst defaultAccount: AccountDetails = {\n  date_registered: Date.now(),\n  gender: 'other',\n  identities: {\n    evm: {\n      'bloxberg:8996': [''],\n      'oldchain:1': [''],\n    },\n    latitude: 0,\n    longitude: 0,\n  },\n  location: {\n    area_name: 'Kilifi',\n  },\n  products: [],\n  vcard: {\n    email: [{\n      value: '',\n    }],\n    fn: [{\n      value: 'Sarafu Contract',\n    }],\n    n: [{\n      value: ['Sarafu', 'Contract'],\n    }],\n    tel: [{\n      meta: {\n        TYP: [],\n      },\n      value: '',\n    }],\n    version: [{\n      value: '3.0',\n    }],\n  },\n};\n\nexport {\n  AccountDetails,\n  Signature,\n  Meta,\n  MetaResponse,\n  defaultAccount\n};\n\n    \n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"interceptors/MockBackendInterceptor.html":{"url":"interceptors/MockBackendInterceptor.html","title":"interceptor - MockBackendInterceptor","body":"\n                   \n\n\n\n\n\n\n\n\n\n  Interceptors\n  MockBackendInterceptor\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_helpers/mock-backend.ts\n        \n\n\n\n            \n    Index\n    \n        \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                intercept\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            intercept\n                        \n                        \n                    \n                \n            \n            \n                \nintercept(request: HttpRequest, next: HttpHandler)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_helpers/mock-backend.ts:240\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    request\n                                    \n                                            HttpRequest\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    next\n                                    \n                                                HttpHandler\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Observable>\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n\n    \n\n\n    \n        import {HTTP_INTERCEPTORS, HttpEvent, HttpHandler, HttpInterceptor, HttpRequest, HttpResponse} from '@angular/common/http';\nimport {Injectable} from '@angular/core';\nimport {Observable, of, throwError} from 'rxjs';\nimport {delay, dematerialize, materialize, mergeMap} from 'rxjs/operators';\nimport {Action, AreaName, AreaType, Category, Token} from '@app/_models';\n\nconst actions: Array = [\n  { id: 1, user: 'Tom', role: 'enroller', action: 'Disburse RSV 100', approval: false },\n  { id: 2, user: 'Christine', role: 'admin', action: 'Change user phone number', approval: true },\n  { id: 3, user: 'Will', role: 'superadmin', action: 'Reclaim RSV 1000', approval: true },\n  { id: 4, user: 'Vivian', role: 'enroller', action: 'Complete user profile', approval: true },\n  { id: 5, user: 'Jack', role: 'enroller', action: 'Reclaim RSV 200', approval: false },\n  { id: 6, user: 'Patience', role: 'enroller', action: 'Change user information', approval: false }\n];\n\nconst tokens: Array = [\n  {\n    name: 'Giftable Reserve', symbol: 'GRZ', address: '0xa686005CE37Dce7738436256982C3903f2E4ea8E', supply: '1000000001000000000000000000',\n    decimals: '18', reserves: {}\n  },\n  {\n    name: 'Demo Token', symbol: 'DEMO', address: '0xc80D6aFF8194114c52AEcD84c9f15fd5c8abb187', supply: '99999999999999998976',\n    decimals: '18', reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '99999999999999998976'}},\n    reserveRatio: '1000000', owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'\n  },\n  {\n    name: 'Foo Token', symbol: 'FOO', address: '0x9ceD86089f7aBB5A97B40eb0E7521e7aa308d354', supply: '1000000000000000001014',\n    decimals: '18', reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '1000000000000000001014'}},\n    reserveRatio: '1000000', owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'\n  },\n  {\n    name: 'testb', symbol: 'tstb', address: '0xC63cFA91A3BFf41cE31Ff436f67D3ACBC977DB95', supply: '99000', decimals: '18',\n    reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '99000'}}, reserveRatio: '1000000',\n    owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'\n  },\n  {\n    name: 'testa', symbol: 'tsta', address: '0x8fA4101ef19D0a078239d035659e92b278bD083C', supply: '9981', decimals: '18',\n    reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '9981'}}, reserveRatio: '1000000',\n    owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'\n  },\n  {\n    name: 'testc', symbol: 'tstc', address: '0x4A6fA6bc3BfE4C9661bC692D9798425350C9e3D4', supply: '100990', decimals: '18',\n    reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '100990'}}, reserveRatio: '1000000',\n    owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'\n  }\n];\n\nconst categories: Array = [\n  {\n    name: 'system',\n    products: ['system', 'office main', 'office main phone']\n  },\n  {\n    name: 'education',\n    products: ['book', 'coach', 'teacher', 'sch', 'school', 'pry', 'education', 'student', 'mwalimu', 'maalim', 'consultant', 'consult',\n      'college', 'university', 'lecturer', 'primary', 'secondary', 'daycare', 'babycare', 'baby care', 'elim', 'eimu', 'nursery',\n      'red cross', 'volunteer', 'instructor', 'journalist', 'lesson', 'academy', 'headmistress', 'headteacher', 'cyber', 'researcher',\n      'professor', 'demo', 'expert', 'tution', 'tuition', 'children', 'headmaster', 'educator', 'Marital counsellor', 'counsellor',\n      'trainer', 'vijana', 'youth', 'intern', 'redcross', 'KRCS', 'danish', 'science', 'data', 'facilitator', 'vitabu', 'kitabu']\n  },\n  {\n    name: 'faith',\n    products: ['pastor', 'imam', 'madrasa', 'religous', 'religious', 'ustadh', 'ustadhi', 'Marital counsellor', 'counsellor', 'church',\n      'kanisa', 'mksiti', 'donor']\n  },\n  {\n    name: 'government',\n    products: ['elder', 'chief', 'police', 'government', 'country', 'county', 'soldier', 'village admin', 'ward', 'leader', 'kra',\n      'mailman', 'immagration', 'immigration']\n  },\n  {\n    name: 'environment',\n    products: ['conservation', 'toilet', 'choo', 'garbage', 'fagio', 'waste', 'tree', 'taka', 'scrap', 'cleaning', 'gardener', 'rubbish',\n      'usafi', 'mazingira', 'miti', 'trash', 'cleaner', 'plastic', 'collection', 'seedling', 'seedlings', 'recycling']\n  },\n  {\n    name: 'farming',\n    products: ['farm', 'farmer', 'farming', 'mkulima', 'kulima', 'ukulima', 'wakulima', 'jembe', 'shamba']\n  },\n  {\n    name: 'labour',\n    products: ['artist', 'agent', 'guard', 'askari', 'accountant', 'baker', 'beadwork', 'beauty', 'business', 'barber', 'casual',\n      'electrian', 'caretaker', 'car wash', 'capenter', 'construction', 'chef', 'catering', 'cobler', 'cobbler', 'carwash', 'dhobi',\n      'landlord', 'design', 'carpenter', 'fundi', 'hawking', 'hawker', 'househelp', 'hsehelp', 'house help', 'help', 'housegirl', 'kushona',\n      'juakali', 'jualikali', 'juacali', 'jua kali', 'shepherd', 'makuti', 'kujenga', 'kinyozi', 'kazi', 'knitting', 'kufua', 'fua',\n      'hustler', 'biashara', 'labour', 'labor', 'laundry', 'repair', 'hair', 'posho', 'mill', 'mtambo', 'uvuvi', 'engineer', 'manager',\n      'tailor', 'nguo', 'mason', 'mtumba', 'garage', 'mechanic', 'mjenzi', 'mfugaji', 'painter', 'receptionist', 'printing', 'programming',\n      'plumb', 'charging', 'salon', 'mpishi', 'msusi', 'mgema', 'footballer', 'photocopy', 'peddler', 'staff', 'sales', 'service', 'saloon',\n      'seremala', 'security', 'insurance', 'secretary', 'shoe', 'shepard', 'shephard', 'tout', 'tv', 'mvuvi', 'mawe', 'majani', 'maembe',\n      'freelance', 'mjengo', 'electronics', 'photographer', 'programmer', 'electrician', 'washing', 'bricks', 'welder', 'welding',\n      'working', 'worker', 'watchman', 'waiter', 'waitress', 'viatu', 'yoga', 'guitarist', 'house', 'artisan', 'musician', 'trade',\n      'makonge', 'ujenzi', 'vendor', 'watchlady', 'marketing', 'beautician', 'photo', 'metal work', 'supplier', 'law firm', 'brewer']\n  },\n  {\n    name: 'food',\n    products: ['avocado', 'bhajia', 'bajia', 'mbonga', 'bofu', 'beans', 'biscuits', 'biringanya', 'banana', 'bananas', 'crisps', 'chakula',\n      'coconut', 'chapati', 'cereal', 'chipo', 'chapo', 'chai', 'chips', 'cassava', 'cake', 'cereals', 'cook', 'corn', 'coffee', 'chicken',\n      'dagaa', 'donut', 'dough', 'groundnuts', 'hotel', 'holel', 'hoteli', 'butcher', 'butchery', 'fruit', 'food', 'fruits', 'fish',\n      'githeri', 'grocery', 'grocer', 'pojo', 'papa', 'goats', 'mabenda', 'mbenda', 'poultry', 'soda', 'peanuts', 'potatoes', 'samosa',\n      'soko', 'samaki', 'tomato', 'tomatoes', 'mchele', 'matunda', 'mango', 'melon', 'mellon', 'nyanya', 'nyama', 'omena', 'umena', 'ndizi',\n      'njugu', 'kamba kamba', 'khaimati', 'kaimati', 'kunde', 'kuku', 'kahawa', 'keki', 'muguka', 'miraa', 'milk', 'choma', 'maziwa',\n      'mboga', 'mbog', 'busaa', 'chumvi', 'cabbages', 'mabuyu', 'machungwa', 'mbuzi', 'mnazi', 'mchicha', 'ngombe', 'ngano', 'nazi',\n      'oranges', 'peanuts', 'mkate', 'bread', 'mikate', 'vitungu', 'sausages', 'maize', 'mbata', 'mchuzi', 'mchuuzi', 'mandazi', 'mbaazi',\n      'mahindi', 'maandazi', 'mogoka', 'meat', 'mhogo', 'mihogo', 'muhogo', 'maharagwe', 'miwa', 'mahamri', 'mitumba', 'simsim', 'porridge',\n      'pilau', 'vegetable', 'egg', 'mayai', 'mifugo', 'unga', 'good', 'sima', 'sweet', 'sweats', 'sambusa', 'snacks', 'sugar', 'suger',\n      'ugoro', 'sukari', 'soup', 'spinach', 'smokie', 'smokies', 'sukuma', 'tea', 'uji', 'ugali', 'uchuzi', 'uchuuzi', 'viazi', 'yoghurt',\n      'yogurt', 'wine', 'marondo', 'maandzi', 'matoke', 'omeno', 'onions', 'nzugu', 'korosho', 'barafu', 'juice']\n  },\n  {\n    name: 'water',\n    products: ['maji', 'water']\n  },\n  {\n    name: 'health',\n    products: ['agrovet', 'dispensary', 'barakoa', 'chemist', 'Chemicals', 'chv', 'doctor', 'daktari', 'dawa', 'hospital', 'herbalist',\n      'mganga', 'sabuni', 'soap', 'nurse', 'heath', 'community health worker', 'clinic', 'clinical', 'mask', 'medicine', 'lab technician',\n      'pharmacy', 'cosmetics', 'veterinary', 'vet', 'sickly', 'emergency response', 'emergency']\n  },\n  {\n    name: 'savings',\n    products: ['chama', 'group', 'savings', 'loan', 'silc', 'vsla', 'credit', 'finance']\n  },\n  {\n    name: 'shop',\n    products: ['bag', 'bead', 'belt', 'bedding', 'jik', 'bed', 'cement', 'botique', 'boutique', 'lines', 'kibanda', 'kiosk', 'spareparts',\n      'candy', 'cloth', 'electricals', 'mutumba', 'cafe', 'leso', 'lesso', 'duka', 'spare parts', 'socks', 'malimali', 'mitungi',\n      'mali mali', 'hardware', 'detergent', 'detergents', 'dera', 'retail', 'kamba', 'pombe', 'pampers', 'pool', 'phone', 'simu', 'mangwe',\n      'mikeka', 'movie', 'shop', 'acces', 'mchanga', 'uto', 'airtime', 'matress', 'mattress', 'mattresses', 'mpsea', 'mpesa', 'shirt',\n      'wholesaler', 'perfume', 'playstation', 'tissue', 'vikapu', 'uniform', 'flowers', 'vitenge', 'utencils', 'utensils', 'station',\n      'jewel', 'pool table', 'club', 'pub', 'bar', 'furniture', 'm-pesa', 'vyombo']\n  },\n  {\n    name: 'transport',\n    products: ['kebeba', 'beba', 'bebabeba', 'bike', 'bicycle', 'matatu', 'boda', 'bodaboda', 'cart', 'carrier', 'tour', 'travel', 'driver',\n      'dereva', 'tout', 'conductor', 'kubeba', 'tuktuk', 'taxi', 'piki', 'pikipiki', 'manamba', 'trasportion', 'mkokoteni', 'mover',\n      'motorist', 'motorbike', 'transport', 'transpoter', 'gari', 'magari', 'makanga', 'car']\n  },\n  {\n    name: 'fuel/energy',\n    products: ['timber', 'timberyard', 'biogas', 'charcol', 'charcoal', 'kuni', 'mbao', 'fuel', 'makaa', 'mafuta', 'moto', 'solar', 'stima',\n      'fire', 'firewood', 'wood', 'oil', 'taa', 'gas', 'paraffin', 'parrafin', 'parafin', 'petrol', 'petro', 'kerosine', 'kerosene',\n      'diesel']\n  },\n  {\n    name: 'other',\n    products: ['other', 'none', 'unknown', 'none']\n  }\n];\n\nconst areaNames: Array = [\n  {\n    name: 'Mukuru Nairobi',\n    locations: ['kayaba', 'kayba', 'kambi', 'mukuru', 'masai', 'hazina', 'south', 'tetra', 'tetrapak', 'ruben', 'rueben', 'kingston',\n      'korokocho', 'kingstone', 'kamongo', 'lungalunga', 'sinai', 'sigei', 'lungu', 'lunga lunga', 'owino road', 'seigei']\n  },\n  {\n    name: 'Kinango Kwale',\n    locations: ['amani', 'bofu', 'chibuga', 'chikomani', 'chilongoni', 'chigojoni', 'chinguluni', 'chigato', 'chigale', 'chikole',\n      'chilongoni', 'chilumani', 'chigojoni', 'chikomani', 'chizini', 'chikomeni', 'chidzuvini', 'chidzivuni', 'chikuyu', 'chizingo',\n      'doti', 'dzugwe', 'dzivani', 'dzovuni', 'hanje', 'kasemeni', 'katundani', 'kibandaogo', 'kibandaongo', 'kwale', 'kinango',\n      'kidzuvini', 'kalalani', 'kafuduni', 'kaloleni', 'kilibole', 'lutsangani', 'peku', 'gona', 'guro', 'gandini', 'mkanyeni', 'myenzeni',\n      'miyenzeni', 'miatsiani', 'mienzeni', 'mnyenzeni', 'minyenzeni', 'miyani', 'mioleni', 'makuluni', 'mariakani', 'makobeni', 'madewani',\n      'mwangaraba', 'mwashanga', 'miloeni', 'mabesheni', 'mazeras', 'mazera', 'mlola', 'muugano', 'mulunguni', 'mabesheni', 'miatsani',\n      'miatsiani', 'mwache', 'mwangani', 'mwehavikonje', 'miguneni', 'nzora', 'nzovuni', 'vikinduni', 'vikolani', 'vitangani', 'viogato',\n      'vyogato', 'vistangani', 'yapha', 'yava', 'yowani', 'ziwani', 'majengo', 'matuga', 'vigungani', 'vidziweni', 'vinyunduni', 'ukunda',\n      'kokotoni', 'mikindani']\n  },\n  {\n    name: 'Misc Nairobi',\n    locations: ['nairobi', 'west', 'lindi', 'kibera', 'kibira', 'kibra', 'makina', 'soweto', 'olympic', 'kangemi', 'ruiru', 'congo',\n      'kawangware', 'kwangware', 'donholm', 'dagoreti', 'dandora', 'kabete', 'sinai', 'donhom', 'donholm', 'huruma', 'kitengela',\n      'makadara', ',mlolongo', 'kenyatta', 'mlolongo', 'tassia', 'tasia', 'gatina', '56', 'industrial', 'kariobangi', 'kasarani', 'kayole',\n      'mathare', 'pipe', 'juja', 'uchumi', 'jogoo', 'umoja', 'thika', 'kikuyu', 'stadium', 'buru buru', 'ngong', 'starehe', 'mwiki',\n      'fuata', 'kware', 'kabiro', 'embakassi', 'embakasi', 'kmoja', 'east', 'githurai', 'landi', 'langata', 'limuru', 'mathere',\n      'dagoretti', 'kirembe', 'muugano', 'mwiki', 'toi market']\n  },\n  {\n    name: 'Misc Mombasa',\n    locations: ['mombasa', 'likoni', 'bangla', 'bangladesh', 'kizingo', 'old town', 'makupa', 'mvita', 'ngombeni', 'ngómbeni', 'ombeni',\n      'magongo', 'miritini', 'changamwe', 'jomvu', 'ohuru', 'tudor', 'diani']\n  },\n  {\n    name: 'Kisauni',\n    locations: ['bamburi', 'kisauni', 'mworoni', 'nyali', 'shanzu', 'bombolulu', 'mtopanga', 'mjambere', 'majaoni', 'manyani', 'magogoni',\n      'junda', 'mwakirunge', 'mshomoroni']\n  },\n  {\n    name: 'Kilifi',\n    locations: ['kilfi', 'kilifi', 'mtwapa', 'takaungu', 'makongeni', 'mnarani', 'mnarani', 'office', 'g.e', 'ge', 'raibai', 'ribe']\n  },\n  {\n    name: 'Kakuma',\n    locations: ['kakuma']\n  },\n  {\n    name: 'Kitui',\n    locations: ['kitui', 'mwingi']\n  },\n  {\n    name: 'Nyanza',\n    locations: ['busia', 'nyalgunga', 'mbita', 'siaya', 'kisumu', 'nyalenda', 'hawinga', 'rangala', 'uyoma', 'mumias', 'homabay', 'homaboy',\n      'migori', 'kusumu']\n  },\n  {\n    name: 'Misc Rural Counties',\n    locations: ['makueni', 'meru', 'kisii', 'bomet', 'machakos', 'bungoma', 'eldoret', 'kakamega', 'kericho', 'kajiado', 'nandi', 'nyeri',\n      'wote', 'kiambu', 'mwea', 'nakuru', 'narok']\n  },\n  {\n    name: 'other',\n    locations: ['other', 'none', 'unknown']\n  }\n];\n\nconst areaTypes: Array = [\n  {\n    name: 'urban',\n    area: ['urban', 'nairobi', 'mombasa']\n  },\n  {\n    name: 'rural',\n    area: ['rural', 'kakuma', 'kwale', 'kinango', 'kitui', 'nyanza']\n  },\n  {\n    name: 'periurban',\n    area: ['kilifi', 'periurban']\n  },\n  {\n    name: 'other',\n    area: ['other']\n  }\n];\n\nconst accountTypes: Array = ['user', 'cashier', 'vendor', 'tokenagent', 'group'];\nconst transactionTypes: Array = ['transactions', 'conversions', 'disbursements', 'rewards', 'reclamation'];\nconst genders: Array = ['male', 'female', 'other'];\n\n@Injectable()\nexport class MockBackendInterceptor implements HttpInterceptor {\n  intercept(request: HttpRequest, next: HttpHandler): Observable> {\n    const { url, method, headers, body } = request;\n\n    // wrap in delayed observable to simulate server api call\\\n    // call materialize and dematerialize to ensure delay even is thrown\n    return of(null)\n      .pipe(mergeMap(handleRoute))\n      .pipe(materialize())\n      .pipe(delay(500))\n      .pipe(dematerialize());\n\n    function handleRoute(): Observable {\n      switch (true) {\n        case url.endsWith('/actions') && method === 'GET':\n          return getActions();\n        case url.match(/\\/actions\\/\\d+$/) && method === 'GET':\n          return getActionById();\n        case url.match(/\\/actions\\/\\d+$/) && method === 'POST':\n          return approveAction();\n        case url.endsWith('/tokens') && method === 'GET':\n          return getTokens();\n        case url.match(/\\/tokens\\/\\w+$/) && method === 'GET':\n          return getTokenBySymbol();\n        case url.endsWith('/categories') && method === 'GET':\n          return getCategories();\n        case url.match(/\\/categories\\/\\w+$/) && method === 'GET':\n          return getCategoryByProduct();\n        case url.endsWith('/areanames') && method === 'GET':\n          return getAreaNames();\n        case url.match(/\\/areanames\\/\\w+$/) && method === 'GET':\n          return getAreaNameByLocation();\n        case url.endsWith('/areatypes') && method === 'GET':\n          return getAreaTypes();\n        case url.match(/\\/areatypes\\/\\w+$/) && method === 'GET':\n          return getAreaTypeByArea();\n        case url.endsWith('/accounttypes') && method === 'GET':\n          return getAccountTypes();\n        case url.endsWith('/transactiontypes') && method === 'GET':\n          return getTransactionTypes();\n        case url.endsWith('/genders') && method === 'GET':\n          return getGenders();\n        default:\n          // pass through any requests not handled above\n          return next.handle(request);\n      }\n    }\n\n    // route functions\n\n    function getActions(): Observable> {\n      return ok(actions);\n    }\n\n    function getActionById(): Observable> {\n      const queriedAction: Action = actions.find(action => action.id === idFromUrl());\n      return ok(queriedAction);\n    }\n\n    function approveAction(): Observable> {\n      const queriedAction: Action = actions.find(action => action.id === idFromUrl());\n      queriedAction.approval = body.approval;\n      const message: string = `Action approval status set to ${body.approval} successfully!`;\n      return ok(message);\n    }\n\n    function getTokens(): Observable> {\n      return ok(tokens);\n    }\n\n    function getTokenBySymbol(): Observable> {\n      const queriedToken: Token = tokens.find(token => token.symbol === stringFromUrl());\n      return ok(queriedToken);\n    }\n\n    function getCategories(): Observable> {\n      const categoryList: Array = categories.map(category => category.name);\n      return ok(categoryList);\n    }\n\n    function getCategoryByProduct(): Observable> {\n      const queriedCategory: Category = categories.find(category => category.products.includes(stringFromUrl()));\n      return ok(queriedCategory.name);\n    }\n\n    function getAreaNames(): Observable> {\n      const areaNameList: Array = areaNames.map(areaName => areaName.name);\n      return ok(areaNameList);\n    }\n\n    function getAreaNameByLocation(): Observable> {\n      const queriedAreaName: AreaName = areaNames.find(areaName => areaName.locations.includes(stringFromUrl()));\n      return ok(queriedAreaName.name);\n    }\n\n    function getAreaTypes(): Observable> {\n      const areaTypeList: Array = areaTypes.map(areaType => areaType.name);\n      return ok(areaTypeList);\n    }\n\n    function getAreaTypeByArea(): Observable> {\n      const queriedAreaType: AreaType = areaTypes.find(areaType => areaType.area.includes(stringFromUrl()));\n      return ok(queriedAreaType.name);\n    }\n\n    function getAccountTypes(): Observable> {\n      return ok(accountTypes);\n    }\n\n    function getTransactionTypes(): Observable> {\n      return ok(transactionTypes);\n    }\n\n    function getGenders(): Observable> {\n      return ok(genders);\n    }\n\n    // helper functions\n\n    function ok(responseBody: any): Observable> {\n      return of(new HttpResponse({ status: 200, body: responseBody }));\n    }\n\n    function error(message): Observable {\n      return throwError({ status: 400, error: { message } });\n    }\n\n    function idFromUrl(): number {\n      const urlParts: Array = url.split('/');\n      return parseInt(urlParts[urlParts.length - 1], 10);\n    }\n\n    function stringFromUrl(): string {\n      const urlParts: Array = url.split('/');\n      return urlParts[urlParts.length - 1];\n    }\n  }\n}\n\nexport const MockBackendProvider = {\n  provide: HTTP_INTERCEPTORS,\n  useClass: MockBackendInterceptor,\n  multi: true\n};\n\n    \n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"interfaces/MutableKeyStore.html":{"url":"interfaces/MutableKeyStore.html","title":"interface - MutableKeyStore","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n\n  Interfaces\n  MutableKeyStore\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_pgp/pgp-key-store.ts\n        \n\n\n            \n                Extends\n            \n            \n                    KeyStore\n            \n\n        \n            Index\n            \n                \n                    \n                        \n                            Methods\n                        \n                    \n                    \n                        \n                            \n                                \n                                    clearKeysInKeyring\n                                \n                                \n                                    getEncryptKeys\n                                \n                                \n                                    getFingerprint\n                                \n                                \n                                    getKeyId\n                                \n                                \n                                    getKeysForId\n                                \n                                \n                                    getPrivateKey\n                                \n                                \n                                    getPrivateKeyForId\n                                \n                                \n                                    getPrivateKeyId\n                                \n                                \n                                    getPrivateKeys\n                                \n                                \n                                    getPublicKeyForId\n                                \n                                \n                                    getPublicKeyForSubkeyId\n                                \n                                \n                                    getPublicKeys\n                                \n                                \n                                    getPublicKeysForAddress\n                                \n                                \n                                    getTrustedActiveKeys\n                                \n                                \n                                    getTrustedKeys\n                                \n                                \n                                    importKeyPair\n                                \n                                \n                                    importPrivateKey\n                                \n                                \n                                    importPublicKey\n                                \n                                \n                                    isEncryptedPrivateKey\n                                \n                                \n                                    isValidKey\n                                \n                                \n                                    loadKeyring\n                                \n                                \n                                    removeKeysForId\n                                \n                                \n                                    removePublicKey\n                                \n                                \n                                    removePublicKeyForId\n                                \n                                \n                                    sign\n                                \n                            \n                        \n                    \n                \n            \n        \n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            clearKeysInKeyring\n                        \n                        \n                    \n                \n            \n            \n                \nclearKeysInKeyring()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:33\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getEncryptKeys\n                        \n                        \n                    \n                \n            \n            \n                \ngetEncryptKeys()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:17\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Array\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getFingerprint\n                        \n                        \n                    \n                \n            \n            \n                \ngetFingerprint()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:22\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         string\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getKeyId\n                        \n                        \n                    \n                \n            \n            \n                \ngetKeyId(key: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:23\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    key\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         string\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getKeysForId\n                        \n                        \n                    \n                \n            \n            \n                \ngetKeysForId(keyId: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:25\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    keyId\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Array\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getPrivateKey\n                        \n                        \n                    \n                \n            \n            \n                \ngetPrivateKey()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:19\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         any\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getPrivateKeyForId\n                        \n                        \n                    \n                \n            \n            \n                \ngetPrivateKeyForId(keyId: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:27\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    keyId\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         any\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getPrivateKeyId\n                        \n                        \n                    \n                \n            \n            \n                \ngetPrivateKeyId()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:24\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         string\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getPrivateKeys\n                        \n                        \n                    \n                \n            \n            \n                \ngetPrivateKeys()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:18\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Array\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getPublicKeyForId\n                        \n                        \n                    \n                \n            \n            \n                \ngetPublicKeyForId(keyId: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:26\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    keyId\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         any\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getPublicKeyForSubkeyId\n                        \n                        \n                    \n                \n            \n            \n                \ngetPublicKeyForSubkeyId(subkeyId: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:28\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    subkeyId\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         any\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getPublicKeys\n                        \n                        \n                    \n                \n            \n            \n                \ngetPublicKeys()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:14\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Array\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getPublicKeysForAddress\n                        \n                        \n                    \n                \n            \n            \n                \ngetPublicKeysForAddress(address: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:29\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    address\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Array\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getTrustedActiveKeys\n                        \n                        \n                    \n                \n            \n            \n                \ngetTrustedActiveKeys()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:16\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Array\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getTrustedKeys\n                        \n                        \n                    \n                \n            \n            \n                \ngetTrustedKeys()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:15\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Array\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            importKeyPair\n                        \n                        \n                    \n                \n            \n            \n                \nimportKeyPair(publicKey: any, privateKey: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:11\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    publicKey\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    privateKey\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            importPrivateKey\n                        \n                        \n                    \n                \n            \n            \n                \nimportPrivateKey(privateKey: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:13\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    privateKey\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            importPublicKey\n                        \n                        \n                    \n                \n            \n            \n                \nimportPublicKey(publicKey: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:12\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    publicKey\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            isEncryptedPrivateKey\n                        \n                        \n                    \n                \n            \n            \n                \nisEncryptedPrivateKey(privateKey: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:21\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    privateKey\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            isValidKey\n                        \n                        \n                    \n                \n            \n            \n                \nisValidKey(key: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:20\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    key\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            loadKeyring\n                        \n                        \n                    \n                \n            \n            \n                \nloadKeyring()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:10\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            removeKeysForId\n                        \n                        \n                    \n                \n            \n            \n                \nremoveKeysForId(keyId: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:30\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    keyId\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Array\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            removePublicKey\n                        \n                        \n                    \n                \n            \n            \n                \nremovePublicKey(publicKey: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:32\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    publicKey\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         any\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            removePublicKeyForId\n                        \n                        \n                    \n                \n            \n            \n                \nremovePublicKeyForId(keyId: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:31\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    keyId\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         any\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            sign\n                        \n                        \n                    \n                \n            \n            \n                \nsign(plainText: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:34\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    plainText\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n\n    \n\n\n    \n        import { KeyStore } from 'cic-client-meta';\n// TODO should we put this on the mutable key store object\nimport * as openpgp from 'openpgp';\nconst keyring = new openpgp.Keyring();\n\n/**\n * @extends\n */\ninterface MutableKeyStore extends KeyStore {\n  loadKeyring(): void;\n  importKeyPair(publicKey: any, privateKey: any): Promise;\n  importPublicKey(publicKey: any): void;\n  importPrivateKey(privateKey: any): Promise;\n  getPublicKeys(): Array;\n  getTrustedKeys(): Array;\n  getTrustedActiveKeys(): Array;\n  getEncryptKeys(): Array;\n  getPrivateKeys(): Array;\n  getPrivateKey(): any;\n  isValidKey(key: any): Promise;\n  isEncryptedPrivateKey(privateKey: any): Promise;\n  getFingerprint(): string;\n  getKeyId(key: any): string;\n  getPrivateKeyId(): string;\n  getKeysForId(keyId: string): Array;\n  getPublicKeyForId(keyId: string): any;\n  getPrivateKeyForId(keyId: string): any;\n  getPublicKeyForSubkeyId(subkeyId: string): any;\n  getPublicKeysForAddress(address: string): Array;\n  removeKeysForId(keyId: string): Array;\n  removePublicKeyForId(keyId: string): any;\n  removePublicKey(publicKey: any): any;\n  clearKeysInKeyring(): void;\n  sign(plainText: string): Promise;\n}\n\n/**\n * @implements\n */\nclass MutablePgpKeyStore implements MutableKeyStore{\n\n  async loadKeyring(): Promise {\n    await keyring.load();\n    await keyring.store();\n  }\n\n  async importKeyPair(publicKey: any, privateKey: any): Promise {\n    await keyring.publicKeys.importKey(publicKey);\n    await keyring.privateKeys.importKey(privateKey);\n  }\n\n  importPublicKey(publicKey: any): void {\n    keyring.publicKeys.importKey(publicKey);\n  }\n\n  async importPrivateKey(privateKey: any): Promise {\n    await keyring.privateKeys.importKey(privateKey);\n  }\n\n  getPublicKeys(): Array {\n    return keyring.publicKeys.keys;\n  }\n\n  getTrustedKeys(): Array {\n    return keyring.publicKeys.keys;\n  }\n\n  getTrustedActiveKeys(): Array {\n    return keyring.publicKeys.keys;\n  }\n\n  getEncryptKeys(): Array {\n    return [];\n  }\n\n  getPrivateKeys(): Array {\n    return keyring.privateKeys.keys;\n  }\n\n  getPrivateKey(): any {\n    return keyring.privateKeys && keyring.privateKeys.keys[0];\n  }\n\n  async isValidKey(key): Promise {\n    // There is supposed to be an openpgp.readKey() method but I can't find it?\n    const _key = await openpgp.key.readArmored(key);\n    return !_key.err;\n  }\n\n  async isEncryptedPrivateKey(privateKey: any): Promise {\n    const imported = await openpgp.key.readArmored(privateKey);\n    for (const key of imported.keys) {\n      if (key.isDecrypted()) {\n        return false;\n      }\n    }\n    return true;\n  }\n\n  getFingerprint(): string {\n    // TODO Handle multiple keys\n    return keyring.privateKeys && keyring.privateKeys.keys[0] && keyring.privateKeys.keys[0].keyPacket &&\n      keyring.privateKeys.keys[0].keyPacket.fingerprint;\n  }\n\n  getKeyId(key: any): string {\n    return key.getKeyId().toHex();\n  }\n\n  getPrivateKeyId(): string {\n    // TODO is there a library that comes with angular for doing this?\n    return keyring.privateKeys && keyring.privateKeys.keys[0] && keyring.privateKeys.keys[0].getKeyId().toHex();\n  }\n\n  getKeysForId(keyId: string): Array {\n    return keyring.getKeysForId(keyId);\n  }\n\n  getPublicKeyForId(keyId): any {\n    return keyring.publicKeys.getForId(keyId);\n  }\n\n  getPrivateKeyForId(keyId): any {\n    return keyring.privateKeys.getForId(keyId);\n  }\n\n  getPublicKeyForSubkeyId(subkeyId): any {\n    return keyring.publicKeys.getForId(subkeyId, true);\n  }\n\n  getPublicKeysForAddress(address): Array {\n    return keyring.publicKeys.getForAddress(address);\n  }\n\n  removeKeysForId(keyId): Array {\n    return keyring.removeKeysForId(keyId);\n  }\n\n  removePublicKeyForId(keyId): any {\n    return keyring.publicKeys.removeForId(keyId);\n  }\n\n  removePublicKey(publicKey: any): any {\n    const keyId =  publicKey.getKeyId().toHex();\n    return keyring.publicKeys.removeForId(keyId);\n  }\n\n  clearKeysInKeyring(): void {\n    keyring.clear();\n  }\n\n  async sign(plainText): Promise {\n    const privateKey = this.getPrivateKey();\n    if (!privateKey.isDecrypted()) {\n      const password = window.prompt('password');\n      await privateKey.decrypt(password);\n    }\n    const opts = {\n      message: openpgp.message.fromText(plainText),\n      privateKeys: [privateKey],\n      detached: true,\n    };\n    const signatureObject = await openpgp.sign(opts);\n    return signatureObject.signature;\n  }\n}\n\nexport {\n  MutablePgpKeyStore,\n  MutableKeyStore\n};\n\n    \n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"classes/MutablePgpKeyStore.html":{"url":"classes/MutablePgpKeyStore.html","title":"class - MutablePgpKeyStore","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n  Classes\n  MutablePgpKeyStore\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_pgp/pgp-key-store.ts\n        \n\n\n\n            \n                Implements\n            \n            \n                            MutableKeyStore\n            \n\n            \n                Example\n            \n            \n            \n\n            \n    Index\n    \n        \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                clearKeysInKeyring\n                            \n                            \n                                getEncryptKeys\n                            \n                            \n                                getFingerprint\n                            \n                            \n                                getKeyId\n                            \n                            \n                                getKeysForId\n                            \n                            \n                                getPrivateKey\n                            \n                            \n                                getPrivateKeyForId\n                            \n                            \n                                getPrivateKeyId\n                            \n                            \n                                getPrivateKeys\n                            \n                            \n                                getPublicKeyForId\n                            \n                            \n                                getPublicKeyForSubkeyId\n                            \n                            \n                                getPublicKeys\n                            \n                            \n                                getPublicKeysForAddress\n                            \n                            \n                                getTrustedActiveKeys\n                            \n                            \n                                getTrustedKeys\n                            \n                            \n                                    Async\n                                importKeyPair\n                            \n                            \n                                    Async\n                                importPrivateKey\n                            \n                            \n                                importPublicKey\n                            \n                            \n                                    Async\n                                isEncryptedPrivateKey\n                            \n                            \n                                    Async\n                                isValidKey\n                            \n                            \n                                    Async\n                                loadKeyring\n                            \n                            \n                                removeKeysForId\n                            \n                            \n                                removePublicKey\n                            \n                            \n                                removePublicKeyForId\n                            \n                            \n                                    Async\n                                sign\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            clearKeysInKeyring\n                        \n                        \n                    \n                \n            \n            \n                \nclearKeysInKeyring()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:148\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getEncryptKeys\n                        \n                        \n                    \n                \n            \n            \n                \ngetEncryptKeys()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:72\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Array\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getFingerprint\n                        \n                        \n                    \n                \n            \n            \n                \ngetFingerprint()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:100\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         string\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getKeyId\n                        \n                        \n                    \n                \n            \n            \n                \ngetKeyId(key: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:106\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    key\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         string\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getKeysForId\n                        \n                        \n                    \n                \n            \n            \n                \ngetKeysForId(keyId: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:115\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    keyId\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Array\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getPrivateKey\n                        \n                        \n                    \n                \n            \n            \n                \ngetPrivateKey()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:80\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         any\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getPrivateKeyForId\n                        \n                        \n                    \n                \n            \n            \n                \ngetPrivateKeyForId(keyId)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:123\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Optional\n                                \n                            \n                            \n                                \n                                    keyId\n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         any\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getPrivateKeyId\n                        \n                        \n                    \n                \n            \n            \n                \ngetPrivateKeyId()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:110\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         string\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getPrivateKeys\n                        \n                        \n                    \n                \n            \n            \n                \ngetPrivateKeys()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:76\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Array\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getPublicKeyForId\n                        \n                        \n                    \n                \n            \n            \n                \ngetPublicKeyForId(keyId)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:119\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Optional\n                                \n                            \n                            \n                                \n                                    keyId\n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         any\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getPublicKeyForSubkeyId\n                        \n                        \n                    \n                \n            \n            \n                \ngetPublicKeyForSubkeyId(subkeyId)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:127\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Optional\n                                \n                            \n                            \n                                \n                                    subkeyId\n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         any\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getPublicKeys\n                        \n                        \n                    \n                \n            \n            \n                \ngetPublicKeys()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:60\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Array\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getPublicKeysForAddress\n                        \n                        \n                    \n                \n            \n            \n                \ngetPublicKeysForAddress(address)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:131\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Optional\n                                \n                            \n                            \n                                \n                                    address\n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Array\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getTrustedActiveKeys\n                        \n                        \n                    \n                \n            \n            \n                \ngetTrustedActiveKeys()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:68\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Array\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getTrustedKeys\n                        \n                        \n                    \n                \n            \n            \n                \ngetTrustedKeys()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:64\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Array\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            importKeyPair\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    importKeyPair(publicKey: any, privateKey: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:47\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    publicKey\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    privateKey\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            importPrivateKey\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    importPrivateKey(privateKey: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:56\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    privateKey\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            importPublicKey\n                        \n                        \n                    \n                \n            \n            \n                \nimportPublicKey(publicKey: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:52\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    publicKey\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            isEncryptedPrivateKey\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    isEncryptedPrivateKey(privateKey: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:90\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    privateKey\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            isValidKey\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    isValidKey(key)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:84\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Optional\n                                \n                            \n                            \n                                \n                                    key\n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            loadKeyring\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    loadKeyring()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:42\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Promise\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            removeKeysForId\n                        \n                        \n                    \n                \n            \n            \n                \nremoveKeysForId(keyId)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:135\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Optional\n                                \n                            \n                            \n                                \n                                    keyId\n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Array\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            removePublicKey\n                        \n                        \n                    \n                \n            \n            \n                \nremovePublicKey(publicKey: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:143\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    publicKey\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         any\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            removePublicKeyForId\n                        \n                        \n                    \n                \n            \n            \n                \nremovePublicKeyForId(keyId)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:139\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Optional\n                                \n                            \n                            \n                                \n                                    keyId\n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         any\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            sign\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    sign(plainText)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:152\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Optional\n                                \n                            \n                            \n                                \n                                    plainText\n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n\n\n\n\n\n    \n\n\n    \n        import { KeyStore } from 'cic-client-meta';\n// TODO should we put this on the mutable key store object\nimport * as openpgp from 'openpgp';\nconst keyring = new openpgp.Keyring();\n\n/**\n * @extends\n */\ninterface MutableKeyStore extends KeyStore {\n  loadKeyring(): void;\n  importKeyPair(publicKey: any, privateKey: any): Promise;\n  importPublicKey(publicKey: any): void;\n  importPrivateKey(privateKey: any): Promise;\n  getPublicKeys(): Array;\n  getTrustedKeys(): Array;\n  getTrustedActiveKeys(): Array;\n  getEncryptKeys(): Array;\n  getPrivateKeys(): Array;\n  getPrivateKey(): any;\n  isValidKey(key: any): Promise;\n  isEncryptedPrivateKey(privateKey: any): Promise;\n  getFingerprint(): string;\n  getKeyId(key: any): string;\n  getPrivateKeyId(): string;\n  getKeysForId(keyId: string): Array;\n  getPublicKeyForId(keyId: string): any;\n  getPrivateKeyForId(keyId: string): any;\n  getPublicKeyForSubkeyId(subkeyId: string): any;\n  getPublicKeysForAddress(address: string): Array;\n  removeKeysForId(keyId: string): Array;\n  removePublicKeyForId(keyId: string): any;\n  removePublicKey(publicKey: any): any;\n  clearKeysInKeyring(): void;\n  sign(plainText: string): Promise;\n}\n\n/**\n * @implements\n */\nclass MutablePgpKeyStore implements MutableKeyStore{\n\n  async loadKeyring(): Promise {\n    await keyring.load();\n    await keyring.store();\n  }\n\n  async importKeyPair(publicKey: any, privateKey: any): Promise {\n    await keyring.publicKeys.importKey(publicKey);\n    await keyring.privateKeys.importKey(privateKey);\n  }\n\n  importPublicKey(publicKey: any): void {\n    keyring.publicKeys.importKey(publicKey);\n  }\n\n  async importPrivateKey(privateKey: any): Promise {\n    await keyring.privateKeys.importKey(privateKey);\n  }\n\n  getPublicKeys(): Array {\n    return keyring.publicKeys.keys;\n  }\n\n  getTrustedKeys(): Array {\n    return keyring.publicKeys.keys;\n  }\n\n  getTrustedActiveKeys(): Array {\n    return keyring.publicKeys.keys;\n  }\n\n  getEncryptKeys(): Array {\n    return [];\n  }\n\n  getPrivateKeys(): Array {\n    return keyring.privateKeys.keys;\n  }\n\n  getPrivateKey(): any {\n    return keyring.privateKeys && keyring.privateKeys.keys[0];\n  }\n\n  async isValidKey(key): Promise {\n    // There is supposed to be an openpgp.readKey() method but I can't find it?\n    const _key = await openpgp.key.readArmored(key);\n    return !_key.err;\n  }\n\n  async isEncryptedPrivateKey(privateKey: any): Promise {\n    const imported = await openpgp.key.readArmored(privateKey);\n    for (const key of imported.keys) {\n      if (key.isDecrypted()) {\n        return false;\n      }\n    }\n    return true;\n  }\n\n  getFingerprint(): string {\n    // TODO Handle multiple keys\n    return keyring.privateKeys && keyring.privateKeys.keys[0] && keyring.privateKeys.keys[0].keyPacket &&\n      keyring.privateKeys.keys[0].keyPacket.fingerprint;\n  }\n\n  getKeyId(key: any): string {\n    return key.getKeyId().toHex();\n  }\n\n  getPrivateKeyId(): string {\n    // TODO is there a library that comes with angular for doing this?\n    return keyring.privateKeys && keyring.privateKeys.keys[0] && keyring.privateKeys.keys[0].getKeyId().toHex();\n  }\n\n  getKeysForId(keyId: string): Array {\n    return keyring.getKeysForId(keyId);\n  }\n\n  getPublicKeyForId(keyId): any {\n    return keyring.publicKeys.getForId(keyId);\n  }\n\n  getPrivateKeyForId(keyId): any {\n    return keyring.privateKeys.getForId(keyId);\n  }\n\n  getPublicKeyForSubkeyId(subkeyId): any {\n    return keyring.publicKeys.getForId(subkeyId, true);\n  }\n\n  getPublicKeysForAddress(address): Array {\n    return keyring.publicKeys.getForAddress(address);\n  }\n\n  removeKeysForId(keyId): Array {\n    return keyring.removeKeysForId(keyId);\n  }\n\n  removePublicKeyForId(keyId): any {\n    return keyring.publicKeys.removeForId(keyId);\n  }\n\n  removePublicKey(publicKey: any): any {\n    const keyId =  publicKey.getKeyId().toHex();\n    return keyring.publicKeys.removeForId(keyId);\n  }\n\n  clearKeysInKeyring(): void {\n    keyring.clear();\n  }\n\n  async sign(plainText): Promise {\n    const privateKey = this.getPrivateKey();\n    if (!privateKey.isDecrypted()) {\n      const password = window.prompt('password');\n      await privateKey.decrypt(password);\n    }\n    const opts = {\n      message: openpgp.message.fromText(plainText),\n      privateKeys: [privateKey],\n      detached: true,\n    };\n    const signatureObject = await openpgp.sign(opts);\n    return signatureObject.signature;\n  }\n}\n\nexport {\n  MutablePgpKeyStore,\n  MutableKeyStore\n};\n\n    \n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"components/OrganizationComponent.html":{"url":"components/OrganizationComponent.html","title":"component - OrganizationComponent","body":"\n                   \n\n\n\n\n\n  Components\n  OrganizationComponent\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n        \n            Template\n        \n        \n            Styles\n        \n        \n            DOM Tree\n        \n\n\n\n    \n    File\n\n\n    src/app/pages/settings/organization/organization.component.ts\n\n\n\n\n    \n        Implements\n    \n    \n                    OnInit\n    \n\n\n\n    Metadata\n    \n        \n\n            \n                changeDetection\n                ChangeDetectionStrategy.OnPush\n            \n\n\n\n\n\n\n\n\n\n\n            \n                selector\n                app-organization\n            \n\n            \n                styleUrls\n                ./organization.component.scss\n            \n\n\n\n            \n                templateUrl\n                ./organization.component.html\n            \n\n\n\n\n\n\n\n\n        \n    \n\n\n    \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                matcher\n                            \n                            \n                                organizationForm\n                            \n                            \n                                submitted\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                ngOnInit\n                            \n                            \n                                onSubmit\n                            \n                        \n                    \n                \n\n\n\n\n\n                    \n                        \n                            Accessors\n                        \n                    \n                    \n                        \n                            \n                                \n                                    organizationFormStub\n                                \n                            \n                        \n                    \n        \n    \n\n\n    \n    Constructor\n        \n            \n                \n                    \nconstructor(formBuilder: FormBuilder)\n                    \n                \n                        \n                            \n                                Defined in src/app/pages/settings/organization/organization.component.ts:14\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        formBuilder\n                                                  \n                                                        \n                                                                        FormBuilder\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n\n\n\n\n    \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            ngOnInit\n                        \n                        \n                    \n                \n            \n            \n                \nngOnInit()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/settings/organization/organization.component.ts:20\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            onSubmit\n                        \n                        \n                    \n                \n            \n            \n                \nonSubmit()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/settings/organization/organization.component.ts:30\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n\n    \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            matcher\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         CustomErrorStateMatcher\n\n                        \n                    \n                    \n                        \n                            Default value : new CustomErrorStateMatcher()\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/settings/organization/organization.component.ts:14\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            organizationForm\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         FormGroup\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/settings/organization/organization.component.ts:12\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            submitted\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         boolean\n\n                        \n                    \n                    \n                        \n                            Default value : false\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/settings/organization/organization.component.ts:13\n                            \n                        \n\n\n            \n        \n\n\n    \n    \n        Accessors\n    \n        \n            \n                \n                    \n                        \n                        organizationFormStub\n                    \n                \n\n                \n                    \n                        getorganizationFormStub()\n                    \n                \n                            \n                                \n                                    Defined in src/app/pages/settings/organization/organization.component.ts:28\n                                \n                            \n\n            \n        \n\n\n\n\n    \n        import {ChangeDetectionStrategy, Component, OnInit} from '@angular/core';\nimport {FormBuilder, FormGroup, Validators} from '@angular/forms';\nimport {CustomErrorStateMatcher} from '@app/_helpers';\n\n@Component({\n  selector: 'app-organization',\n  templateUrl: './organization.component.html',\n  styleUrls: ['./organization.component.scss'],\n  changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class OrganizationComponent implements OnInit {\n  organizationForm: FormGroup;\n  submitted: boolean = false;\n  matcher: CustomErrorStateMatcher = new CustomErrorStateMatcher();\n\n  constructor(\n    private formBuilder: FormBuilder\n  ) { }\n\n  ngOnInit(): void {\n    this.organizationForm = this.formBuilder.group({\n      disbursement: ['', Validators.required],\n      transfer: '',\n      countryCode: ['', Validators.required]\n    });\n  }\n\n  get organizationFormStub(): any { return this.organizationForm.controls; }\n\n  onSubmit(): void {\n    this.submitted = true;\n    if (this.organizationForm.invalid || !confirm('Set organization information?')) { return; }\n    this.submitted = false;\n  }\n}\n\n    \n\n    \n        \n\n  \n\n  \n  \n  \n\n  \n    \n    \n    \n      \n        \n          Home\n          Settings\n          Organization Settings\n        \n      \n      \n        \n          \n            DEFAULT ORGANISATION SETTINGS\n          \n          \n            \n              \n                Default Disbursement *\n                \n                RCU\n                \n                  Default Disbursement is required.\n                \n              \n              \n                Require Transfer Card *\n              \n              \n                Default Country Code *\n                \n                  KE Kenya\n                  US United States\n                  ETH Ethiopia\n                  GER Germany\n                  UG Uganda\n                \n                \n                  Country Code is required.\n                \n              \n              Submit\n            \n          \n        \n      \n    \n    \n  \n  \n  \n  \n\n\n    \n\n    \n                \n                    ./organization.component.scss\n                \n                \n    \n\n    \n        \n        \n            \n                Legend\n            \n            \n                Html element\n            \n            \n                Component\n            \n            \n                Html element with directive\n            \n        \n    \n\n    \n\n\n\n\n\n\n        var COMPONENT_TEMPLATE = '                                              Home          Settings          Organization Settings                                                  DEFAULT ORGANISATION SETTINGS                                                              Default Disbursement *                                RCU                                  Default Disbursement is required.                                                            Require Transfer Card *                                            Default Country Code *                                  KE Kenya                  US United States                  ETH Ethiopia                  GER Germany                  UG Uganda                                                  Country Code is required.                                            Submit                                                    '\n    var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n    var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[routerLink]'}];\n    var ACTUAL_COMPONENT = {'name': 'OrganizationComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"classes/PGPSigner.html":{"url":"classes/PGPSigner.html","title":"class - PGPSigner","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n  Classes\n  PGPSigner\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_pgp/pgp-signer.ts\n        \n\n\n\n            \n                Implements\n            \n            \n                            Signer\n            \n\n\n            \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                algo\n                            \n                            \n                                dgst\n                            \n                            \n                                engine\n                            \n                            \n                                keyStore\n                            \n                            \n                                loggingService\n                            \n                            \n                                onsign\n                            \n                            \n                                onverify\n                            \n                            \n                                signature\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                    Public\n                                fingerprint\n                            \n                            \n                                    Public\n                                prepare\n                            \n                            \n                                    Public\n                                    Async\n                                sign\n                            \n                            \n                                    Public\n                                verify\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n            \n    Constructor\n        \n            \n                \n                    \nconstructor(keyStore: MutableKeyStore)\n                    \n                \n                        \n                            \n                                Defined in src/app/_pgp/pgp-signer.ts:35\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        keyStore\n                                                  \n                                                        \n                                                                        MutableKeyStore\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n            \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            algo\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                    \n                        \n                            Default value : 'sha256'\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_pgp/pgp-signer.ts:29\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            dgst\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_pgp/pgp-signer.ts:30\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            engine\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                    \n                        \n                            Default value : 'pgp'\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_pgp/pgp-signer.ts:28\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            keyStore\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         MutableKeyStore\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_pgp/pgp-signer.ts:32\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            loggingService\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         LoggingService\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_pgp/pgp-signer.ts:35\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            onsign\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         function\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_pgp/pgp-signer.ts:33\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            onverify\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         function\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_pgp/pgp-signer.ts:34\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            signature\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         Signature\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_pgp/pgp-signer.ts:31\n                            \n                        \n\n\n            \n        \n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Public\n                            fingerprint\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    fingerprint()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-signer.ts:43\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         string\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Public\n                            prepare\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    prepare(material: Signable)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-signer.ts:47\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    material\n                                    \n                                                Signable\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         boolean\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Public\n                            Async\n                            sign\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    sign(digest: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-signer.ts:77\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    digest\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Public\n                            verify\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    verify(digest: string, signature: Signature)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-signer.ts:52\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    digest\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    signature\n                                    \n                                                Signature\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n\n\n\n\n\n    \n\n\n    \n        import {MutableKeyStore} from '@app/_pgp/pgp-key-store';\nimport {LoggingService} from '@app/_services/logging.service';\n\nconst openpgp = require('openpgp');\n\ninterface Signable {\n  digest(): string;\n}\n\ntype Signature = {\n  engine: string\n  algo: string\n  data: string\n  digest: string;\n};\n\ninterface Signer {\n  onsign(signature: Signature): void;\n  onverify(flag: boolean): void;\n  fingerprint(): string;\n  prepare(material: Signable): boolean;\n  verify(digest: string, signature: Signature): void;\n  sign(digest: string): Promise;\n}\n\nclass PGPSigner implements Signer {\n\n  engine = 'pgp';\n  algo = 'sha256';\n  dgst: string;\n  signature: Signature;\n  keyStore: MutableKeyStore;\n  onsign: (signature: Signature) => void;\n  onverify: (flag: boolean) => void;\n  loggingService: LoggingService;\n\n  constructor(keyStore: MutableKeyStore) {\n    this.keyStore = keyStore;\n    this.onsign = (signature: Signature) => {};\n    this.onverify = (flag: boolean) => {};\n  }\n\n  public fingerprint(): string {\n    return this.keyStore.getFingerprint();\n  }\n\n  public prepare(material: Signable): boolean {\n    this.dgst = material.digest();\n    return true;\n  }\n\n  public verify(digest: string, signature: Signature): void {\n    openpgp.signature.readArmored(signature.data).then((sig) => {\n      const opts = {\n        message: openpgp.cleartext.fromText(digest),\n        publicKeys: this.keyStore.getTrustedKeys(),\n        signature: sig,\n      };\n      openpgp.verify(opts).then((v) => {\n        let i = 0;\n        for (i = 0; i  {\n      this.loggingService.sendErrorLevelMessage(e.message, this, {error: e});\n      this.onverify(false);\n    });\n  }\n\n  public async sign(digest: string): Promise {\n    const m = openpgp.cleartext.fromText(digest);\n    const pk = this.keyStore.getPrivateKey();\n    if (!pk.isDecrypted()) {\n      const password = window.prompt('password');\n      await pk.decrypt(password);\n    }\n    const opts = {\n      message: m,\n      privateKeys: [pk],\n      detached: true,\n    };\n    openpgp.sign(opts).then((s) => {\n      this.signature = {\n        engine: this.engine,\n        algo: this.algo,\n        data: s.signature,\n        // TODO: fix for browser later\n        digest,\n      };\n      this.onsign(this.signature);\n    }).catch((e) => {\n      this.loggingService.sendErrorLevelMessage(e.message, this, {error: e});\n      this.onsign(undefined);\n    });\n  }\n}\n\nexport {\n  Signable,\n  Signature,\n  Signer,\n  PGPSigner\n};\n\n    \n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"components/PagesComponent.html":{"url":"components/PagesComponent.html","title":"component - PagesComponent","body":"\n                   \n\n\n\n\n\n  Components\n  PagesComponent\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n        \n            Template\n        \n        \n            Styles\n        \n        \n            DOM Tree\n        \n\n\n\n    \n    File\n\n\n    src/app/pages/pages.component.ts\n\n\n\n\n\n\n\n    Metadata\n    \n        \n\n            \n                changeDetection\n                ChangeDetectionStrategy.OnPush\n            \n\n\n\n\n\n\n\n\n\n\n            \n                selector\n                app-pages\n            \n\n            \n                styleUrls\n                ./pages.component.scss\n            \n\n\n\n            \n                templateUrl\n                ./pages.component.html\n            \n\n\n\n\n\n\n\n\n        \n    \n\n\n    \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                url\n                            \n                        \n                    \n                \n\n\n\n\n\n\n        \n    \n\n\n    \n    Constructor\n        \n            \n                \n                    \nconstructor()\n                    \n                \n                        \n                            \n                                Defined in src/app/pages/pages.component.ts:10\n                            \n                        \n\n            \n        \n\n\n\n\n\n\n\n    \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            url\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                    \n                        \n                            Default value : 'https://dashboard.sarafu.network/'\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/pages.component.ts:10\n                            \n                        \n\n\n            \n        \n\n\n\n\n\n    \n        import {ChangeDetectionStrategy, Component} from '@angular/core';\n\n@Component({\n  selector: 'app-pages',\n  templateUrl: './pages.component.html',\n  styleUrls: ['./pages.component.scss'],\n  changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class PagesComponent {\n  url: string = 'https://dashboard.sarafu.network/';\n\n  constructor() { }\n}\n\n    \n\n    \n        \n\n  \n\n  \n  \n  \n\n  \n    \n    \n    \n      \n        \n          Home\n        \n      \n      \n        \n          \n             Your browser does not support iframes. \n          \n        \n      \n    \n    \n  \n  \n  \n  \n\n\n    \n\n    \n                \n                    ./pages.component.scss\n                \n                \n    \n\n    \n        \n        \n            \n                Legend\n            \n            \n                Html element\n            \n            \n                Component\n            \n            \n                Html element with directive\n            \n        \n    \n\n    \n\n\n\n\n\n\n        var COMPONENT_TEMPLATE = '                                              Home                                                   Your browser does not support iframes.                                         '\n    var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n    var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[routerLink]'}];\n    var ACTUAL_COMPONENT = {'name': 'PagesComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"modules/PagesModule.html":{"url":"modules/PagesModule.html","title":"module - PagesModule","body":"\n                   \n\n\n\n\n    Modules\n    PagesModule\n\n\n\n    \n        \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_PagesModule\n\n\n\ncluster_PagesModule_declarations\n\n\n\ncluster_PagesModule_imports\n\n\n\n\nPagesComponent\n\nPagesComponent\n\n\n\nPagesModule\n\nPagesModule\n\nPagesModule -->\n\nPagesComponent->PagesModule\n\n\n\n\n\nPagesRoutingModule\n\nPagesRoutingModule\n\nPagesModule -->\n\nPagesRoutingModule->PagesModule\n\n\n\n\n\nSharedModule\n\nSharedModule\n\nPagesModule -->\n\nSharedModule->PagesModule\n\n\n\n\n\n\n    \n    \n    \n        Zoom in\n        Reset\n        Zoom out\n    \n\n\n\n\n\n    \n        Info\n    \n    \n        Source\n    \n\n\n\n    \n\n        \n            File\n        \n        \n            src/app/pages/pages.module.ts\n        \n\n\n\n\n        \n            \n                \n                    Declarations\n                    \n                        \n                            PagesComponent\n                        \n                    \n                \n                \n                    Imports\n                    \n                        \n                            PagesRoutingModule\n                        \n                        \n                            SharedModule\n                        \n                    \n                \n            \n        \n\n\n    \n\n\n    \n        import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { PagesRoutingModule } from '@pages/pages-routing.module';\nimport { PagesComponent } from '@pages/pages.component';\nimport {SharedModule} from '@app/shared/shared.module';\nimport {ChartsModule} from 'ng2-charts';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatCardModule} from '@angular/material/card';\n\n\n@NgModule({\n  declarations: [PagesComponent],\n    imports: [\n        CommonModule,\n        PagesRoutingModule,\n        SharedModule,\n        ChartsModule,\n        MatButtonModule,\n        MatFormFieldModule,\n        MatSelectModule,\n        MatInputModule,\n        MatCardModule\n    ]\n})\nexport class PagesModule { }\n\n    \n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"modules/PagesRoutingModule.html":{"url":"modules/PagesRoutingModule.html","title":"module - PagesRoutingModule","body":"\n                   \n\n\n\n\n    Modules\n    PagesRoutingModule\n\n\n\n\n    \n        Info\n    \n    \n        Source\n    \n\n\n\n    \n\n        \n            File\n        \n        \n            src/app/pages/pages-routing.module.ts\n        \n\n\n\n\n        \n            \n            \n        \n\n\n    \n\n\n    \n        import { NgModule } from '@angular/core';\nimport { Routes, RouterModule } from '@angular/router';\n\nimport { PagesComponent } from './pages.component';\n\nconst routes: Routes = [\n  { path: 'home', component: PagesComponent },\n  { path: 'tx', loadChildren: () => \"import('@pages/transactions/transactions.module').then(m => m.TransactionsModule)\" },\n  { path: 'settings', loadChildren: () => \"import('@pages/settings/settings.module').then(m => m.SettingsModule)\" },\n  { path: 'accounts', loadChildren: () => \"import('@pages/accounts/accounts.module').then(m => m.AccountsModule)\" },\n  { path: 'tokens', loadChildren: () => \"import('@pages/tokens/tokens.module').then(m => m.TokensModule)\" },\n  { path: 'admin', loadChildren: () => \"import('@pages/admin/admin.module').then(m => m.AdminModule)\" },\n  { path: '**', redirectTo: 'home', pathMatch: 'full'}\n];\n\n@NgModule({\n  imports: [RouterModule.forChild(routes)],\n  exports: [RouterModule]\n})\nexport class PagesRoutingModule { }\n\n    \n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"directives/PasswordToggleDirective.html":{"url":"directives/PasswordToggleDirective.html","title":"directive - PasswordToggleDirective","body":"\n                   \n\n\n\n\n\n\n\n  Directives\n  PasswordToggleDirective\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/auth/_directives/password-toggle.directive.ts\n        \n\n\n\n\n        \n            Metadata\n            \n                \n\n                    \n                        Selector\n                        [appPasswordToggle]\n                    \n\n                \n            \n        \n\n            \n    Index\n    \n        \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                togglePasswordVisibility\n                            \n                        \n                    \n                \n\n                \n                    \n                        Inputs\n                    \n                \n                \n                    \n                        \n                            \n                                iconId\n                            \n                            \n                                id\n                            \n                        \n                    \n                \n\n\n\n\n        \n    \n\n\n            \n    Constructor\n        \n            \n                \n                    \nconstructor(elementRef: ElementRef, renderer: Renderer2)\n                    \n                \n                        \n                            \n                                Defined in src/app/auth/_directives/password-toggle.directive.ts:11\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        elementRef\n                                                  \n                                                        \n                                                                        ElementRef\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        renderer\n                                                  \n                                                        \n                                                                        Renderer2\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n            \n    Inputs\n        \n            \n                \n                    \n                        \n                        iconId\n                    \n                \n                \n                    \n                        Type :         string\n\n                    \n                \n                        \n                            \n                                    Defined in src/app/auth/_directives/password-toggle.directive.ts:11\n                            \n                        \n            \n        \n        \n            \n                \n                    \n                        \n                        id\n                    \n                \n                \n                    \n                        Type :         string\n\n                    \n                \n                        \n                            \n                                    Defined in src/app/auth/_directives/password-toggle.directive.ts:8\n                            \n                        \n            \n        \n\n\n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            togglePasswordVisibility\n                        \n                        \n                    \n                \n            \n            \n                \ntogglePasswordVisibility()\n                \n            \n\n\n            \n                \n                    Defined in src/app/auth/_directives/password-toggle.directive.ts:22\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n\n\n\n    \n\n\n    \n        import {Directive, ElementRef, Input, Renderer2} from '@angular/core';\n\n@Directive({\n  selector: '[appPasswordToggle]'\n})\nexport class PasswordToggleDirective {\n  @Input()\n  id: string;\n\n  @Input()\n  iconId: string;\n\n  constructor(\n    private elementRef: ElementRef,\n    private renderer: Renderer2,\n  ) {\n    this.renderer.listen(this.elementRef.nativeElement, 'click', () => {\n      this.togglePasswordVisibility();\n    });\n  }\n\n  togglePasswordVisibility(): void {\n    const password: HTMLElement = document.getElementById(this.id);\n    const icon: HTMLElement = document.getElementById(this.iconId);\n    // @ts-ignore\n    if (password.type === 'password') {\n      // @ts-ignore\n      password.type = 'text';\n      icon.classList.remove('fa-eye');\n      icon.classList.add('fa-eye-slash');\n    } else {\n      // @ts-ignore\n      password.type = 'password';\n      icon.classList.remove('fa-eye-slash');\n      icon.classList.add('fa-eye');\n    }\n  }\n}\n\n    \n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"injectables/RegistryService.html":{"url":"injectables/RegistryService.html","title":"injectable - RegistryService","body":"\n                   \n\n\n\n\n\n\n\n\n  Injectables\n  RegistryService\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_services/registry.service.ts\n        \n\n\n\n\n            \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                fileGetter\n                            \n                            \n                                registry\n                            \n                            \n                                web3\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                getRegistry\n                            \n                            \n                                getWeb3\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n            \n    Constructor\n        \n            \n                \n                    \nconstructor()\n                    \n                \n                        \n                            \n                                Defined in src/app/_services/registry.service.ts:14\n                            \n                        \n\n            \n        \n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getRegistry\n                        \n                        \n                    \n                \n            \n            \n                \ngetRegistry()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/registry.service.ts:21\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         any\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getWeb3\n                        \n                        \n                    \n                \n            \n            \n                \ngetWeb3()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/registry.service.ts:25\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         any\n\n                    \n                \n            \n        \n    \n\n            \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            fileGetter\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     FileGetter\n\n                        \n                    \n                    \n                        \n                            Default value : new HttpGetter()\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_services/registry.service.ts:12\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            registry\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     CICRegistry\n\n                        \n                    \n                    \n                        \n                            Default value : new CICRegistry(this.web3, environment.registryAddress, 'CICRegistry', this.fileGetter,\n    ['../../assets/js/block-sync/data'])\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_services/registry.service.ts:13\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            web3\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     Web3\n\n                        \n                    \n                    \n                        \n                            Default value : new Web3(environment.web3Provider)\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_services/registry.service.ts:11\n                            \n                        \n\n\n            \n        \n\n\n    \n\n\n    \n        import { Injectable } from '@angular/core';\nimport Web3 from 'web3';\nimport {environment} from '@src/environments/environment';\nimport {CICRegistry, FileGetter} from 'cic-client';\nimport {HttpGetter} from '@app/_helpers';\n\n@Injectable({\n  providedIn: 'root'\n})\nexport class RegistryService {\n  web3: Web3 = new Web3(environment.web3Provider);\n  fileGetter: FileGetter = new HttpGetter();\n  registry: CICRegistry = new CICRegistry(this.web3, environment.registryAddress, 'CICRegistry', this.fileGetter,\n    ['../../assets/js/block-sync/data']);\n\n  constructor() {\n    this.registry.declaratorHelper.addTrust(environment.trustedDeclaratorAddress);\n    this.registry.load();\n  }\n\n  getRegistry(): any {\n    return this.registry;\n  }\n\n  getWeb3(): any {\n    return this.web3;\n  }\n}\n\n    \n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"guards/RoleGuard.html":{"url":"guards/RoleGuard.html","title":"guard - RoleGuard","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n    Guards\n    RoleGuard\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n        \n            \n            File\n            \n            \n                src/app/_guards/role.guard.ts\n            \n\n                \n                Description\n                \n                \n                    Role guard implementation.\nDictates access to routes depending on the user's role.\n\n                \n\n\n\n                \n                Example\n                \n                \n                \n\n                \n    Index\n    \n        \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                canActivate\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n                \n    Constructor\n        \n            \n                \n                    \nconstructor(router: Router)\n                    \n                \n                        \n                            \n                                Defined in src/app/_guards/role.guard.ts:17\n                            \n                        \n\n                \n                    \n                            Instantiates the role guard class.\n\n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                                    Description\n                                            \n                                        \n                                        \n                                                \n                                                        router\n                                                  \n                                                        \n                                                                        Router\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                        \n                                                                \nA service that provides navigation among views and URL manipulation capabilities.\n\n\n                                                        \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n                \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            canActivate\n                        \n                        \n                    \n                \n            \n            \n                \ncanActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_guards/role.guard.ts:35\n                \n            \n\n\n            \n                \n                    Returns whether navigation to a specific route is acceptable.\nChecks if the user has the required role to access the route.\n\n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                    Description\n                                \n                            \n                            \n                                \n                                    route\n                                    \n                                                ActivatedRouteSnapshot\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                    \n                                        \nContains the information about a route associated with a component loaded in an outlet at a particular moment in time.\nActivatedRouteSnapshot can also be used to traverse the router state tree.\n\n\n                                    \n                                \n                                \n                                    state\n                                    \n                                                RouterStateSnapshot\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                    \n                                        \nRepresents the state of the router at a moment in time.\n\n\n                                    \n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Observable | Promise | boolean | UrlTree\n\n                    \n                    \n                        true - If the user's role matches with accepted roles.\n\n                    \n                \n            \n        \n    \n\n        \n\n\n        \n            import { Injectable } from '@angular/core';\nimport {ActivatedRouteSnapshot, CanActivate, Router, RouterStateSnapshot, UrlTree} from '@angular/router';\n\n// Third party imports\nimport { Observable } from 'rxjs';\n\n/**\n * Role guard implementation.\n * Dictates access to routes depending on the user's role.\n *\n * @implements CanActivate\n */\n@Injectable({\n  providedIn: 'root'\n})\nexport class RoleGuard implements CanActivate {\n\n  /**\n   * Instantiates the role guard class.\n   *\n   * @param router - A service that provides navigation among views and URL manipulation capabilities.\n   */\n  constructor(private router: Router) {}\n\n  /**\n   * Returns whether navigation to a specific route is acceptable.\n   * Checks if the user has the required role to access the route.\n   *\n   * @param route - Contains the information about a route associated with a component loaded in an outlet at a particular moment in time.\n   * ActivatedRouteSnapshot can also be used to traverse the router state tree.\n   * @param state - Represents the state of the router at a moment in time.\n   * @returns true - If the user's role matches with accepted roles.\n   */\n  canActivate(\n    route: ActivatedRouteSnapshot,\n    state: RouterStateSnapshot): Observable | Promise | boolean | UrlTree {\n    const currentUser = JSON.parse(localStorage.getItem(atob('CICADA_USER')));\n    if (currentUser) {\n      if (route.data.roles && route.data.roles.indexOf(currentUser.role) === -1) {\n        this.router.navigate(['/']);\n        return false;\n      }\n      return true;\n    }\n\n    this.router.navigate(['/auth'], { queryParams: { returnUrl: state.url }});\n    return false;\n  }\n\n}\n\n        \n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"directives/RouterLinkDirectiveStub.html":{"url":"directives/RouterLinkDirectiveStub.html","title":"directive - RouterLinkDirectiveStub","body":"\n                   \n\n\n\n\n\n\n\n  Directives\n  RouterLinkDirectiveStub\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/testing/router-link-directive-stub.ts\n        \n\n\n\n\n        \n            Metadata\n            \n                \n\n                    \n                        Selector\n                        [routerLink]\n                    \n\n                \n            \n        \n\n            \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                navigatedTo\n                            \n                        \n                    \n                \n\n\n                \n                    \n                        Inputs\n                    \n                \n                \n                    \n                        \n                            \n                                routerLink\n                            \n                        \n                    \n                \n\n\n\n                \n                    \n                        HostListeners\n                    \n                \n                \n                    \n                        \n                            \n                                click\n                            \n                        \n                    \n                \n\n        \n    \n\n\n\n            \n    Inputs\n        \n            \n                \n                    \n                        \n                        routerLink\n                    \n                \n                \n                    \n                        Type :         any\n\n                    \n                \n                        \n                            \n                                    Defined in src/testing/router-link-directive-stub.ts:7\n                            \n                        \n            \n        \n\n\n\n            \n    HostListeners    \n        \n            \n                \n                    \n                    \n                        \n                            click\n                        \n                        \n                    \n                \n            \n            \n                \nclick()\n                \n            \n\n\n            \n                \n                    Defined in src/testing/router-link-directive-stub.ts:11\n                \n            \n\n\n        \n    \n\n\n            \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            navigatedTo\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         any\n\n                        \n                    \n                    \n                        \n                            Default value : null\n                        \n                    \n                        \n                            \n                                    Defined in src/testing/router-link-directive-stub.ts:8\n                            \n                        \n\n\n            \n        \n\n\n\n    \n\n\n    \n        import {Directive, HostListener, Input} from '@angular/core';\n\n@Directive({\n  selector: '[routerLink]'\n})\nexport class RouterLinkDirectiveStub {\n  @Input('routerLink') linkParams: any;\n  navigatedTo: any = null;\n\n  @HostListener('click')\n  onClick(): void {\n    this.navigatedTo = this.linkParams;\n  }\n}\n\n    \n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"pipes/SafePipe.html":{"url":"pipes/SafePipe.html","title":"pipe - SafePipe","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n  Pipes\n  SafePipe\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n\n        \n            File\n        \n        \n            src/app/shared/_pipes/safe.pipe.ts\n        \n\n\n\n        \n            Metadata\n            \n                \n                    \n                        Name\n                        safe\n                    \n                \n            \n        \n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            transform\n                        \n                        \n                    \n                \n            \n            \n                \ntransform(url: string, ...args: unknown[])\n                \n            \n\n\n            \n                \n                    Defined in src/app/shared/_pipes/safe.pipe.ts:11\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    url\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    args\n                                    \n                                            unknown[]\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     unknown\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n\n    \n\n\n    \n        import { Pipe, PipeTransform } from '@angular/core';\nimport {DomSanitizer} from '@angular/platform-browser';\n\n@Pipe({\n  name: 'safe'\n})\nexport class SafePipe implements PipeTransform {\n\n  constructor(private sanitizer: DomSanitizer) {}\n\n  transform(url: string, ...args: unknown[]): unknown {\n    return this.sanitizer.bypassSecurityTrustResourceUrl(url);\n  }\n\n}\n\n    \n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"classes/Settings.html":{"url":"classes/Settings.html","title":"class - Settings","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n  Classes\n  Settings\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_models/settings.ts\n        \n\n\n\n\n\n            \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                registry\n                            \n                            \n                                scanFilter\n                            \n                            \n                                txHelper\n                            \n                            \n                                w3\n                            \n                        \n                    \n                \n\n\n\n\n\n\n        \n    \n\n\n            \n    Constructor\n        \n            \n                \n                    \nconstructor(scanFilter: any)\n                    \n                \n                        \n                            \n                                Defined in src/app/_models/settings.ts:8\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        scanFilter\n                                                  \n                                                        \n                                                                        any\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n            \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            registry\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         any\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/settings.ts:7\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            scanFilter\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         any\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/settings.ts:6\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            txHelper\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         any\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/settings.ts:8\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            w3\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         W3\n\n                        \n                    \n                    \n                        \n                            Default value : {\n    engine: undefined,\n    provider: undefined,\n  }\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/settings.ts:2\n                            \n                        \n\n\n            \n        \n\n\n\n\n\n\n\n\n    \n\n\n    \n        class Settings {\n  w3: W3 = {\n    engine: undefined,\n    provider: undefined,\n  };\n  scanFilter: any;\n  registry: any;\n  txHelper: any;\n\n  constructor(scanFilter: any) {\n    this.scanFilter = scanFilter;\n  }\n}\n\nclass W3 {\n  engine: any;\n  provider: any;\n}\n\nexport {\n  Settings,\n  W3\n};\n\n    \n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"components/SettingsComponent.html":{"url":"components/SettingsComponent.html","title":"component - SettingsComponent","body":"\n                   \n\n\n\n\n\n  Components\n  SettingsComponent\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n        \n            Template\n        \n        \n            Styles\n        \n        \n            DOM Tree\n        \n\n\n\n    \n    File\n\n\n    src/app/pages/settings/settings.component.ts\n\n\n\n\n    \n        Implements\n    \n    \n                    OnInit\n    \n\n\n\n    Metadata\n    \n        \n\n            \n                changeDetection\n                ChangeDetectionStrategy.OnPush\n            \n\n\n\n\n\n\n\n\n\n\n            \n                selector\n                app-settings\n            \n\n            \n                styleUrls\n                ./settings.component.scss\n            \n\n\n\n            \n                templateUrl\n                ./settings.component.html\n            \n\n\n\n\n\n\n\n\n        \n    \n\n\n    \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                dataSource\n                            \n                            \n                                date\n                            \n                            \n                                displayedColumns\n                            \n                            \n                                paginator\n                            \n                            \n                                sort\n                            \n                            \n                                trustedUsers\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                doFilter\n                            \n                            \n                                downloadCsv\n                            \n                            \n                                logout\n                            \n                            \n                                ngOnInit\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n    \n    Constructor\n        \n            \n                \n                    \nconstructor(authService: AuthService)\n                    \n                \n                        \n                            \n                                Defined in src/app/pages/settings/settings.component.ts:22\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        authService\n                                                  \n                                                        \n                                                                        AuthService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n\n\n\n\n    \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            doFilter\n                        \n                        \n                    \n                \n            \n            \n                \ndoFilter(value: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/settings/settings.component.ts:37\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    value\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            downloadCsv\n                        \n                        \n                    \n                \n            \n            \n                \ndownloadCsv()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/settings/settings.component.ts:41\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            logout\n                        \n                        \n                    \n                \n            \n            \n                \nlogout()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/settings/settings.component.ts:45\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            ngOnInit\n                        \n                        \n                    \n                \n            \n            \n                \nngOnInit()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/settings/settings.component.ts:28\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n\n    \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            dataSource\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     MatTableDataSource\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/settings/settings.component.ts:17\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            date\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/settings/settings.component.ts:16\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            displayedColumns\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     Array\n\n                        \n                    \n                    \n                        \n                            Default value : ['name', 'email', 'userId']\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/settings/settings.component.ts:18\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            paginator\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     MatPaginator\n\n                        \n                    \n                    \n                        \n                            Decorators : \n                            \n                            \n                                @ViewChild(MatPaginator)\n                            \n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/settings/settings.component.ts:21\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            sort\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     MatSort\n\n                        \n                    \n                    \n                        \n                            Decorators : \n                            \n                            \n                                @ViewChild(MatSort)\n                            \n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/settings/settings.component.ts:22\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            trustedUsers\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         Array\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/settings/settings.component.ts:19\n                            \n                        \n\n\n            \n        \n\n\n\n\n\n    \n        import {ChangeDetectionStrategy, Component, OnInit, ViewChild} from '@angular/core';\nimport {MatTableDataSource} from '@angular/material/table';\nimport {MatPaginator} from '@angular/material/paginator';\nimport {MatSort} from '@angular/material/sort';\nimport {AuthService} from '@app/_services';\nimport {Staff} from '@app/_models/staff';\nimport {exportCsv} from '@app/_helpers';\n\n@Component({\n  selector: 'app-settings',\n  templateUrl: './settings.component.html',\n  styleUrls: ['./settings.component.scss'],\n  changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class SettingsComponent implements OnInit {\n  date: string;\n  dataSource: MatTableDataSource;\n  displayedColumns: Array = ['name', 'email', 'userId'];\n  trustedUsers: Array;\n\n  @ViewChild(MatPaginator) paginator: MatPaginator;\n  @ViewChild(MatSort) sort: MatSort;\n\n  constructor(\n    private authService: AuthService\n  ) { }\n\n  ngOnInit(): void {\n    const d = new Date();\n    this.date = `${d.getDate()}/${d.getMonth()}/${d.getFullYear()}`;\n    this.trustedUsers = this.authService.getTrustedUsers();\n    this.dataSource = new MatTableDataSource(this.trustedUsers);\n    this.dataSource.paginator = this.paginator;\n    this.dataSource.sort = this.sort;\n  }\n\n  doFilter(value: string): void {\n    this.dataSource.filter = value.trim().toLocaleLowerCase();\n  }\n\n  downloadCsv(): void {\n    exportCsv(this.trustedUsers, 'users');\n  }\n\n  logout(): void {\n    this.authService.logout();\n  }\n}\n\n    \n\n    \n        \n\n  \n\n  \n  \n  \n\n  \n    \n    \n    \n      \n        \n          Home\n          Settings\n        \n      \n      \n        \n          \n            \n              SETTINGS\n            \n            \n              Kobo Toolbox Credentials\n              Username:  admin_reserve \n              Password:  ******** \n            \n            \n            \n              Organization Settings\n              Update your organization settings\n            \n          \n        \n        \n          \n            \n              ACCOUNT MANAGEMENT\n            \n            \n              Change Password\n              Change your account password\n            \n            \n            \n              Two-step authentication\n              Secure your account with two step verification\n            \n            \n            \n               LOGOUT ADMIN \n            \n          \n        \n        \n          \n            \n              \n                TRUSTED USERS\n                 EXPORT \n              \n            \n            \n              \n                 Filter \n                \n                search\n              \n              \n\n                \n                   NAME \n                   {{user.name}} \n                \n\n                \n                   EMAIL \n                   {{user.email}} \n                \n\n                \n                   USER ID \n                   {{user.userid}} \n                \n\n                \n                \n              \n\n              \n\n            \n          \n        \n      \n    \n    \n  \n  \n  \n  \n\n\n    \n\n    \n                \n                    ./settings.component.scss\n                \n                \n    \n\n    \n        \n        \n            \n                Legend\n            \n            \n                Html element\n            \n            \n                Component\n            \n            \n                Html element with directive\n            \n        \n    \n\n    \n\n\n\n\n\n\n        var COMPONENT_TEMPLATE = '                                              Home          Settings                                                                SETTINGS                                      Kobo Toolbox Credentials              Username:  admin_reserve               Password:  ********                                                   Organization Settings              Update your organization settings                                                                          ACCOUNT MANAGEMENT                                      Change Password              Change your account password                                                  Two-step authentication              Secure your account with two step verification                                                   LOGOUT ADMIN                                                                                           TRUSTED USERS                 EXPORT                                                                      Filter                                 search                                                               NAME                    {{user.name}}                                                    EMAIL                    {{user.email}}                                                    USER ID                    {{user.userid}}                                                                                                                                 '\n    var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n    var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[routerLink]'}];\n    var ACTUAL_COMPONENT = {'name': 'SettingsComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"modules/SettingsModule.html":{"url":"modules/SettingsModule.html","title":"module - SettingsModule","body":"\n                   \n\n\n\n\n    Modules\n    SettingsModule\n\n\n\n    \n        \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_SettingsModule\n\n\n\ncluster_SettingsModule_imports\n\n\n\ncluster_SettingsModule_declarations\n\n\n\n\nOrganizationComponent\n\nOrganizationComponent\n\n\n\nSettingsModule\n\nSettingsModule\n\nSettingsModule -->\n\nOrganizationComponent->SettingsModule\n\n\n\n\n\nSettingsComponent\n\nSettingsComponent\n\nSettingsModule -->\n\nSettingsComponent->SettingsModule\n\n\n\n\n\nSettingsRoutingModule\n\nSettingsRoutingModule\n\nSettingsModule -->\n\nSettingsRoutingModule->SettingsModule\n\n\n\n\n\nSharedModule\n\nSharedModule\n\nSettingsModule -->\n\nSharedModule->SettingsModule\n\n\n\n\n\n\n    \n    \n    \n        Zoom in\n        Reset\n        Zoom out\n    \n\n\n\n\n\n    \n        Info\n    \n    \n        Source\n    \n\n\n\n    \n\n        \n            File\n        \n        \n            src/app/pages/settings/settings.module.ts\n        \n\n\n\n\n        \n            \n                \n                    Declarations\n                    \n                        \n                            OrganizationComponent\n                        \n                        \n                            SettingsComponent\n                        \n                    \n                \n                \n                    Imports\n                    \n                        \n                            SettingsRoutingModule\n                        \n                        \n                            SharedModule\n                        \n                    \n                \n            \n        \n\n\n    \n\n\n    \n        import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { SettingsRoutingModule } from '@pages/settings/settings-routing.module';\nimport { SettingsComponent } from '@pages/settings/settings.component';\nimport {SharedModule} from '@app/shared/shared.module';\nimport { OrganizationComponent } from '@pages/settings/organization/organization.component';\nimport {MatTableModule} from '@angular/material/table';\nimport {MatSortModule} from '@angular/material/sort';\nimport {MatPaginatorModule} from '@angular/material/paginator';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatCardModule} from '@angular/material/card';\nimport {MatRadioModule} from '@angular/material/radio';\nimport {MatCheckboxModule} from '@angular/material/checkbox';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatMenuModule} from '@angular/material/menu';\nimport {ReactiveFormsModule} from '@angular/forms';\n\n\n@NgModule({\n  declarations: [SettingsComponent, OrganizationComponent],\n  imports: [\n    CommonModule,\n    SettingsRoutingModule,\n    SharedModule,\n    MatTableModule,\n    MatSortModule,\n    MatPaginatorModule,\n    MatInputModule,\n    MatFormFieldModule,\n    MatButtonModule,\n    MatIconModule,\n    MatCardModule,\n    MatRadioModule,\n    MatCheckboxModule,\n    MatSelectModule,\n    MatMenuModule,\n    ReactiveFormsModule\n  ]\n})\nexport class SettingsModule { }\n\n    \n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"modules/SettingsRoutingModule.html":{"url":"modules/SettingsRoutingModule.html","title":"module - SettingsRoutingModule","body":"\n                   \n\n\n\n\n    Modules\n    SettingsRoutingModule\n\n\n\n\n    \n        Info\n    \n    \n        Source\n    \n\n\n\n    \n\n        \n            File\n        \n        \n            src/app/pages/settings/settings-routing.module.ts\n        \n\n\n\n\n        \n            \n            \n        \n\n\n    \n\n\n    \n        import { NgModule } from '@angular/core';\nimport { Routes, RouterModule } from '@angular/router';\n\nimport { SettingsComponent } from '@pages/settings/settings.component';\nimport {OrganizationComponent} from '@pages/settings/organization/organization.component';\n\nconst routes: Routes = [\n  { path: '', component: SettingsComponent },\n  { path: 'organization', component: OrganizationComponent },\n  { path: '**', redirectTo: '', pathMatch: 'full' }\n];\n\n@NgModule({\n  imports: [RouterModule.forChild(routes)],\n  exports: [RouterModule]\n})\nexport class SettingsRoutingModule { }\n\n    \n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"modules/SharedModule.html":{"url":"modules/SharedModule.html","title":"module - SharedModule","body":"\n                   \n\n\n\n\n    Modules\n    SharedModule\n\n\n\n    \n        \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_SharedModule\n\n\n\ncluster_SharedModule_exports\n\n\n\ncluster_SharedModule_declarations\n\n\n\n\nErrorDialogComponent\n\nErrorDialogComponent\n\n\n\nSharedModule\n\nSharedModule\n\nSharedModule -->\n\nErrorDialogComponent->SharedModule\n\n\n\n\n\nFooterComponent\n\nFooterComponent\n\nSharedModule -->\n\nFooterComponent->SharedModule\n\n\n\n\n\nMenuSelectionDirective\n\nMenuSelectionDirective\n\nSharedModule -->\n\nMenuSelectionDirective->SharedModule\n\n\n\n\n\nMenuToggleDirective\n\nMenuToggleDirective\n\nSharedModule -->\n\nMenuToggleDirective->SharedModule\n\n\n\n\n\nSafePipe\n\nSafePipe\n\nSharedModule -->\n\nSafePipe->SharedModule\n\n\n\n\n\nSidebarComponent\n\nSidebarComponent\n\nSharedModule -->\n\nSidebarComponent->SharedModule\n\n\n\n\n\nTokenRatioPipe\n\nTokenRatioPipe\n\nSharedModule -->\n\nTokenRatioPipe->SharedModule\n\n\n\n\n\nTopbarComponent\n\nTopbarComponent\n\nSharedModule -->\n\nTopbarComponent->SharedModule\n\n\n\n\n\nFooterComponent \n\nFooterComponent \n\nFooterComponent  -->\n\nSharedModule->FooterComponent \n\n\n\n\n\nMenuSelectionDirective \n\nMenuSelectionDirective \n\nMenuSelectionDirective  -->\n\nSharedModule->MenuSelectionDirective \n\n\n\n\n\nSafePipe \n\nSafePipe \n\nSafePipe  -->\n\nSharedModule->SafePipe \n\n\n\n\n\nSidebarComponent \n\nSidebarComponent \n\nSidebarComponent  -->\n\nSharedModule->SidebarComponent \n\n\n\n\n\nTokenRatioPipe \n\nTokenRatioPipe \n\nTokenRatioPipe  -->\n\nSharedModule->TokenRatioPipe \n\n\n\n\n\nTopbarComponent \n\nTopbarComponent \n\nTopbarComponent  -->\n\nSharedModule->TopbarComponent \n\n\n\n\n\n\n    \n    \n    \n        Zoom in\n        Reset\n        Zoom out\n    \n\n\n\n\n\n    \n        Info\n    \n    \n        Source\n    \n\n\n\n    \n\n        \n            File\n        \n        \n            src/app/shared/shared.module.ts\n        \n\n\n\n\n        \n            \n                \n                    Declarations\n                    \n                        \n                            ErrorDialogComponent\n                        \n                        \n                            FooterComponent\n                        \n                        \n                            MenuSelectionDirective\n                        \n                        \n                            MenuToggleDirective\n                        \n                        \n                            SafePipe\n                        \n                        \n                            SidebarComponent\n                        \n                        \n                            TokenRatioPipe\n                        \n                        \n                            TopbarComponent\n                        \n                    \n                \n                \n                    Exports\n                    \n                        \n                            FooterComponent\n                        \n                        \n                            MenuSelectionDirective\n                        \n                        \n                            SafePipe\n                        \n                        \n                            SidebarComponent\n                        \n                        \n                            TokenRatioPipe\n                        \n                        \n                            TopbarComponent\n                        \n                    \n                \n            \n        \n\n\n    \n\n\n    \n        import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { TopbarComponent } from '@app/shared/topbar/topbar.component';\nimport { FooterComponent } from '@app/shared/footer/footer.component';\nimport { SidebarComponent } from '@app/shared/sidebar/sidebar.component';\nimport { MenuSelectionDirective } from '@app/shared/_directives/menu-selection.directive';\nimport { MenuToggleDirective } from '@app/shared/_directives/menu-toggle.directive';\nimport {RouterModule} from '@angular/router';\nimport {MatIconModule} from '@angular/material/icon';\nimport {TokenRatioPipe} from '@app/shared/_pipes/token-ratio.pipe';\nimport { ErrorDialogComponent } from '@app/shared/error-dialog/error-dialog.component';\nimport {MatDialogModule} from '@angular/material/dialog';\nimport { SafePipe } from '@app/shared/_pipes/safe.pipe';\n\n\n\n@NgModule({\n  declarations: [\n    TopbarComponent,\n    FooterComponent,\n    SidebarComponent,\n    MenuSelectionDirective,\n    MenuToggleDirective,\n    TokenRatioPipe,\n    ErrorDialogComponent,\n    SafePipe\n  ],\n  exports: [\n    TopbarComponent,\n    FooterComponent,\n    SidebarComponent,\n    MenuSelectionDirective,\n    TokenRatioPipe,\n    SafePipe\n  ],\n  imports: [\n    CommonModule,\n    RouterModule,\n    MatIconModule,\n    MatDialogModule,\n  ]\n})\nexport class SharedModule { }\n\n    \n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"components/SidebarComponent.html":{"url":"components/SidebarComponent.html","title":"component - SidebarComponent","body":"\n                   \n\n\n\n\n\n  Components\n  SidebarComponent\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n        \n            Template\n        \n        \n            Styles\n        \n        \n            DOM Tree\n        \n\n\n\n    \n    File\n\n\n    src/app/shared/sidebar/sidebar.component.ts\n\n\n\n\n    \n        Implements\n    \n    \n                    OnInit\n    \n\n\n\n    Metadata\n    \n        \n\n            \n                changeDetection\n                ChangeDetectionStrategy.OnPush\n            \n\n\n\n\n\n\n\n\n\n\n            \n                selector\n                app-sidebar\n            \n\n            \n                styleUrls\n                ./sidebar.component.scss\n            \n\n\n\n            \n                templateUrl\n                ./sidebar.component.html\n            \n\n\n\n\n\n\n\n\n        \n    \n\n\n    \n    Index\n    \n        \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                ngOnInit\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n    \n    Constructor\n        \n            \n                \n                    \nconstructor()\n                    \n                \n                        \n                            \n                                Defined in src/app/shared/sidebar/sidebar.component.ts:9\n                            \n                        \n\n            \n        \n\n\n\n\n\n\n    \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            ngOnInit\n                        \n                        \n                    \n                \n            \n            \n                \nngOnInit()\n                \n            \n\n\n            \n                \n                    Defined in src/app/shared/sidebar/sidebar.component.ts:13\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n\n\n\n\n\n    \n        import {ChangeDetectionStrategy, Component, OnInit} from '@angular/core';\n\n@Component({\n  selector: 'app-sidebar',\n  templateUrl: './sidebar.component.html',\n  styleUrls: ['./sidebar.component.scss'],\n  changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class SidebarComponent implements OnInit {\n\n  constructor() { }\n\n  ngOnInit(): void {\n  }\n\n}\n\n    \n\n    \n        \n\n  \n\n    \n      \n        \n      \n      CICADA\n    \n\n    \n      \n        \n          \n           Dashboard \n        \n      \n      \n        \n          \n           Accounts \n        \n      \n      \n        \n          \n           Transactions \n        \n      \n      \n        \n          \n           Tokens \n        \n      \n      \n        \n          \n           Settings \n        \n      \n      \n        \n          \n           Admin \n        \n      \n    \n  \n\n\n\n    \n\n    \n                \n                    ./sidebar.component.scss\n                \n                \n    \n\n    \n        \n        \n            \n                Legend\n            \n            \n                Html element\n            \n            \n                Component\n            \n            \n                Html element with directive\n            \n        \n    \n\n    \n\n\n\n\n\n\n        var COMPONENT_TEMPLATE = '                                CICADA                                           Dashboard                                                  Accounts                                                  Transactions                                                  Tokens                                                  Settings                                                  Admin                     '\n    var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n    var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[routerLink]'}];\n    var ACTUAL_COMPONENT = {'name': 'SidebarComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"components/SidebarStubComponent.html":{"url":"components/SidebarStubComponent.html","title":"component - SidebarStubComponent","body":"\n                   \n\n\n\n\n\n  Components\n  SidebarStubComponent\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n        \n            DOM Tree\n        \n\n\n\n    \n    File\n\n\n    src/testing/shared-module-stub.ts\n\n\n\n\n\n\n\n    Metadata\n    \n        \n\n\n\n\n\n\n\n\n\n\n\n            \n                selector\n                app-sidebar\n            \n\n\n\n\n\n\n\n\n\n\n\n\n        \n    \n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n        import {Component} from '@angular/core';\n\n@Component({selector: 'app-sidebar', template: ''})\nexport class SidebarStubComponent {}\n\n@Component({selector: 'app-topbar', template: ''})\nexport class TopbarStubComponent {}\n\n@Component({selector: 'app-footer', template: ''})\nexport class FooterStubComponent {}\n\n    \n\n\n\n    \n        \n        \n            \n                Legend\n            \n            \n                Html element\n            \n            \n                Component\n            \n            \n                Html element with directive\n            \n        \n    \n\n    \n\n\n\n\n\n\n        var COMPONENT_TEMPLATE = ''\n    var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n    var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[routerLink]'}];\n    var ACTUAL_COMPONENT = {'name': 'SidebarStubComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"interfaces/Signable.html":{"url":"interfaces/Signable.html","title":"interface - Signable","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n\n  Interfaces\n  Signable\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_pgp/pgp-signer.ts\n        \n\n\n\n        \n            Index\n            \n                \n                    \n                        \n                            Methods\n                        \n                    \n                    \n                        \n                            \n                                \n                                    digest\n                                \n                            \n                        \n                    \n                \n            \n        \n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            digest\n                        \n                        \n                    \n                \n            \n            \n                \ndigest()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-signer.ts:7\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         string\n\n                    \n                \n            \n        \n    \n\n\n    \n\n\n    \n        import {MutableKeyStore} from '@app/_pgp/pgp-key-store';\nimport {LoggingService} from '@app/_services/logging.service';\n\nconst openpgp = require('openpgp');\n\ninterface Signable {\n  digest(): string;\n}\n\ntype Signature = {\n  engine: string\n  algo: string\n  data: string\n  digest: string;\n};\n\ninterface Signer {\n  onsign(signature: Signature): void;\n  onverify(flag: boolean): void;\n  fingerprint(): string;\n  prepare(material: Signable): boolean;\n  verify(digest: string, signature: Signature): void;\n  sign(digest: string): Promise;\n}\n\nclass PGPSigner implements Signer {\n\n  engine = 'pgp';\n  algo = 'sha256';\n  dgst: string;\n  signature: Signature;\n  keyStore: MutableKeyStore;\n  onsign: (signature: Signature) => void;\n  onverify: (flag: boolean) => void;\n  loggingService: LoggingService;\n\n  constructor(keyStore: MutableKeyStore) {\n    this.keyStore = keyStore;\n    this.onsign = (signature: Signature) => {};\n    this.onverify = (flag: boolean) => {};\n  }\n\n  public fingerprint(): string {\n    return this.keyStore.getFingerprint();\n  }\n\n  public prepare(material: Signable): boolean {\n    this.dgst = material.digest();\n    return true;\n  }\n\n  public verify(digest: string, signature: Signature): void {\n    openpgp.signature.readArmored(signature.data).then((sig) => {\n      const opts = {\n        message: openpgp.cleartext.fromText(digest),\n        publicKeys: this.keyStore.getTrustedKeys(),\n        signature: sig,\n      };\n      openpgp.verify(opts).then((v) => {\n        let i = 0;\n        for (i = 0; i  {\n      this.loggingService.sendErrorLevelMessage(e.message, this, {error: e});\n      this.onverify(false);\n    });\n  }\n\n  public async sign(digest: string): Promise {\n    const m = openpgp.cleartext.fromText(digest);\n    const pk = this.keyStore.getPrivateKey();\n    if (!pk.isDecrypted()) {\n      const password = window.prompt('password');\n      await pk.decrypt(password);\n    }\n    const opts = {\n      message: m,\n      privateKeys: [pk],\n      detached: true,\n    };\n    openpgp.sign(opts).then((s) => {\n      this.signature = {\n        engine: this.engine,\n        algo: this.algo,\n        data: s.signature,\n        // TODO: fix for browser later\n        digest,\n      };\n      this.onsign(this.signature);\n    }).catch((e) => {\n      this.loggingService.sendErrorLevelMessage(e.message, this, {error: e});\n      this.onsign(undefined);\n    });\n  }\n}\n\nexport {\n  Signable,\n  Signature,\n  Signer,\n  PGPSigner\n};\n\n    \n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"interfaces/Signature.html":{"url":"interfaces/Signature.html","title":"interface - Signature","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n\n  Interfaces\n  Signature\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_models/account.ts\n        \n\n\n\n        \n            Index\n            \n                \n                    \n                        \n                            Properties\n                        \n                    \n                    \n                        \n                            \n                                \n                                        algo\n                                \n                                \n                                        data\n                                \n                                \n                                        digest\n                                \n                                \n                                        engine\n                                \n                            \n                        \n                    \n                \n            \n        \n\n\n\n            \n                Properties\n                    \n                        \n                                \n                                    \n                                        \n                                        algo\n                                    \n                                \n                                \n                                    \n                                        algo:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        data\n                                    \n                                \n                                \n                                    \n                                        data:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        digest\n                                    \n                                \n                                \n                                    \n                                        digest:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        engine\n                                    \n                                \n                                \n                                    \n                                        engine:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n            \n    \n\n\n    \n        interface AccountDetails {\n  date_registered: number;\n  gender: string;\n  age?: string;\n  type?: string;\n  balance?: number;\n  identities: {\n    evm: {\n      'bloxberg:8996': string[];\n      'oldchain:1': string[];\n    };\n    latitude: number;\n    longitude: number;\n  };\n  location: {\n    area?: string;\n    area_name: string;\n    area_type?: string;\n  };\n  products: string[];\n  category?: string;\n  vcard: {\n    email: [{\n      value: string;\n    }];\n    fn: [{\n      value: string;\n    }];\n    n: [{\n      value: string[];\n    }];\n    tel: [{\n      meta: {\n        TYP: string[];\n      },\n      value: string;\n    }],\n    version: [{\n      value: string;\n    }];\n  };\n}\n\ninterface Signature {\n  algo: string;\n  data: string;\n  digest: string;\n  engine: string;\n}\n\ninterface Meta {\n  data: AccountDetails;\n  id: string;\n  signature: Signature;\n}\n\ninterface MetaResponse {\n  id: string;\n  m: Meta;\n}\n\nconst defaultAccount: AccountDetails = {\n  date_registered: Date.now(),\n  gender: 'other',\n  identities: {\n    evm: {\n      'bloxberg:8996': [''],\n      'oldchain:1': [''],\n    },\n    latitude: 0,\n    longitude: 0,\n  },\n  location: {\n    area_name: 'Kilifi',\n  },\n  products: [],\n  vcard: {\n    email: [{\n      value: '',\n    }],\n    fn: [{\n      value: 'Sarafu Contract',\n    }],\n    n: [{\n      value: ['Sarafu', 'Contract'],\n    }],\n    tel: [{\n      meta: {\n        TYP: [],\n      },\n      value: '',\n    }],\n    version: [{\n      value: '3.0',\n    }],\n  },\n};\n\nexport {\n  AccountDetails,\n  Signature,\n  Meta,\n  MetaResponse,\n  defaultAccount\n};\n\n    \n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"interfaces/Signer.html":{"url":"interfaces/Signer.html","title":"interface - Signer","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n\n  Interfaces\n  Signer\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_pgp/pgp-signer.ts\n        \n\n\n\n        \n            Index\n            \n                \n                    \n                        \n                            Methods\n                        \n                    \n                    \n                        \n                            \n                                \n                                    fingerprint\n                                \n                                \n                                    onsign\n                                \n                                \n                                    onverify\n                                \n                                \n                                    prepare\n                                \n                                \n                                    sign\n                                \n                                \n                                    verify\n                                \n                            \n                        \n                    \n                \n            \n        \n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            fingerprint\n                        \n                        \n                    \n                \n            \n            \n                \nfingerprint()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-signer.ts:20\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         string\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            onsign\n                        \n                        \n                    \n                \n            \n            \n                \nonsign(signature: Signature)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-signer.ts:18\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    signature\n                                    \n                                                Signature\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            onverify\n                        \n                        \n                    \n                \n            \n            \n                \nonverify(flag: boolean)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-signer.ts:19\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    flag\n                                    \n                                                boolean\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            prepare\n                        \n                        \n                    \n                \n            \n            \n                \nprepare(material: Signable)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-signer.ts:21\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    material\n                                    \n                                                Signable\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         boolean\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            sign\n                        \n                        \n                    \n                \n            \n            \n                \nsign(digest: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-signer.ts:23\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    digest\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            verify\n                        \n                        \n                    \n                \n            \n            \n                \nverify(digest: string, signature: Signature)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-signer.ts:22\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    digest\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    signature\n                                    \n                                                Signature\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n\n    \n\n\n    \n        import {MutableKeyStore} from '@app/_pgp/pgp-key-store';\nimport {LoggingService} from '@app/_services/logging.service';\n\nconst openpgp = require('openpgp');\n\ninterface Signable {\n  digest(): string;\n}\n\ntype Signature = {\n  engine: string\n  algo: string\n  data: string\n  digest: string;\n};\n\ninterface Signer {\n  onsign(signature: Signature): void;\n  onverify(flag: boolean): void;\n  fingerprint(): string;\n  prepare(material: Signable): boolean;\n  verify(digest: string, signature: Signature): void;\n  sign(digest: string): Promise;\n}\n\nclass PGPSigner implements Signer {\n\n  engine = 'pgp';\n  algo = 'sha256';\n  dgst: string;\n  signature: Signature;\n  keyStore: MutableKeyStore;\n  onsign: (signature: Signature) => void;\n  onverify: (flag: boolean) => void;\n  loggingService: LoggingService;\n\n  constructor(keyStore: MutableKeyStore) {\n    this.keyStore = keyStore;\n    this.onsign = (signature: Signature) => {};\n    this.onverify = (flag: boolean) => {};\n  }\n\n  public fingerprint(): string {\n    return this.keyStore.getFingerprint();\n  }\n\n  public prepare(material: Signable): boolean {\n    this.dgst = material.digest();\n    return true;\n  }\n\n  public verify(digest: string, signature: Signature): void {\n    openpgp.signature.readArmored(signature.data).then((sig) => {\n      const opts = {\n        message: openpgp.cleartext.fromText(digest),\n        publicKeys: this.keyStore.getTrustedKeys(),\n        signature: sig,\n      };\n      openpgp.verify(opts).then((v) => {\n        let i = 0;\n        for (i = 0; i  {\n      this.loggingService.sendErrorLevelMessage(e.message, this, {error: e});\n      this.onverify(false);\n    });\n  }\n\n  public async sign(digest: string): Promise {\n    const m = openpgp.cleartext.fromText(digest);\n    const pk = this.keyStore.getPrivateKey();\n    if (!pk.isDecrypted()) {\n      const password = window.prompt('password');\n      await pk.decrypt(password);\n    }\n    const opts = {\n      message: m,\n      privateKeys: [pk],\n      detached: true,\n    };\n    openpgp.sign(opts).then((s) => {\n      this.signature = {\n        engine: this.engine,\n        algo: this.algo,\n        data: s.signature,\n        // TODO: fix for browser later\n        digest,\n      };\n      this.onsign(this.signature);\n    }).catch((e) => {\n      this.loggingService.sendErrorLevelMessage(e.message, this, {error: e});\n      this.onsign(undefined);\n    });\n  }\n}\n\nexport {\n  Signable,\n  Signature,\n  Signer,\n  PGPSigner\n};\n\n    \n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"interfaces/Staff.html":{"url":"interfaces/Staff.html","title":"interface - Staff","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n\n  Interfaces\n  Staff\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_models/staff.ts\n        \n\n\n\n        \n            Index\n            \n                \n                    \n                        \n                            Properties\n                        \n                    \n                    \n                        \n                            \n                                \n                                        comment\n                                \n                                \n                                        email\n                                \n                                \n                                        name\n                                \n                                \n                                        tag\n                                \n                                \n                                        userid\n                                \n                            \n                        \n                    \n                \n            \n        \n\n\n\n            \n                Properties\n                    \n                        \n                                \n                                    \n                                        \n                                        comment\n                                    \n                                \n                                \n                                    \n                                        comment:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        email\n                                    \n                                \n                                \n                                    \n                                        email:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        name\n                                    \n                                \n                                \n                                    \n                                        name:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        tag\n                                    \n                                \n                                \n                                    \n                                        tag:         number\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         number\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        userid\n                                    \n                                \n                                \n                                    \n                                        userid:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n            \n    \n\n\n    \n        interface Staff {\n  comment: string;\n  email: string;\n  name: string;\n  tag: number;\n  userid: string;\n}\n\nexport {\n  Staff\n};\n\n    \n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"interfaces/Token.html":{"url":"interfaces/Token.html","title":"interface - Token","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n\n  Interfaces\n  Token\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_models/token.ts\n        \n\n\n\n        \n            Index\n            \n                \n                    \n                        \n                            Properties\n                        \n                    \n                    \n                        \n                            \n                                \n                                        address\n                                \n                                \n                                        decimals\n                                \n                                \n                                        name\n                                \n                                \n                                            Optional\n                                        owner\n                                \n                                \n                                            Optional\n                                        reserveRatio\n                                \n                                \n                                        reserves\n                                \n                                \n                                        supply\n                                \n                                \n                                        symbol\n                                \n                            \n                        \n                    \n                \n            \n        \n\n\n\n            \n                Properties\n                    \n                        \n                                \n                                    \n                                        \n                                        address\n                                    \n                                \n                                \n                                    \n                                        address:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        decimals\n                                    \n                                \n                                \n                                    \n                                        decimals:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        name\n                                    \n                                \n                                \n                                    \n                                        name:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        owner\n                                    \n                                \n                                \n                                    \n                                        owner:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n                                    \n                                        \n                                            Optional\n                                        \n                                    \n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        reserveRatio\n                                    \n                                \n                                \n                                    \n                                        reserveRatio:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n                                    \n                                        \n                                            Optional\n                                        \n                                    \n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        reserves\n                                    \n                                \n                                \n                                    \n                                        reserves:     literal type\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :     literal type\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        supply\n                                    \n                                \n                                \n                                    \n                                        supply:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        symbol\n                                    \n                                \n                                \n                                    \n                                        symbol:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n            \n    \n\n\n    \n        interface Token {\n  name: string;\n  symbol: string;\n  address: string;\n  supply: string;\n  decimals: string;\n  reserves: {\n    '0xa686005CE37Dce7738436256982C3903f2E4ea8E'?: {\n      weight: string;\n      balance: string;\n    }\n  };\n  reserveRatio?: string;\n  owner?: string;\n}\n\nexport {\n  Token\n};\n\n    \n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"components/TokenDetailsComponent.html":{"url":"components/TokenDetailsComponent.html","title":"component - TokenDetailsComponent","body":"\n                   \n\n\n\n\n\n  Components\n  TokenDetailsComponent\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n        \n            Template\n        \n        \n            Styles\n        \n        \n            DOM Tree\n        \n\n\n\n    \n    File\n\n\n    src/app/pages/tokens/token-details/token-details.component.ts\n\n\n\n\n    \n        Implements\n    \n    \n                    OnInit\n    \n\n\n\n    Metadata\n    \n        \n\n            \n                changeDetection\n                ChangeDetectionStrategy.OnPush\n            \n\n\n\n\n\n\n\n\n\n\n            \n                selector\n                app-token-details\n            \n\n            \n                styleUrls\n                ./token-details.component.scss\n            \n\n\n\n            \n                templateUrl\n                ./token-details.component.html\n            \n\n\n\n\n\n\n\n\n        \n    \n\n\n    \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                token\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                ngOnInit\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n    \n    Constructor\n        \n            \n                \n                    \nconstructor(route: ActivatedRoute, tokenService: TokenService)\n                    \n                \n                        \n                            \n                                Defined in src/app/pages/tokens/token-details/token-details.component.ts:14\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        route\n                                                  \n                                                        \n                                                                        ActivatedRoute\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        tokenService\n                                                  \n                                                        \n                                                                        TokenService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n\n\n\n\n    \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            ngOnInit\n                        \n                        \n                    \n                \n            \n            \n                \nngOnInit()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/tokens/token-details/token-details.component.ts:27\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n\n    \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            token\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         Token\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/tokens/token-details/token-details.component.ts:14\n                            \n                        \n\n\n            \n        \n\n\n\n\n\n    \n        import {ChangeDetectionStrategy, Component, OnInit} from '@angular/core';\nimport {ActivatedRoute, Params} from '@angular/router';\nimport {TokenService} from '@app/_services';\nimport {first} from 'rxjs/operators';\nimport {Token} from '../../../_models';\n\n@Component({\n  selector: 'app-token-details',\n  templateUrl: './token-details.component.html',\n  styleUrls: ['./token-details.component.scss'],\n  changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class TokenDetailsComponent implements OnInit {\n  token: Token;\n\n  constructor(\n    private route: ActivatedRoute,\n    private tokenService: TokenService\n  ) {\n    this.route.paramMap.subscribe((params: Params) => {\n      this.tokenService.getTokenBySymbol(params.get('id')).pipe(first()).subscribe(res => {\n        this.token = res;\n      });\n    });\n  }\n\n  ngOnInit(): void {\n  }\n\n}\n\n    \n\n    \n        \n\n  \n\n  \n  \n  \n\n  \n    \n    \n    \n      \n        \n          Home\n          Tokens\n          {{token.name}}\n        \n      \n      \n        \n          \n            Token\n          \n          \n            \n              Name: {{token.name}}\n            \n            \n              Symbol: {{token.symbol}}\n            \n            \n              Address: {{token.address}}\n            \n            \n              Details: A community inclusive currency for trading among lower to middle income societies.\n            \n            \n              Supply: {{token.supply | tokenRatio}}\n            \n            \n              Reserve\n              \n                Weight: {{token.reserveRatio}}\n              \n              \n                Owner: {{token.owner}}\n              \n            \n          \n        \n      \n    \n    \n  \n  \n  \n  \n\n\n\n    \n\n    \n                \n                    ./token-details.component.scss\n                \n                \n    \n\n    \n        \n        \n            \n                Legend\n            \n            \n                Html element\n            \n            \n                Component\n            \n            \n                Html element with directive\n            \n        \n    \n\n    \n\n\n\n\n\n\n        var COMPONENT_TEMPLATE = '                                              Home          Tokens          {{token.name}}                                                  Token                                              Name: {{token.name}}                                      Symbol: {{token.symbol}}                                      Address: {{token.address}}                                      Details: A community inclusive currency for trading among lower to middle income societies.                                      Supply: {{token.supply | tokenRatio}}                                      Reserve                              Weight: {{token.reserveRatio}}                                            Owner: {{token.owner}}                                                                  '\n    var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n    var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[routerLink]'}];\n    var ACTUAL_COMPONENT = {'name': 'TokenDetailsComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"pipes/TokenRatioPipe.html":{"url":"pipes/TokenRatioPipe.html","title":"pipe - TokenRatioPipe","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n  Pipes\n  TokenRatioPipe\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n\n        \n            File\n        \n        \n            src/app/shared/_pipes/token-ratio.pipe.ts\n        \n\n\n\n        \n            Metadata\n            \n                \n                    \n                        Name\n                        tokenRatio\n                    \n                \n            \n        \n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            transform\n                        \n                        \n                    \n                \n            \n            \n                \ntransform(value: any, ...args: any[])\n                \n            \n\n\n            \n                \n                    Defined in src/app/shared/_pipes/token-ratio.pipe.ts:5\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    value\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    args\n                                    \n                                            any[]\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         any\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n\n    \n\n\n    \n        import {Pipe, PipeTransform} from '@angular/core';\n\n@Pipe({name: 'tokenRatio'})\nexport class TokenRatioPipe implements PipeTransform {\n  transform(value: any, ...args): any {\n    return Number(value) / Math.pow(10, 6);\n  }\n}\n\n    \n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"classes/TokenRegistry.html":{"url":"classes/TokenRegistry.html","title":"class - TokenRegistry","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n  Classes\n  TokenRegistry\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_eth/token-registry.ts\n        \n\n            \n                Description\n            \n            \n                Provides an instance of the token registry contract.\nAllows querying of tokens that have been registered as valid tokens in the network.\n\n            \n\n\n\n            \n                Example\n            \n            \n            \n\n            \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                contract\n                            \n                            \n                                contractAddress\n                            \n                            \n                                signerAddress\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                    Public\n                                    Async\n                                addressOf\n                            \n                            \n                                    Public\n                                    Async\n                                entry\n                            \n                            \n                                    Public\n                                    Async\n                                totalTokens\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n            \n    Constructor\n        \n            \n                \n                    \nconstructor(contractAddress: string, signerAddress?: string)\n                    \n                \n                        \n                            \n                                Defined in src/app/_eth/token-registry.ts:26\n                            \n                        \n\n                \n                    \n                            Create a connection to the deployed token registry contract.\n\n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                                    Description\n                                            \n                                        \n                                        \n                                                \n                                                        contractAddress\n                                                  \n                                                        \n                                                                        string\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                        \n                                                                \nThe deployed token registry contract's address.\n\n\n                                                        \n                                                \n                                                \n                                                        signerAddress\n                                                  \n                                                        \n                                                                        string\n                                                        \n                                                  \n                                                    \n                                                            Yes\n                                                    \n                                                    \n                                                        \n                                                                \nThe account address of the account that deployed the token registry contract.\n\n\n                                                        \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n            \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            contract\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         any\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_eth/token-registry.ts:22\n                            \n                        \n\n                \n                    \n                        The instance of the token registry contract. \n\n                    \n                \n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            contractAddress\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_eth/token-registry.ts:24\n                            \n                        \n\n                \n                    \n                        The deployed token registry contract's address. \n\n                    \n                \n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            signerAddress\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_eth/token-registry.ts:26\n                            \n                        \n\n                \n                    \n                        The account address of the account that deployed the token registry contract. \n\n                    \n                \n\n            \n        \n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Public\n                            Async\n                            addressOf\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    addressOf(identifier: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_eth/token-registry.ts:57\n                \n            \n\n\n            \n                \n                    Returns the address of the token with a given identifier.\n\n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                    Description\n                                \n                            \n                            \n                                \n                                    identifier\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                    \n                                        \nThe name or identifier of the token to be fetched from the token registry.\n\n\n                                    \n                                \n                            \n                        \n                    \n                    \n                        Example :\n                        \n                            Prints the address of the token with the identifier 'sarafu':\n```typescript\n\nconsole.log(await addressOf('sarafu'));\n```\n\n                        \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        The address of the token assigned the specified identifier in the token registry.\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Public\n                            Async\n                            entry\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    entry(serial: number)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_eth/token-registry.ts:75\n                \n            \n\n\n            \n                \n                    Returns the address of a token with the given serial in the token registry.\n\n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                    Description\n                                \n                            \n                            \n                                \n                                    serial\n                                    \n                                                number\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                    \n                                        \nThe serial number of the token to be fetched.\n\n\n                                    \n                                \n                            \n                        \n                    \n                    \n                        Example :\n                        \n                            Prints the address of the token with the serial '2':\n```typescript\n\nconsole.log(await entry(2));\n```\n\n                        \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        The address of the token with the specified serial number.\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Public\n                            Async\n                            totalTokens\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    totalTokens()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_eth/token-registry.ts:91\n                \n            \n\n\n            \n                \n                    Returns the total number of tokens that have been registered in the network.\n\n\n                    \n                        Example :\n                        \n                            Prints the total number of registered tokens:\n```typescript\n\nconsole.log(await totalTokens());\n```\n\n                        \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        The total number of registered tokens.\n\n                    \n                \n            \n        \n    \n\n\n\n\n\n\n    \n\n\n    \n        import Web3 from 'web3';\n\n// Application imports\nimport {environment} from '@src/environments/environment';\n\n\n/** Fetch the token registry contract's ABI. */\nconst abi: Array = require('@src/assets/js/block-sync/data/TokenUniqueSymbolIndex.json');\n/** Establish a connection to the blockchain network. */\nconst web3: Web3 = new Web3(environment.web3Provider);\n\n/**\n * Provides an instance of the token registry contract.\n * Allows querying of tokens that have been registered as valid tokens in the network.\n *\n * @remarks\n * This is our interface to the token registry contract.\n */\nexport class TokenRegistry {\n  /** The instance of the token registry contract. */\n  contract: any;\n  /** The deployed token registry contract's address. */\n  contractAddress: string;\n  /** The account address of the account that deployed the token registry contract. */\n  signerAddress: string;\n\n  /**\n   * Create a connection to the deployed token registry contract.\n   *\n   * @param contractAddress - The deployed token registry contract's address.\n   * @param signerAddress - The account address of the account that deployed the token registry contract.\n   */\n  constructor(contractAddress: string, signerAddress?: string) {\n    this.contractAddress = contractAddress;\n    this.contract = new web3.eth.Contract(abi, this.contractAddress);\n    if (signerAddress) {\n      this.signerAddress = signerAddress;\n    } else {\n      this.signerAddress = web3.eth.accounts[0];\n    }\n  }\n\n  /**\n   * Returns the address of the token with a given identifier.\n   *\n   * @async\n   * @example\n   * Prints the address of the token with the identifier 'sarafu':\n   * ```typescript\n   * console.log(await addressOf('sarafu'));\n   * ```\n   *\n   * @param identifier - The name or identifier of the token to be fetched from the token registry.\n   * @returns The address of the token assigned the specified identifier in the token registry.\n   */\n  public async addressOf(identifier: string): Promise {\n    const id: string = web3.eth.abi.encodeParameter('bytes32', web3.utils.toHex(identifier));\n    return await this.contract.methods.addressOf(id).call();\n  }\n\n  /**\n   * Returns the address of a token with the given serial in the token registry.\n   *\n   * @async\n   * @example\n   * Prints the address of the token with the serial '2':\n   * ```typescript\n   * console.log(await entry(2));\n   * ```\n   *\n   * @param serial - The serial number of the token to be fetched.\n   * @return The address of the token with the specified serial number.\n   */\n  public async entry(serial: number): Promise {\n    return await this.contract.methods.entry(serial).call();\n  }\n\n  /**\n   * Returns the total number of tokens that have been registered in the network.\n   *\n   * @async\n   * @example\n   * Prints the total number of registered tokens:\n   * ```typescript\n   * console.log(await totalTokens());\n   * ```\n   *\n   * @returns The total number of registered tokens.\n   */\n  public async totalTokens(): Promise {\n    return await this.contract.methods.entryCount().call();\n  }\n}\n\n    \n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"injectables/TokenService.html":{"url":"injectables/TokenService.html","title":"injectable - TokenService","body":"\n                   \n\n\n\n\n\n\n\n\n  Injectables\n  TokenService\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_services/token.service.ts\n        \n\n\n\n\n            \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                LoadEvent\n                            \n                            \n                                registry\n                            \n                            \n                                tokenRegistry\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                    Async\n                                getTokenBalance\n                            \n                            \n                                getTokenBySymbol\n                            \n                            \n                                    Async\n                                getTokens\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n            \n    Constructor\n        \n            \n                \n                    \nconstructor(httpClient: HttpClient, registryService: RegistryService)\n                    \n                \n                        \n                            \n                                Defined in src/app/_services/token.service.ts:15\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        httpClient\n                                                  \n                                                        \n                                                                        HttpClient\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        registryService\n                                                  \n                                                        \n                                                                        RegistryService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            getTokenBalance\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    getTokenBalance(address: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/token.service.ts:38\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    address\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getTokenBySymbol\n                        \n                        \n                    \n                \n            \n            \n                \ngetTokenBySymbol(symbol: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/token.service.ts:34\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    symbol\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Observable\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            getTokens\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    getTokens()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/token.service.ts:29\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Promise>>\n\n                    \n                \n            \n        \n    \n\n            \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            LoadEvent\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     EventEmitter\n\n                        \n                    \n                    \n                        \n                            Default value : new EventEmitter()\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_services/token.service.ts:15\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            registry\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     CICRegistry\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_services/token.service.ts:13\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            tokenRegistry\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         TokenRegistry\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_services/token.service.ts:14\n                            \n                        \n\n\n            \n        \n\n\n    \n\n\n    \n        import { EventEmitter, Injectable } from '@angular/core';\nimport {environment} from '@src/environments/environment';\nimport {BehaviorSubject, Observable} from 'rxjs';\nimport {CICRegistry} from 'cic-client';\nimport {TokenRegistry} from '@app/_eth';\nimport {HttpClient} from '@angular/common/http';\nimport {RegistryService} from '@app/_services/registry.service';\n\n@Injectable({\n  providedIn: 'root'\n})\nexport class TokenService {\n  registry: CICRegistry;\n  tokenRegistry: TokenRegistry;\n  LoadEvent: EventEmitter = new EventEmitter();\n\n  constructor(\n    private httpClient: HttpClient,\n    private registryService: RegistryService,\n  ) {\n    this.registry = registryService.getRegistry();\n    this.registry.load();\n    this.registry.onload = async (address: string): Promise => {\n      this.tokenRegistry = new TokenRegistry(await this.registry.getContractAddressByName('TokenRegistry'));\n      this.LoadEvent.next(Date.now());\n    };\n  }\n\n  async getTokens(): Promise>> {\n    const count: number = await this.tokenRegistry.totalTokens();\n    return Array.from({length: count}, async (v, i) => await this.tokenRegistry.entry(i));\n  }\n\n  getTokenBySymbol(symbol: string): Observable {\n    return this.httpClient.get(`${environment.cicCacheUrl}/tokens/${symbol}`);\n  }\n\n  async getTokenBalance(address: string): Promise {\n    const sarafuToken = await this.registry.addToken(await this.tokenRegistry.entry(0));\n    return await sarafuToken.methods.balanceOf(address).call();\n  }\n}\n\n    \n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"classes/TokenServiceStub.html":{"url":"classes/TokenServiceStub.html","title":"class - TokenServiceStub","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n  Classes\n  TokenServiceStub\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/testing/token-service-stub.ts\n        \n\n\n\n\n\n            \n    Index\n    \n        \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                getBySymbol\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getBySymbol\n                        \n                        \n                    \n                \n            \n            \n                \ngetBySymbol(symbol: string)\n                \n            \n\n\n            \n                \n                    Defined in src/testing/token-service-stub.ts:2\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    symbol\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         any\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n\n\n\n\n\n    \n\n\n    \n        export class TokenServiceStub {\n  getBySymbol(symbol: string): any {\n    return {\n      name: 'Reserve',\n      symbol: 'RSV'\n    };\n  }\n}\n\n    \n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"components/TokensComponent.html":{"url":"components/TokensComponent.html","title":"component - TokensComponent","body":"\n                   \n\n\n\n\n\n  Components\n  TokensComponent\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n        \n            Template\n        \n        \n            Styles\n        \n        \n            DOM Tree\n        \n\n\n\n    \n    File\n\n\n    src/app/pages/tokens/tokens.component.ts\n\n\n\n\n    \n        Implements\n    \n    \n                    OnInit\n    \n\n\n\n    Metadata\n    \n        \n\n            \n                changeDetection\n                ChangeDetectionStrategy.OnPush\n            \n\n\n\n\n\n\n\n\n\n\n            \n                selector\n                app-tokens\n            \n\n            \n                styleUrls\n                ./tokens.component.scss\n            \n\n\n\n            \n                templateUrl\n                ./tokens.component.html\n            \n\n\n\n\n\n\n\n\n        \n    \n\n\n    \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                columnsToDisplay\n                            \n                            \n                                dataSource\n                            \n                            \n                                paginator\n                            \n                            \n                                sort\n                            \n                            \n                                tokens\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                doFilter\n                            \n                            \n                                downloadCsv\n                            \n                            \n                                    Async\n                                ngOnInit\n                            \n                            \n                                    Async\n                                viewToken\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n    \n    Constructor\n        \n            \n                \n                    \nconstructor(tokenService: TokenService, loggingService: LoggingService, router: Router)\n                    \n                \n                        \n                            \n                                Defined in src/app/pages/tokens/tokens.component.ts:22\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        tokenService\n                                                  \n                                                        \n                                                                        TokenService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        loggingService\n                                                  \n                                                        \n                                                                        LoggingService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        router\n                                                  \n                                                        \n                                                                        Router\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n\n\n\n\n    \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            doFilter\n                        \n                        \n                    \n                \n            \n            \n                \ndoFilter(value: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/tokens/tokens.component.ts:41\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    value\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            downloadCsv\n                        \n                        \n                    \n                \n            \n            \n                \ndownloadCsv()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/tokens/tokens.component.ts:49\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            ngOnInit\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    ngOnInit()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/tokens/tokens.component.ts:30\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Promise\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            viewToken\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    viewToken(token)\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/tokens/tokens.component.ts:45\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Optional\n                                \n                            \n                            \n                                \n                                    token\n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n    \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            columnsToDisplay\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     Array\n\n                        \n                    \n                    \n                        \n                            Default value : ['name', 'symbol', 'address', 'supply']\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/tokens/tokens.component.ts:19\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            dataSource\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     MatTableDataSource\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/tokens/tokens.component.ts:18\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            paginator\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     MatPaginator\n\n                        \n                    \n                    \n                        \n                            Decorators : \n                            \n                            \n                                @ViewChild(MatPaginator)\n                            \n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/tokens/tokens.component.ts:20\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            sort\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     MatSort\n\n                        \n                    \n                    \n                        \n                            Decorators : \n                            \n                            \n                                @ViewChild(MatSort)\n                            \n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/tokens/tokens.component.ts:21\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            tokens\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     Array>\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/tokens/tokens.component.ts:22\n                            \n                        \n\n\n            \n        \n\n\n\n\n\n    \n        import {ChangeDetectionStrategy, Component, OnInit, ViewChild} from '@angular/core';\nimport {MatPaginator} from '@angular/material/paginator';\nimport {MatSort} from '@angular/material/sort';\nimport {LoggingService, TokenService} from '@app/_services';\nimport {MatTableDataSource} from '@angular/material/table';\nimport {Router} from '@angular/router';\nimport {exportCsv} from '@app/_helpers';\nimport {TokenRegistry} from '../../_eth';\nimport {Token} from '../../_models';\n\n@Component({\n  selector: 'app-tokens',\n  templateUrl: './tokens.component.html',\n  styleUrls: ['./tokens.component.scss'],\n  changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class TokensComponent implements OnInit {\n  dataSource: MatTableDataSource;\n  columnsToDisplay: Array = ['name', 'symbol', 'address', 'supply'];\n  @ViewChild(MatPaginator) paginator: MatPaginator;\n  @ViewChild(MatSort) sort: MatSort;\n  tokens: Array>;\n\n  constructor(\n    private tokenService: TokenService,\n    private loggingService: LoggingService,\n    private router: Router\n  ) { }\n\n  async ngOnInit(): Promise {\n    this.tokenService.LoadEvent.subscribe(async () => {\n      this.tokens = await this.tokenService.getTokens();\n    });\n    this.tokens = await this.tokenService.getTokens();\n    this.loggingService.sendInfoLevelMessage(this.tokens);\n    this.dataSource = new MatTableDataSource(this.tokens);\n    this.dataSource.paginator = this.paginator;\n    this.dataSource.sort = this.sort;\n  }\n\n  doFilter(value: string): void {\n    this.dataSource.filter = value.trim().toLocaleLowerCase();\n  }\n\n  async viewToken(token): Promise {\n    await this.router.navigateByUrl(`/tokens/${token.symbol}`);\n  }\n\n  downloadCsv(): void {\n    exportCsv(this.tokens, 'tokens');\n  }\n}\n\n    \n\n    \n        \n\n  \n\n  \n  \n  \n\n  \n    \n    \n    \n      \n        \n          Home\n          Tokens\n        \n      \n      \n        \n          \n            Tokens\n             EXPORT \n          \n        \n        \n          \n             Filter \n            \n            search\n          \n\n          \n            \n               Name \n               {{token.name}} \n            \n\n            \n               Symbol \n               {{token.symbol}} \n            \n\n            \n               Address \n               {{token.address}} \n            \n\n            \n               Supply \n               {{token.supply | tokenRatio}} \n            \n\n            \n            \n          \n\n          \n        \n      \n    \n    \n  \n  \n  \n  \n\n\n\n    \n\n    \n                \n                    ./tokens.component.scss\n                \n                \n    \n\n    \n        \n        \n            \n                Legend\n            \n            \n                Html element\n            \n            \n                Component\n            \n            \n                Html element with directive\n            \n        \n    \n\n    \n\n\n\n\n\n\n        var COMPONENT_TEMPLATE = '                                              Home          Tokens                                                  Tokens             EXPORT                                                  Filter                         search                                               Name                {{token.name}}                                        Symbol                {{token.symbol}}                                        Address                {{token.address}}                                        Supply                {{token.supply | tokenRatio}}                                                                                       '\n    var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n    var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[routerLink]'}];\n    var ACTUAL_COMPONENT = {'name': 'TokensComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"modules/TokensModule.html":{"url":"modules/TokensModule.html","title":"module - TokensModule","body":"\n                   \n\n\n\n\n    Modules\n    TokensModule\n\n\n\n    \n        \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_TokensModule\n\n\n\ncluster_TokensModule_imports\n\n\n\ncluster_TokensModule_declarations\n\n\n\n\nTokenDetailsComponent\n\nTokenDetailsComponent\n\n\n\nTokensModule\n\nTokensModule\n\nTokensModule -->\n\nTokenDetailsComponent->TokensModule\n\n\n\n\n\nTokensComponent\n\nTokensComponent\n\nTokensModule -->\n\nTokensComponent->TokensModule\n\n\n\n\n\nSharedModule\n\nSharedModule\n\nTokensModule -->\n\nSharedModule->TokensModule\n\n\n\n\n\nTokensRoutingModule\n\nTokensRoutingModule\n\nTokensModule -->\n\nTokensRoutingModule->TokensModule\n\n\n\n\n\n\n    \n    \n    \n        Zoom in\n        Reset\n        Zoom out\n    \n\n\n\n\n\n    \n        Info\n    \n    \n        Source\n    \n\n\n\n    \n\n        \n            File\n        \n        \n            src/app/pages/tokens/tokens.module.ts\n        \n\n\n\n\n        \n            \n                \n                    Declarations\n                    \n                        \n                            TokenDetailsComponent\n                        \n                        \n                            TokensComponent\n                        \n                    \n                \n                \n                    Imports\n                    \n                        \n                            SharedModule\n                        \n                        \n                            TokensRoutingModule\n                        \n                    \n                \n            \n        \n\n\n    \n\n\n    \n        import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { TokensRoutingModule } from '@pages/tokens/tokens-routing.module';\nimport { TokensComponent } from '@pages/tokens/tokens.component';\nimport { TokenDetailsComponent } from '@pages/tokens/token-details/token-details.component';\nimport {SharedModule} from '@app/shared/shared.module';\nimport {MatTableModule} from '@angular/material/table';\nimport {MatPaginatorModule} from '@angular/material/paginator';\nimport {MatSortModule} from '@angular/material/sort';\nimport {MatPseudoCheckboxModule, MatRippleModule} from '@angular/material/core';\nimport {MatCheckboxModule} from '@angular/material/checkbox';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatSidenavModule} from '@angular/material/sidenav';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatToolbarModule} from '@angular/material/toolbar';\nimport {MatCardModule} from '@angular/material/card';\n\n\n@NgModule({\n  declarations: [TokensComponent, TokenDetailsComponent],\n    imports: [\n        CommonModule,\n        TokensRoutingModule,\n        SharedModule,\n        MatTableModule,\n        MatPaginatorModule,\n        MatSortModule,\n        MatPseudoCheckboxModule,\n        MatCheckboxModule,\n        MatInputModule,\n        MatFormFieldModule,\n        MatIconModule,\n        MatSidenavModule,\n        MatButtonModule,\n        MatToolbarModule,\n        MatCardModule,\n        MatRippleModule\n    ]\n})\nexport class TokensModule { }\n\n    \n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"modules/TokensRoutingModule.html":{"url":"modules/TokensRoutingModule.html","title":"module - TokensRoutingModule","body":"\n                   \n\n\n\n\n    Modules\n    TokensRoutingModule\n\n\n\n\n    \n        Info\n    \n    \n        Source\n    \n\n\n\n    \n\n        \n            File\n        \n        \n            src/app/pages/tokens/tokens-routing.module.ts\n        \n\n\n\n\n        \n            \n            \n        \n\n\n    \n\n\n    \n        import { NgModule } from '@angular/core';\nimport { Routes, RouterModule } from '@angular/router';\n\nimport { TokensComponent } from '@pages/tokens/tokens.component';\nimport {TokenDetailsComponent} from '@pages/tokens/token-details/token-details.component';\n\nconst routes: Routes = [\n  { path: '', component: TokensComponent },\n  { path: ':id', component: TokenDetailsComponent },\n];\n\n@NgModule({\n  imports: [RouterModule.forChild(routes)],\n  exports: [RouterModule]\n})\nexport class TokensRoutingModule { }\n\n    \n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"components/TopbarComponent.html":{"url":"components/TopbarComponent.html","title":"component - TopbarComponent","body":"\n                   \n\n\n\n\n\n  Components\n  TopbarComponent\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n        \n            Template\n        \n        \n            Styles\n        \n        \n            DOM Tree\n        \n\n\n\n    \n    File\n\n\n    src/app/shared/topbar/topbar.component.ts\n\n\n\n\n    \n        Implements\n    \n    \n                    OnInit\n    \n\n\n\n    Metadata\n    \n        \n\n            \n                changeDetection\n                ChangeDetectionStrategy.OnPush\n            \n\n\n\n\n\n\n\n\n\n\n            \n                selector\n                app-topbar\n            \n\n            \n                styleUrls\n                ./topbar.component.scss\n            \n\n\n\n            \n                templateUrl\n                ./topbar.component.html\n            \n\n\n\n\n\n\n\n\n        \n    \n\n\n    \n    Index\n    \n        \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                ngOnInit\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n    \n    Constructor\n        \n            \n                \n                    \nconstructor()\n                    \n                \n                        \n                            \n                                Defined in src/app/shared/topbar/topbar.component.ts:9\n                            \n                        \n\n            \n        \n\n\n\n\n\n\n    \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            ngOnInit\n                        \n                        \n                    \n                \n            \n            \n                \nngOnInit()\n                \n            \n\n\n            \n                \n                    Defined in src/app/shared/topbar/topbar.component.ts:13\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n\n\n\n\n\n    \n        import {ChangeDetectionStrategy, Component, OnInit} from '@angular/core';\n\n@Component({\n  selector: 'app-topbar',\n  templateUrl: './topbar.component.html',\n  styleUrls: ['./topbar.component.scss'],\n  changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class TopbarComponent implements OnInit {\n\n  constructor() { }\n\n  ngOnInit(): void {\n  }\n\n}\n\n    \n\n    \n        \n\n  \n    \n      \n      \n      \n    \n  \n\n\n\n    \n\n    \n                \n                    ./topbar.component.scss\n                \n                \n    \n\n    \n        \n        \n            \n                Legend\n            \n            \n                Html element\n            \n            \n                Component\n            \n            \n                Html element with directive\n            \n        \n    \n\n    \n\n\n\n\n\n\n        var COMPONENT_TEMPLATE = '                              '\n    var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n    var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[routerLink]'}];\n    var ACTUAL_COMPONENT = {'name': 'TopbarComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"components/TopbarStubComponent.html":{"url":"components/TopbarStubComponent.html","title":"component - TopbarStubComponent","body":"\n                   \n\n\n\n\n\n  Components\n  TopbarStubComponent\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n        \n            DOM Tree\n        \n\n\n\n    \n    File\n\n\n    src/testing/shared-module-stub.ts\n\n\n\n\n\n\n\n    Metadata\n    \n        \n\n\n\n\n\n\n\n\n\n\n\n            \n                selector\n                app-topbar\n            \n\n\n\n\n\n\n\n\n\n\n\n\n        \n    \n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n        import {Component} from '@angular/core';\n\n@Component({selector: 'app-sidebar', template: ''})\nexport class SidebarStubComponent {}\n\n@Component({selector: 'app-topbar', template: ''})\nexport class TopbarStubComponent {}\n\n@Component({selector: 'app-footer', template: ''})\nexport class FooterStubComponent {}\n\n    \n\n\n\n    \n        \n        \n            \n                Legend\n            \n            \n                Html element\n            \n            \n                Component\n            \n            \n                Html element with directive\n            \n        \n    \n\n    \n\n\n\n\n\n\n        var COMPONENT_TEMPLATE = ''\n    var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n    var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[routerLink]'}];\n    var ACTUAL_COMPONENT = {'name': 'TopbarStubComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"classes/Transaction.html":{"url":"classes/Transaction.html","title":"class - Transaction","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n  Classes\n  Transaction\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_models/transaction.ts\n        \n\n\n\n\n\n            \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                from\n                            \n                            \n                                recipient\n                            \n                            \n                                sender\n                            \n                            \n                                to\n                            \n                            \n                                token\n                            \n                            \n                                tx\n                            \n                            \n                                    Optional\n                                type\n                            \n                            \n                                value\n                            \n                        \n                    \n                \n\n\n\n\n\n\n        \n    \n\n\n\n            \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            from\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:26\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            recipient\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         AccountDetails\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:29\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            sender\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         AccountDetails\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:27\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            to\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:28\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            token\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         TxToken\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:30\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            tx\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         Tx\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:31\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                                Optional\n                            type\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:33\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            value\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         number\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:32\n                            \n                        \n\n\n            \n        \n\n\n\n\n\n\n\n\n    \n\n\n    \n        import {AccountDetails} from '@app/_models/account';\n\nclass BlocksBloom {\n  low: number;\n  blockFilter: string;\n  blocktxFilter: string;\n  alg: string;\n  filterRounds: number;\n}\n\nclass TxToken {\n  address: string;\n  name: string;\n  symbol: string;\n}\n\nclass Tx {\n  block: number;\n  success: boolean;\n  timestamp: number;\n  txHash: string;\n  txIndex: number;\n}\n\nclass Transaction {\n  from: string;\n  sender: AccountDetails;\n  to: string;\n  recipient: AccountDetails;\n  token: TxToken;\n  tx: Tx;\n  value: number;\n  type?: string;\n}\n\nclass Conversion {\n  destinationToken: TxToken;\n  fromValue: number;\n  sourceToken: TxToken;\n  toValue: number;\n  trader: string;\n  user: AccountDetails;\n  tx: Tx;\n}\n\nexport {\n  BlocksBloom,\n  TxToken,\n  Tx,\n  Transaction,\n  Conversion\n};\n\n    \n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"components/TransactionDetailsComponent.html":{"url":"components/TransactionDetailsComponent.html","title":"component - TransactionDetailsComponent","body":"\n                   \n\n\n\n\n\n  Components\n  TransactionDetailsComponent\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n        \n            Template\n        \n        \n            Styles\n        \n        \n            DOM Tree\n        \n\n\n\n    \n    File\n\n\n    src/app/pages/transactions/transaction-details/transaction-details.component.ts\n\n\n\n\n    \n        Implements\n    \n    \n                    OnInit\n    \n\n\n\n    Metadata\n    \n        \n\n            \n                changeDetection\n                ChangeDetectionStrategy.OnPush\n            \n\n\n\n\n\n\n\n\n\n\n            \n                selector\n                app-transaction-details\n            \n\n            \n                styleUrls\n                ./transaction-details.component.scss\n            \n\n\n\n            \n                templateUrl\n                ./transaction-details.component.html\n            \n\n\n\n\n\n\n\n\n        \n    \n\n\n    \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                recipientBloxbergLink\n                            \n                            \n                                senderBloxbergLink\n                            \n                            \n                                traderBloxbergLink\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                copyAddress\n                            \n                            \n                                ngOnInit\n                            \n                            \n                                    Async\n                                reverseTransaction\n                            \n                            \n                                    Async\n                                viewRecipient\n                            \n                            \n                                    Async\n                                viewSender\n                            \n                            \n                                    Async\n                                viewTrader\n                            \n                        \n                    \n                \n\n                \n                    \n                        Inputs\n                    \n                \n                \n                    \n                        \n                            \n                                transaction\n                            \n                        \n                    \n                \n\n\n\n\n        \n    \n\n\n    \n    Constructor\n        \n            \n                \n                    \nconstructor(router: Router, transactionService: TransactionService, snackBar: MatSnackBar)\n                    \n                \n                        \n                            \n                                Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:18\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        router\n                                                  \n                                                        \n                                                                        Router\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        transactionService\n                                                  \n                                                        \n                                                                        TransactionService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        snackBar\n                                                  \n                                                        \n                                                                    MatSnackBar\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n    \n    Inputs\n        \n            \n                \n                    \n                        \n                        transaction\n                    \n                \n                        \n                            \n                                    Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:15\n                            \n                        \n            \n        \n\n\n\n\n    \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            copyAddress\n                        \n                        \n                    \n                \n            \n            \n                \ncopyAddress(address: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:56\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    address\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            ngOnInit\n                        \n                        \n                    \n                \n            \n            \n                \nngOnInit()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:26\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            reverseTransaction\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    reverseTransaction()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:47\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Promise\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            viewRecipient\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    viewRecipient()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:39\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Promise\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            viewSender\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    viewSender()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:35\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Promise\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            viewTrader\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    viewTrader()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:43\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Promise\n\n                    \n                \n            \n        \n    \n\n    \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            recipientBloxbergLink\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:17\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            senderBloxbergLink\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:16\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            traderBloxbergLink\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:18\n                            \n                        \n\n\n            \n        \n\n\n\n\n\n    \n        import {ChangeDetectionStrategy, Component, Input, OnInit} from '@angular/core';\nimport {Router} from '@angular/router';\nimport {TransactionService} from '@app/_services';\nimport {copyToClipboard} from '@app/_helpers';\nimport {MatSnackBar} from '@angular/material/snack-bar';\nimport {strip0x} from '@src/assets/js/ethtx/dist/hex';\n\n@Component({\n  selector: 'app-transaction-details',\n  templateUrl: './transaction-details.component.html',\n  styleUrls: ['./transaction-details.component.scss'],\n  changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class TransactionDetailsComponent implements OnInit {\n  @Input() transaction;\n  senderBloxbergLink: string;\n  recipientBloxbergLink: string;\n  traderBloxbergLink: string;\n\n  constructor(\n    private router: Router,\n    private transactionService: TransactionService,\n    private snackBar: MatSnackBar,\n  ) { }\n\n  ngOnInit(): void {\n    if (this.transaction?.type === 'conversion') {\n      this.traderBloxbergLink = 'https://blockexplorer.bloxberg.org/address/' + this.transaction?.trader + '/transactions';\n    } else {\n      this.senderBloxbergLink = 'https://blockexplorer.bloxberg.org/address/' + this.transaction?.from + '/transactions';\n      this.recipientBloxbergLink = 'https://blockexplorer.bloxberg.org/address/' + this.transaction?.to + '/transactions';\n    }\n  }\n\n  async viewSender(): Promise {\n    await this.router.navigateByUrl(`/accounts/${strip0x(this.transaction.from)}`);\n  }\n\n  async viewRecipient(): Promise {\n    await this.router.navigateByUrl(`/accounts/${strip0x(this.transaction.to)}`);\n  }\n\n  async viewTrader(): Promise {\n    await this.router.navigateByUrl(`/accounts/${strip0x(this.transaction.trader)}`);\n  }\n\n  async reverseTransaction(): Promise {\n    await this.transactionService.transferRequest(\n      this.transaction.token.address,\n      this.transaction.to,\n      this.transaction.from,\n      this.transaction.value\n    );\n  }\n\n  copyAddress(address: string): void {\n    if (copyToClipboard(address)) {\n      this.snackBar.open(address + ' copied successfully!', 'Close', { duration: 3000 });\n    }\n  }\n}\n\n    \n\n    \n        \n  \n    \n      \n        TRANSACTION DETAILS\n         CLOSE \n      \n    \n    \n      \n        \n          Exchange: \n          \n            \n              Sender: {{transaction.sender?.vcard.fn[0].value}}\n              \n                Sender Address:\n                 {{transaction.from}} \n                \n              \n              View Sender\n            \n            \n              Recipient: {{transaction.recipient?.vcard.fn[0].value}}\n              \n                Recipient Address:\n                 {{transaction.to}} \n                \n              \n              View Recipient\n            \n            \n              Amount: SRF {{transaction.value | tokenRatio}}\n            \n          \n          Token: \n          \n            \n              \n                Address:\n                {{transaction.token._address}}\n                \n              \n            \n            \n              Name: Sarafu Token\n            \n            \n              Symbol: SRF\n            \n          \n        \n        \n          Transaction: \n          \n            \n              Block: {{transaction.tx.block}}\n            \n            \n              Index: {{transaction.tx.txIndex}}\n            \n            \n              Hash: {{transaction.tx.txHash}}\n            \n            \n              Success: {{transaction.tx.success}}\n            \n            \n              Timestamp: {{transaction.tx.timestamp | date}}\n            \n          \n          \n            Resend SMS\n          \n          \n            Reverse Transaction\n          \n        \n      \n    \n    \n      Exchange: \n      \n        \n          Trader: {{transaction.sender?.vcard.fn[0].value}}\n        \n        \n          \n            Trader Address:\n             {{transaction.trader}} \n            \n          \n        \n      \n      View Trader\n      \n      \n        \n          Source Token: \n          \n            \n              \n                Address:\n                {{transaction.sourceToken.address}}\n                \n              \n            \n            \n              Name: {{transaction.sourceToken.name}}\n            \n            \n              Symbol: {{transaction.sourceToken.symbol}}\n            \n            \n              Amount: {{transaction.sourceToken.symbol + ' ' + transaction.fromValue}}\n            \n          \n        \n        \n          Destination Token: \n          \n            \n              \n                Address:\n                {{transaction.destinationToken.address}}\n                \n              \n            \n            \n              Name: {{transaction.destinationToken.name}}\n            \n            \n              Symbol: {{transaction.destinationToken.symbol}}\n            \n            \n              Amount: {{transaction.destinationToken.symbol + ' ' + transaction.toValue}}\n            \n          \n        \n        \n          Resend SMS\n        \n        \n          Reverse Transaction\n        \n      \n    \n  \n\n\n    \n\n    \n                \n                    ./transaction-details.component.scss\n                \n                \n    \n\n    \n        \n        \n            \n                Legend\n            \n            \n                Html element\n            \n            \n                Component\n            \n            \n                Html element with directive\n            \n        \n    \n\n    \n\n\n\n\n\n\n        var COMPONENT_TEMPLATE = '                    TRANSACTION DETAILS         CLOSE                                       Exchange:                                     Sender: {{transaction.sender?.vcard.fn[0].value}}                              Sender Address:                 {{transaction.from}}                                             View Sender                                      Recipient: {{transaction.recipient?.vcard.fn[0].value}}                              Recipient Address:                 {{transaction.to}}                                             View Recipient                                      Amount: SRF {{transaction.value | tokenRatio}}                                Token:                                                     Address:                {{transaction.token._address}}                                                                    Name: Sarafu Token                                      Symbol: SRF                                                Transaction:                                     Block: {{transaction.tx.block}}                                      Index: {{transaction.tx.txIndex}}                                      Hash: {{transaction.tx.txHash}}                                      Success: {{transaction.tx.success}}                                      Timestamp: {{transaction.tx.timestamp | date}}                                            Resend SMS                                Reverse Transaction                                      Exchange:                         Trader: {{transaction.sender?.vcard.fn[0].value}}                                      Trader Address:             {{transaction.trader}}                                           View Trader                              Source Token:                                                     Address:                {{transaction.sourceToken.address}}                                                                    Name: {{transaction.sourceToken.name}}                                      Symbol: {{transaction.sourceToken.symbol}}                                      Amount: {{transaction.sourceToken.symbol + \\' \\' + transaction.fromValue}}                                                Destination Token:                                                     Address:                {{transaction.destinationToken.address}}                                                                    Name: {{transaction.destinationToken.name}}                                      Symbol: {{transaction.destinationToken.symbol}}                                      Amount: {{transaction.destinationToken.symbol + \\' \\' + transaction.toValue}}                                                Resend SMS                          Reverse Transaction                    '\n    var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n    var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[routerLink]'}];\n    var ACTUAL_COMPONENT = {'name': 'TransactionDetailsComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"injectables/TransactionService.html":{"url":"injectables/TransactionService.html","title":"injectable - TransactionService","body":"\n                   \n\n\n\n\n\n\n\n\n  Injectables\n  TransactionService\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_services/transaction.service.ts\n        \n\n\n\n\n            \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                registry\n                            \n                            \n                                    Private\n                                transactionList\n                            \n                            \n                                transactions\n                            \n                            \n                                transactionsSubject\n                            \n                            \n                                userInfo\n                            \n                            \n                                web3\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                addTransaction\n                            \n                            \n                                getAccountInfo\n                            \n                            \n                                getAddressTransactions\n                            \n                            \n                                getAllTransactions\n                            \n                            \n                                resetTransactionsList\n                            \n                            \n                                    Async\n                                setConversion\n                            \n                            \n                                    Async\n                                setTransaction\n                            \n                            \n                                    Async\n                                transferRequest\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n            \n    Constructor\n        \n            \n                \n                    \nconstructor(httpClient: HttpClient, authService: AuthService, userService: UserService, loggingService: LoggingService, registryService: RegistryService)\n                    \n                \n                        \n                            \n                                Defined in src/app/_services/transaction.service.ts:31\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        httpClient\n                                                  \n                                                        \n                                                                        HttpClient\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        authService\n                                                  \n                                                        \n                                                                        AuthService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        userService\n                                                  \n                                                        \n                                                                        UserService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        loggingService\n                                                  \n                                                        \n                                                                        LoggingService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        registryService\n                                                  \n                                                        \n                                                                        RegistryService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            addTransaction\n                        \n                        \n                    \n                \n            \n            \n                \naddTransaction(transaction, cacheSize: number)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/transaction.service.ts:89\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    transaction\n                                    \n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    cacheSize\n                                    \n                                                number\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getAccountInfo\n                        \n                        \n                    \n                \n            \n            \n                \ngetAccountInfo(account: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/transaction.service.ts:102\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    account\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         any\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getAddressTransactions\n                        \n                        \n                    \n                \n            \n            \n                \ngetAddressTransactions(address: string, offset: number, limit: number)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/transaction.service.ts:49\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    address\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    offset\n                                    \n                                                number\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    limit\n                                    \n                                                number\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Observable\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getAllTransactions\n                        \n                        \n                    \n                \n            \n            \n                \ngetAllTransactions(offset: number, limit: number)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/transaction.service.ts:45\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    offset\n                                    \n                                                number\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    limit\n                                    \n                                                number\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Observable\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            resetTransactionsList\n                        \n                        \n                    \n                \n            \n            \n                \nresetTransactionsList()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/transaction.service.ts:97\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            setConversion\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    setConversion(conversion, cacheSize)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/transaction.service.ts:73\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Optional\n                                \n                            \n                            \n                                \n                                    conversion\n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    cacheSize\n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            setTransaction\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    setTransaction(transaction, cacheSize: number)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/transaction.service.ts:53\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    transaction\n                                    \n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    cacheSize\n                                    \n                                                number\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            transferRequest\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    transferRequest(tokenAddress: string, senderAddress: string, recipientAddress: string, value: number)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/transaction.service.ts:108\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    tokenAddress\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    senderAddress\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    recipientAddress\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    value\n                                    \n                                                number\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n            \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            registry\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     CICRegistry\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_services/transaction.service.ts:31\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                                Private\n                            transactionList\n                            \n                        \n                    \n                \n                    \n                        \n                            Default value : new BehaviorSubject(this.transactions)\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_services/transaction.service.ts:27\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            transactions\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     any[]\n\n                        \n                    \n                    \n                        \n                            Default value : []\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_services/transaction.service.ts:26\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            transactionsSubject\n                            \n                        \n                    \n                \n                    \n                        \n                            Default value : this.transactionList.asObservable()\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_services/transaction.service.ts:28\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            userInfo\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         any\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_services/transaction.service.ts:29\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            web3\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     Web3\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_services/transaction.service.ts:30\n                            \n                        \n\n\n            \n        \n\n\n    \n\n\n    \n        import { Injectable } from '@angular/core';\nimport {first} from 'rxjs/operators';\nimport {BehaviorSubject, Observable} from 'rxjs';\nimport {environment} from '@src/environments/environment';\nimport {Envelope, User} from 'cic-client-meta';\nimport {UserService} from '@app/_services/user.service';\nimport { Keccak } from 'sha3';\nimport { utils } from 'ethers';\nimport {add0x, fromHex, strip0x, toHex} from '@src/assets/js/ethtx/dist/hex';\nimport {Tx} from '@src/assets/js/ethtx/dist';\nimport {toValue} from '@src/assets/js/ethtx/dist/tx';\nimport * as secp256k1 from 'secp256k1';\nimport {AuthService} from '@app/_services/auth.service';\nimport {defaultAccount} from '@app/_models';\nimport {LoggingService} from '@app/_services/logging.service';\nimport {HttpClient} from '@angular/common/http';\nimport {CICRegistry} from 'cic-client';\nimport {RegistryService} from '@app/_services/registry.service';\nimport Web3 from 'web3';\nconst vCard = require('vcard-parser');\n\n@Injectable({\n  providedIn: 'root'\n})\nexport class TransactionService {\n  transactions: any[] = [];\n  private transactionList = new BehaviorSubject(this.transactions);\n  transactionsSubject = this.transactionList.asObservable();\n  userInfo: any;\n  web3: Web3;\n  registry: CICRegistry;\n\n  constructor(\n    private httpClient: HttpClient,\n    private authService: AuthService,\n    private userService: UserService,\n    private loggingService: LoggingService,\n    private registryService: RegistryService,\n  ) {\n    this.web3 = this.registryService.getWeb3();\n    this.registry = registryService.getRegistry();\n    this.registry.load();\n  }\n\n  getAllTransactions(offset: number, limit: number): Observable {\n    return this.httpClient.get(`${environment.cicCacheUrl}/tx/${offset}/${limit}`);\n  }\n\n  getAddressTransactions(address: string, offset: number, limit: number): Observable {\n    return this.httpClient.get(`${environment.cicCacheUrl}/tx/${address}/${offset}/${limit}`);\n  }\n\n  async setTransaction(transaction, cacheSize: number): Promise {\n    if (this.transactions.find(cachedTx => cachedTx.tx.txHash === transaction.tx.txHash)) { return; }\n    transaction.value = Number(transaction.value);\n    transaction.type = 'transaction';\n    try {\n      this.userService.getAccountDetailsFromMeta(await User.toKey(transaction.from)).pipe(first()).subscribe((res) => {\n        transaction.sender = this.getAccountInfo(res.body);\n      }, error => {\n        transaction.sender = defaultAccount;\n      });\n      this.userService.getAccountDetailsFromMeta(await User.toKey(transaction.to)).pipe(first()).subscribe((res) => {\n        transaction.recipient = this.getAccountInfo(res.body);\n      }, error => {\n        transaction.recipient = defaultAccount;\n      });\n    } finally {\n      this.addTransaction(transaction, cacheSize);\n    }\n  }\n\n  async setConversion(conversion, cacheSize): Promise {\n    if (this.transactions.find(cachedTx => cachedTx.tx.txHash === conversion.tx.txHash)) { return; }\n    conversion.type = 'conversion';\n    conversion.fromValue = Number(conversion.fromValue);\n    conversion.toValue = Number(conversion.toValue);\n    try {\n      this.userService.getAccountDetailsFromMeta(await User.toKey(conversion.trader)).pipe(first()).subscribe((res) => {\n        conversion.sender = conversion.recipient = this.getAccountInfo(res.body);\n      }, error => {\n        conversion.sender = conversion.recipient = defaultAccount;\n      });\n    } finally {\n      this.addTransaction(conversion, cacheSize);\n    }\n  }\n\n  addTransaction(transaction, cacheSize: number): void {\n    this.transactions.unshift(transaction);\n    if (this.transactions.length > cacheSize) {\n      this.transactions.length = cacheSize;\n    }\n    this.transactionList.next(this.transactions);\n  }\n\n  resetTransactionsList(): void {\n    this.transactions = [];\n    this.transactionList.next(this.transactions);\n  }\n\n  getAccountInfo(account: string): any {\n    let accountInfo = Envelope.fromJSON(JSON.stringify(account)).unwrap().m.data;\n    accountInfo.vcard = vCard.parse(atob(accountInfo.vcard));\n    return accountInfo;\n  }\n\n  async transferRequest(tokenAddress: string, senderAddress: string, recipientAddress: string, value: number): Promise {\n    const transferAuthAddress = await this.registry.getContractAddressByName('TransferAuthorization');\n    const hashFunction = new Keccak(256);\n    hashFunction.update('createRequest(address,address,address,uint256)');\n    const hash = hashFunction.digest();\n    const methodSignature = hash.toString('hex').substring(0, 8);\n    const abiCoder = new utils.AbiCoder();\n    const abi = await abiCoder.encode(['address', 'address', 'address', 'uint256'], [senderAddress, recipientAddress, tokenAddress, value]);\n    const data = fromHex(methodSignature + strip0x(abi));\n    const tx = new Tx(environment.bloxbergChainId);\n    tx.nonce = await this.web3.eth.getTransactionCount(senderAddress);\n    tx.gasPrice = Number(await this.web3.eth.getGasPrice());\n    tx.gasLimit = 8000000;\n    tx.to = fromHex(strip0x(transferAuthAddress));\n    tx.value = toValue(value);\n    tx.data = data;\n    const txMsg = tx.message();\n    const privateKey =  this.authService.mutableKeyStore.getPrivateKey();\n    if (!privateKey.isDecrypted()) {\n      const password = window.prompt('password');\n      await privateKey.decrypt(password);\n    }\n    const signatureObject = secp256k1.ecdsaSign(txMsg, privateKey.keyPacket.privateParams.d);\n    const r = signatureObject.signature.slice(0, 32);\n    const s = signatureObject.signature.slice(32);\n    const v = signatureObject.recid;\n    tx.setSignature(r, s, v);\n    const txWire = add0x(toHex(tx.serializeRLP()));\n    const result = await this.web3.eth.sendSignedTransaction(txWire);\n    this.loggingService.sendInfoLevelMessage(`Result: ${result}`);\n    const transaction = await this.web3.eth.getTransaction(result.transactionHash);\n    this.loggingService.sendInfoLevelMessage(`Transaction: ${transaction}`);\n  }\n}\n\n    \n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"classes/TransactionServiceStub.html":{"url":"classes/TransactionServiceStub.html","title":"class - TransactionServiceStub","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n  Classes\n  TransactionServiceStub\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/testing/transaction-service-stub.ts\n        \n\n\n\n\n\n            \n    Index\n    \n        \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                getAllTransactions\n                            \n                            \n                                setConversion\n                            \n                            \n                                setTransaction\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getAllTransactions\n                        \n                        \n                    \n                \n            \n            \n                \ngetAllTransactions(offset: number, limit: number)\n                \n            \n\n\n            \n                \n                    Defined in src/testing/transaction-service-stub.ts:8\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    offset\n                                    \n                                                number\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    limit\n                                    \n                                                number\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Observable\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            setConversion\n                        \n                        \n                    \n                \n            \n            \n                \nsetConversion(conversion: any)\n                \n            \n\n\n            \n                \n                    Defined in src/testing/transaction-service-stub.ts:6\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    conversion\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            setTransaction\n                        \n                        \n                    \n                \n            \n            \n                \nsetTransaction(transaction: any, cacheSize: number)\n                \n            \n\n\n            \n                \n                    Defined in src/testing/transaction-service-stub.ts:4\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    transaction\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    cacheSize\n                                    \n                                                number\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n\n\n\n\n\n    \n\n\n    \n        import {Observable, of} from 'rxjs';\n\nexport class TransactionServiceStub {\n  setTransaction(transaction: any, cacheSize: number): void {}\n\n  setConversion(conversion: any): void {}\n\n  getAllTransactions(offset: number, limit: number): Observable {\n    return of('Hello World');\n  }\n}\n\n    \n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"components/TransactionsComponent.html":{"url":"components/TransactionsComponent.html","title":"component - TransactionsComponent","body":"\n                   \n\n\n\n\n\n  Components\n  TransactionsComponent\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n        \n            Template\n        \n        \n            Styles\n        \n        \n            DOM Tree\n        \n\n\n\n    \n    File\n\n\n    src/app/pages/transactions/transactions.component.ts\n\n\n\n\n    \n        Implements\n    \n    \n                    OnInit\n                    AfterViewInit\n    \n\n\n\n    Metadata\n    \n        \n\n            \n                changeDetection\n                ChangeDetectionStrategy.OnPush\n            \n\n\n\n\n\n\n\n\n\n\n            \n                selector\n                app-transactions\n            \n\n            \n                styleUrls\n                ./transactions.component.scss\n            \n\n\n\n            \n                templateUrl\n                ./transactions.component.html\n            \n\n\n\n\n\n\n\n\n        \n    \n\n\n    \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                defaultPageSize\n                            \n                            \n                                pageSizeOptions\n                            \n                            \n                                paginator\n                            \n                            \n                                sort\n                            \n                            \n                                transaction\n                            \n                            \n                                transactionDataSource\n                            \n                            \n                                transactionDisplayedColumns\n                            \n                            \n                                transactions\n                            \n                            \n                                transactionsType\n                            \n                            \n                                transactionsTypes\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                doFilter\n                            \n                            \n                                downloadCsv\n                            \n                            \n                                filterTransactions\n                            \n                            \n                                ngAfterViewInit\n                            \n                            \n                                ngOnInit\n                            \n                            \n                                viewTransaction\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n    \n    Constructor\n        \n            \n                \n                    \nconstructor(blockSyncService: BlockSyncService, transactionService: TransactionService, userService: UserService)\n                    \n                \n                        \n                            \n                                Defined in src/app/pages/transactions/transactions.component.ts:27\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        blockSyncService\n                                                  \n                                                        \n                                                                        BlockSyncService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        transactionService\n                                                  \n                                                        \n                                                                        TransactionService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        userService\n                                                  \n                                                        \n                                                                        UserService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n\n\n\n\n    \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            doFilter\n                        \n                        \n                    \n                \n            \n            \n                \ndoFilter(value: string, dataSource)\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/transactions/transactions.component.ts:51\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    value\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    dataSource\n                                    \n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            downloadCsv\n                        \n                        \n                    \n                \n            \n            \n                \ndownloadCsv()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/transactions/transactions.component.ts:71\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            filterTransactions\n                        \n                        \n                    \n                \n            \n            \n                \nfilterTransactions()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/transactions/transactions.component.ts:55\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            ngAfterViewInit\n                        \n                        \n                    \n                \n            \n            \n                \nngAfterViewInit()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/transactions/transactions.component.ts:66\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            ngOnInit\n                        \n                        \n                    \n                \n            \n            \n                \nngOnInit()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/transactions/transactions.component.ts:37\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            viewTransaction\n                        \n                        \n                    \n                \n            \n            \n                \nviewTransaction(transaction)\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/transactions/transactions.component.ts:47\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Optional\n                                \n                            \n                            \n                                \n                                    transaction\n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n    \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            defaultPageSize\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         number\n\n                        \n                    \n                    \n                        \n                            Default value : 10\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/transactions/transactions.component.ts:19\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            pageSizeOptions\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     Array\n\n                        \n                    \n                    \n                        \n                            Default value : [10, 20, 50, 100]\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/transactions/transactions.component.ts:20\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            paginator\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     MatPaginator\n\n                        \n                    \n                    \n                        \n                            Decorators : \n                            \n                            \n                                @ViewChild(MatPaginator)\n                            \n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/transactions/transactions.component.ts:26\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            sort\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     MatSort\n\n                        \n                    \n                    \n                        \n                            Decorators : \n                            \n                            \n                                @ViewChild(MatSort)\n                            \n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/transactions/transactions.component.ts:27\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            transaction\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         Transaction\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/transactions/transactions.component.ts:22\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            transactionDataSource\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     MatTableDataSource\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/transactions/transactions.component.ts:17\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            transactionDisplayedColumns\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     Array\n\n                        \n                    \n                    \n                        \n                            Default value : ['sender', 'recipient', 'value', 'created', 'type']\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/transactions/transactions.component.ts:18\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            transactions\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         Array\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/transactions/transactions.component.ts:21\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            transactionsType\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                    \n                        \n                            Default value : 'all'\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/transactions/transactions.component.ts:23\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            transactionsTypes\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     Array\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/transactions/transactions.component.ts:24\n                            \n                        \n\n\n            \n        \n\n\n\n\n\n    \n        import {AfterViewInit, ChangeDetectionStrategy, Component, OnInit, ViewChild} from '@angular/core';\nimport {BlockSyncService, TransactionService, UserService} from '@app/_services';\nimport {MatTableDataSource} from '@angular/material/table';\nimport {MatPaginator} from '@angular/material/paginator';\nimport {MatSort} from '@angular/material/sort';\nimport {exportCsv} from '@app/_helpers';\nimport {first} from 'rxjs/operators';\nimport {Transaction} from '@app/_models';\n\n@Component({\n  selector: 'app-transactions',\n  templateUrl: './transactions.component.html',\n  styleUrls: ['./transactions.component.scss'],\n  changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class TransactionsComponent implements OnInit, AfterViewInit {\n  transactionDataSource: MatTableDataSource;\n  transactionDisplayedColumns: Array = ['sender', 'recipient', 'value', 'created', 'type'];\n  defaultPageSize: number = 10;\n  pageSizeOptions: Array = [10, 20, 50, 100];\n  transactions: Array;\n  transaction: Transaction;\n  transactionsType: string = 'all';\n  transactionsTypes: Array;\n\n  @ViewChild(MatPaginator) paginator: MatPaginator;\n  @ViewChild(MatSort) sort: MatSort;\n\n  constructor(\n    private blockSyncService: BlockSyncService,\n    private transactionService: TransactionService,\n    private userService: UserService\n  ) {\n    this.blockSyncService.blockSync();\n  }\n\n  ngOnInit(): void {\n    this.transactionService.transactionsSubject.subscribe(transactions => {\n      this.transactionDataSource = new MatTableDataSource(transactions);\n      this.transactionDataSource.paginator = this.paginator;\n      this.transactionDataSource.sort = this.sort;\n      this.transactions = transactions;\n    });\n    this.userService.getTransactionTypes().pipe(first()).subscribe(res => this.transactionsTypes = res);\n  }\n\n  viewTransaction(transaction): void {\n    this.transaction = transaction;\n  }\n\n  doFilter(value: string, dataSource): void {\n    dataSource.filter = value.trim().toLocaleLowerCase();\n  }\n\n  filterTransactions(): void {\n    if (this.transactionsType === 'all') {\n      this.transactionService.transactionsSubject.subscribe(transactions => {\n        this.transactionDataSource.data = transactions;\n        this.transactions = transactions;\n      });\n    } else {\n      this.transactionDataSource.data = this.transactions.filter(transaction => transaction.type === this.transactionsType);\n    }\n  }\n\n  ngAfterViewInit(): void {\n    this.transactionDataSource.paginator = this.paginator;\n    this.transactionDataSource.sort = this.sort;\n  }\n\n  downloadCsv(): void {\n    exportCsv(this.transactions, 'transactions');\n  }\n}\n\n    \n\n    \n        \n\n  \n\n  \n  \n  \n\n  \n    \n    \n    \n      \n        \n          Home\n          Transactions\n        \n      \n      \n        \n          Transfers\n        \n        \n\n          \n\n          \n            \n               TRANSFER TYPE \n              \n                ALL TRANSFERS\n                \n                  {{transactionType | uppercase}}\n                \n              \n            \n             EXPORT \n          \n\n          \n             Filter \n            \n            search\n          \n\n          \n\n            \n               Sender \n               {{transaction?.sender?.vcard.fn[0].value}} \n            \n\n            \n               Recipient \n               {{transaction?.recipient?.vcard.fn[0].value}} \n            \n\n            \n               Value \n              \n                {{transaction?.value | tokenRatio}}\n                {{transaction?.toValue | tokenRatio}}\n              \n            \n\n            \n               Created \n               {{transaction?.tx.timestamp | date}} \n            \n\n            \n               TYPE \n              \n                 {{transaction?.type}} \n              \n            \n\n            \n            \n          \n\n          \n\n        \n      \n    \n    \n  \n  \n  \n  \n\n\n\n\n    \n\n    \n                \n                    ./transactions.component.scss\n                \n                \n    \n\n    \n        \n        \n            \n                Legend\n            \n            \n                Html element\n            \n            \n                Component\n            \n            \n                Html element with directive\n            \n        \n    \n\n    \n\n\n\n\n\n\n        var COMPONENT_TEMPLATE = '                                              Home          Transactions                                      Transfers                                                               TRANSFER TYPE                               ALL TRANSFERS                                  {{transactionType | uppercase}}                                                       EXPORT                                  Filter                         search                                               Sender                {{transaction?.sender?.vcard.fn[0].value}}                                        Recipient                {{transaction?.recipient?.vcard.fn[0].value}}                                        Value                               {{transaction?.value | tokenRatio}}                {{transaction?.toValue | tokenRatio}}                                                     Created                {{transaction?.tx.timestamp | date}}                                        TYPE                                {{transaction?.type}}                                                                                                     '\n    var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n    var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[routerLink]'}];\n    var ACTUAL_COMPONENT = {'name': 'TransactionsComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"modules/TransactionsModule.html":{"url":"modules/TransactionsModule.html","title":"module - TransactionsModule","body":"\n                   \n\n\n\n\n    Modules\n    TransactionsModule\n\n\n\n    \n        \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_TransactionsModule\n\n\n\ncluster_TransactionsModule_imports\n\n\n\ncluster_TransactionsModule_exports\n\n\n\ncluster_TransactionsModule_declarations\n\n\n\n\nTransactionDetailsComponent\n\nTransactionDetailsComponent\n\n\n\nTransactionsModule\n\nTransactionsModule\n\nTransactionsModule -->\n\nTransactionDetailsComponent->TransactionsModule\n\n\n\n\n\nTransactionsComponent\n\nTransactionsComponent\n\nTransactionsModule -->\n\nTransactionsComponent->TransactionsModule\n\n\n\n\n\nTransactionDetailsComponent \n\nTransactionDetailsComponent \n\nTransactionDetailsComponent  -->\n\nTransactionsModule->TransactionDetailsComponent \n\n\n\n\n\nSharedModule\n\nSharedModule\n\nTransactionsModule -->\n\nSharedModule->TransactionsModule\n\n\n\n\n\nTransactionsRoutingModule\n\nTransactionsRoutingModule\n\nTransactionsModule -->\n\nTransactionsRoutingModule->TransactionsModule\n\n\n\n\n\n\n    \n    \n    \n        Zoom in\n        Reset\n        Zoom out\n    \n\n\n\n\n\n    \n        Info\n    \n    \n        Source\n    \n\n\n\n    \n\n        \n            File\n        \n        \n            src/app/pages/transactions/transactions.module.ts\n        \n\n\n\n\n        \n            \n                \n                    Declarations\n                    \n                        \n                            TransactionDetailsComponent\n                        \n                        \n                            TransactionsComponent\n                        \n                    \n                \n                \n                    Imports\n                    \n                        \n                            SharedModule\n                        \n                        \n                            TransactionsRoutingModule\n                        \n                    \n                \n                \n                    Exports\n                    \n                        \n                            TransactionDetailsComponent\n                        \n                    \n                \n            \n        \n\n\n    \n\n\n    \n        import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { TransactionsRoutingModule } from '@pages/transactions/transactions-routing.module';\nimport { TransactionsComponent } from '@pages/transactions/transactions.component';\nimport { TransactionDetailsComponent } from '@pages/transactions/transaction-details/transaction-details.component';\nimport {DataTablesModule} from 'angular-datatables';\nimport {SharedModule} from '@app/shared/shared.module';\nimport {MatTableModule} from '@angular/material/table';\nimport {MatCheckboxModule} from '@angular/material/checkbox';\nimport {MatPaginatorModule} from '@angular/material/paginator';\nimport {MatSortModule} from '@angular/material/sort';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatCardModule} from '@angular/material/card';\nimport {MatRippleModule} from '@angular/material/core';\nimport {MatSnackBarModule} from '@angular/material/snack-bar';\n\n\n@NgModule({\n  declarations: [TransactionsComponent, TransactionDetailsComponent],\n  exports: [\n    TransactionDetailsComponent\n  ],\n    imports: [\n        CommonModule,\n        TransactionsRoutingModule,\n        DataTablesModule,\n        SharedModule,\n        MatTableModule,\n        MatCheckboxModule,\n        MatPaginatorModule,\n        MatSortModule,\n        MatFormFieldModule,\n        MatInputModule,\n        MatButtonModule,\n        MatIconModule,\n        MatSelectModule,\n        MatCardModule,\n        MatRippleModule,\n      MatSnackBarModule,\n    ]\n})\nexport class TransactionsModule { }\n\n    \n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"modules/TransactionsRoutingModule.html":{"url":"modules/TransactionsRoutingModule.html","title":"module - TransactionsRoutingModule","body":"\n                   \n\n\n\n\n    Modules\n    TransactionsRoutingModule\n\n\n\n\n    \n        Info\n    \n    \n        Source\n    \n\n\n\n    \n\n        \n            File\n        \n        \n            src/app/pages/transactions/transactions-routing.module.ts\n        \n\n\n\n\n        \n            \n            \n        \n\n\n    \n\n\n    \n        import { NgModule } from '@angular/core';\nimport { Routes, RouterModule } from '@angular/router';\n\nimport { TransactionsComponent } from '@pages/transactions/transactions.component';\n\nconst routes: Routes = [{ path: '', component: TransactionsComponent }];\n\n@NgModule({\n  imports: [RouterModule.forChild(routes)],\n  exports: [RouterModule]\n})\nexport class TransactionsRoutingModule { }\n\n    \n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"classes/Tx.html":{"url":"classes/Tx.html","title":"class - Tx","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n  Classes\n  Tx\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_models/transaction.ts\n        \n\n\n\n\n\n            \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                block\n                            \n                            \n                                success\n                            \n                            \n                                timestamp\n                            \n                            \n                                txHash\n                            \n                            \n                                txIndex\n                            \n                        \n                    \n                \n\n\n\n\n\n\n        \n    \n\n\n\n            \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            block\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         number\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:18\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            success\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         boolean\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:19\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            timestamp\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         number\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:20\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            txHash\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:21\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            txIndex\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         number\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:22\n                            \n                        \n\n\n            \n        \n\n\n\n\n\n\n\n\n    \n\n\n    \n        import {AccountDetails} from '@app/_models/account';\n\nclass BlocksBloom {\n  low: number;\n  blockFilter: string;\n  blocktxFilter: string;\n  alg: string;\n  filterRounds: number;\n}\n\nclass TxToken {\n  address: string;\n  name: string;\n  symbol: string;\n}\n\nclass Tx {\n  block: number;\n  success: boolean;\n  timestamp: number;\n  txHash: string;\n  txIndex: number;\n}\n\nclass Transaction {\n  from: string;\n  sender: AccountDetails;\n  to: string;\n  recipient: AccountDetails;\n  token: TxToken;\n  tx: Tx;\n  value: number;\n  type?: string;\n}\n\nclass Conversion {\n  destinationToken: TxToken;\n  fromValue: number;\n  sourceToken: TxToken;\n  toValue: number;\n  trader: string;\n  user: AccountDetails;\n  tx: Tx;\n}\n\nexport {\n  BlocksBloom,\n  TxToken,\n  Tx,\n  Transaction,\n  Conversion\n};\n\n    \n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"classes/TxToken.html":{"url":"classes/TxToken.html","title":"class - TxToken","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n  Classes\n  TxToken\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_models/transaction.ts\n        \n\n\n\n\n\n            \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                address\n                            \n                            \n                                name\n                            \n                            \n                                symbol\n                            \n                        \n                    \n                \n\n\n\n\n\n\n        \n    \n\n\n\n            \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            address\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:12\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            name\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:13\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            symbol\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:14\n                            \n                        \n\n\n            \n        \n\n\n\n\n\n\n\n\n    \n\n\n    \n        import {AccountDetails} from '@app/_models/account';\n\nclass BlocksBloom {\n  low: number;\n  blockFilter: string;\n  blocktxFilter: string;\n  alg: string;\n  filterRounds: number;\n}\n\nclass TxToken {\n  address: string;\n  name: string;\n  symbol: string;\n}\n\nclass Tx {\n  block: number;\n  success: boolean;\n  timestamp: number;\n  txHash: string;\n  txIndex: number;\n}\n\nclass Transaction {\n  from: string;\n  sender: AccountDetails;\n  to: string;\n  recipient: AccountDetails;\n  token: TxToken;\n  tx: Tx;\n  value: number;\n  type?: string;\n}\n\nclass Conversion {\n  destinationToken: TxToken;\n  fromValue: number;\n  sourceToken: TxToken;\n  toValue: number;\n  trader: string;\n  user: AccountDetails;\n  tx: Tx;\n}\n\nexport {\n  BlocksBloom,\n  TxToken,\n  Tx,\n  Transaction,\n  Conversion\n};\n\n    \n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"classes/UserServiceStub.html":{"url":"classes/UserServiceStub.html","title":"class - UserServiceStub","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n  Classes\n  UserServiceStub\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/testing/user-service-stub.ts\n        \n\n\n\n\n\n            \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                actions\n                            \n                            \n                                users\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                approveAction\n                            \n                            \n                                getActionById\n                            \n                            \n                                getUser\n                            \n                            \n                                getUserById\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n\n            \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            actions\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     []\n\n                        \n                    \n                    \n                        \n                            Default value : [\n    { id: 1, user: 'Tom', role: 'enroller', action: 'Disburse RSV 100', approval: false },\n    { id: 2, user: 'Christine', role: 'admin', action: 'Change user phone number', approval: true },\n    { id: 3, user: 'Will', role: 'superadmin', action: 'Reclaim RSV 1000', approval: true },\n    { id: 4, user: 'Vivian', role: 'enroller', action: 'Complete user profile', approval: true },\n    { id: 5, user: 'Jack', role: 'enroller', action: 'Reclaim RSV 200', approval: false },\n    { id: 6, user: 'Patience', role: 'enroller', action: 'Change user information', approval: false }\n  ]\n                        \n                    \n                        \n                            \n                                    Defined in src/testing/user-service-stub.ts:12\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            users\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     []\n\n                        \n                    \n                    \n                        \n                            Default value : [\n    {id: 1, name: 'John Doe', phone: '+25412345678', address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865', type: 'user', created: '08/16/2020', balance: '12987', failedPinAttempts: 1, status: 'approved', bio: 'Bodaboda', gender: 'male'},\n    {id: 2, name: 'Jane Buck', phone: '+25412341234', address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865', type: 'vendor', created: '04/02/2020', balance: '56281', failedPinAttempts: 0, status: 'approved', bio: 'Groceries', gender: 'female'},\n    {id: 3, name: 'Mc Donald', phone: '+25498765432', address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865', type: 'group', created: '11/16/2020', balance: '450', failedPinAttempts: 2, status: 'unapproved', bio: 'Food', gender: 'male'},\n    {id: 4, name: 'Hera Cles', phone: '+25498769876', address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865', type: 'user', created: '05/28/2020', balance: '5621', failedPinAttempts: 3, status: 'approved', bio: 'Shop', gender: 'female'},\n    {id: 5, name: 'Silver Fia', phone: '+25462518374', address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865', type: 'token agent', created: '10/10/2020', balance: '817', failedPinAttempts: 0, status: 'unapproved', bio: 'Electronics', gender: 'male'},\n  ]\n                        \n                    \n                        \n                            \n                                    Defined in src/testing/user-service-stub.ts:4\n                            \n                        \n\n\n            \n        \n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            approveAction\n                        \n                        \n                    \n                \n            \n            \n                \napproveAction(id: number)\n                \n            \n\n\n            \n                \n                    Defined in src/testing/user-service-stub.ts:71\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    id\n                                    \n                                                number\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         any\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getActionById\n                        \n                        \n                    \n                \n            \n            \n                \ngetActionById(id: string)\n                \n            \n\n\n            \n                \n                    Defined in src/testing/user-service-stub.ts:61\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    id\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         any\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getUser\n                        \n                        \n                    \n                \n            \n            \n                \ngetUser(userKey: string)\n                \n            \n\n\n            \n                \n                    Defined in src/testing/user-service-stub.ts:37\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    userKey\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Observable\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getUserById\n                        \n                        \n                    \n                \n            \n            \n                \ngetUserById(id: string)\n                \n            \n\n\n            \n                \n                    Defined in src/testing/user-service-stub.ts:21\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    id\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         any\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n\n\n\n\n\n    \n\n\n    \n        import {Observable, of} from 'rxjs';\n\nexport class UserServiceStub {\n  users = [\n    {id: 1, name: 'John Doe', phone: '+25412345678', address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865', type: 'user', created: '08/16/2020', balance: '12987', failedPinAttempts: 1, status: 'approved', bio: 'Bodaboda', gender: 'male'},\n    {id: 2, name: 'Jane Buck', phone: '+25412341234', address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865', type: 'vendor', created: '04/02/2020', balance: '56281', failedPinAttempts: 0, status: 'approved', bio: 'Groceries', gender: 'female'},\n    {id: 3, name: 'Mc Donald', phone: '+25498765432', address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865', type: 'group', created: '11/16/2020', balance: '450', failedPinAttempts: 2, status: 'unapproved', bio: 'Food', gender: 'male'},\n    {id: 4, name: 'Hera Cles', phone: '+25498769876', address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865', type: 'user', created: '05/28/2020', balance: '5621', failedPinAttempts: 3, status: 'approved', bio: 'Shop', gender: 'female'},\n    {id: 5, name: 'Silver Fia', phone: '+25462518374', address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865', type: 'token agent', created: '10/10/2020', balance: '817', failedPinAttempts: 0, status: 'unapproved', bio: 'Electronics', gender: 'male'},\n  ];\n\n  actions = [\n    { id: 1, user: 'Tom', role: 'enroller', action: 'Disburse RSV 100', approval: false },\n    { id: 2, user: 'Christine', role: 'admin', action: 'Change user phone number', approval: true },\n    { id: 3, user: 'Will', role: 'superadmin', action: 'Reclaim RSV 1000', approval: true },\n    { id: 4, user: 'Vivian', role: 'enroller', action: 'Complete user profile', approval: true },\n    { id: 5, user: 'Jack', role: 'enroller', action: 'Reclaim RSV 200', approval: false },\n    { id: 6, user: 'Patience', role: 'enroller', action: 'Change user information', approval: false }\n  ];\n\n  getUserById(id: string): any {\n    return {\n      id: 1,\n      name: 'John Doe',\n      phone: '+25412345678',\n      address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865',\n      type: 'user',\n      created: '08/16/2020',\n      balance: '12987',\n      failedPinAttempts: 1,\n      status: 'approved',\n      bio: 'Bodaboda',\n      gender: 'male'\n    };\n  }\n\n  getUser(userKey: string): Observable {\n    console.log('Here');\n    return of({\n      dateRegistered: 1595537208,\n      key: {\n        ethereum: [\n          '0x51d3c8e2e421604e2b644117a362d589c5434739',\n          '0x9D7c284907acbd4a0cE2dDD0AA69147A921a573D'\n        ]\n      },\n      location: {\n        external: {},\n        latitude: '22.430670',\n        longitude: '151.002995'\n      },\n      selling: [\n        'environment',\n        'health',\n        'transport'\n      ],\n      vcard: 'QkVHSU46VkNBUkQNClZFUlNJT046My4wDQpFTUFJTDphYXJuZXNlbkBob3RtYWlsLmNvbQ0KRk46S3VydMKgS3JhbmpjDQpOOktyYW5qYztLdXJ0Ozs7DQpURUw7VFlQPUNFTEw6NjkyNTAzMzQ5ODE5Ng0KRU5EOlZDQVJEDQo='\n    });\n  }\n\n  getActionById(id: string): any {\n    return {\n      id: 1,\n      user: 'Tom',\n      role: 'enroller',\n      action: 'Disburse RSV 100',\n      approval: false\n    };\n  }\n\n  approveAction(id: number): any {\n    return {\n      id: 1,\n      user: 'Tom',\n      role: 'enroller',\n      action: 'Disburse RSV 100',\n      approval: true\n    };\n  }\n}\n\n    \n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"classes/W3.html":{"url":"classes/W3.html","title":"class - W3","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n  Classes\n  W3\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_models/settings.ts\n        \n\n\n\n\n\n            \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                engine\n                            \n                            \n                                provider\n                            \n                        \n                    \n                \n\n\n\n\n\n\n        \n    \n\n\n\n            \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            engine\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         any\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/settings.ts:16\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            provider\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         any\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/settings.ts:17\n                            \n                        \n\n\n            \n        \n\n\n\n\n\n\n\n\n    \n\n\n    \n        class Settings {\n  w3: W3 = {\n    engine: undefined,\n    provider: undefined,\n  };\n  scanFilter: any;\n  registry: any;\n  txHelper: any;\n\n  constructor(scanFilter: any) {\n    this.scanFilter = scanFilter;\n  }\n}\n\nclass W3 {\n  engine: any;\n  provider: any;\n}\n\nexport {\n  Settings,\n  W3\n};\n\n    \n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"coverage.html":{"url":"coverage.html","title":"coverage - coverage","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n    Documentation coverage\n\n\n\n    \n\n\n\n    \n        \n            File\n            Type\n            Identifier\n            Statements\n        \n    \n    \n        \n            \n                \n                src/app/_eth/accountIndex.ts\n            \n            class\n            AccountIndex\n            \n                100 %\n                (9/9)\n            \n        \n        \n            \n                \n                src/app/_eth/accountIndex.ts\n            \n            variable\n            abi\n            \n                100 %\n                (1/1)\n            \n        \n        \n            \n                \n                src/app/_eth/accountIndex.ts\n            \n            variable\n            web3\n            \n                100 %\n                (1/1)\n            \n        \n        \n            \n                \n                src/app/_eth/token-registry.ts\n            \n            class\n            TokenRegistry\n            \n                100 %\n                (8/8)\n            \n        \n        \n            \n                \n                src/app/_eth/token-registry.ts\n            \n            variable\n            abi\n            \n                100 %\n                (1/1)\n            \n        \n        \n            \n                \n                src/app/_eth/token-registry.ts\n            \n            variable\n            web3\n            \n                100 %\n                (1/1)\n            \n        \n        \n            \n                \n                src/app/_guards/auth.guard.ts\n            \n            guard\n            AuthGuard\n            \n                100 %\n                (3/3)\n            \n        \n        \n            \n                \n                src/app/_guards/role.guard.ts\n            \n            guard\n            RoleGuard\n            \n                100 %\n                (3/3)\n            \n        \n        \n            \n                \n                src/app/_helpers/array-sum.ts\n            \n            function\n            arraySum\n            \n                0 %\n                (0/1)\n            \n        \n        \n            \n                \n                src/app/_helpers/clipboard-copy.ts\n            \n            function\n            copyToClipboard\n            \n                0 %\n                (0/1)\n            \n        \n        \n            \n                \n                src/app/_helpers/custom-error-state-matcher.ts\n            \n            class\n            CustomErrorStateMatcher\n            \n                0 %\n                (0/2)\n            \n        \n        \n            \n                \n                src/app/_helpers/custom.validator.ts\n            \n            class\n            CustomValidator\n            \n                0 %\n                (0/3)\n            \n        \n        \n            \n                \n                src/app/_helpers/export-csv.ts\n            \n            function\n            exportCsv\n            \n                0 %\n                (0/1)\n            \n        \n        \n            \n                \n                src/app/_helpers/export-csv.ts\n            \n            function\n            removeSpecialChar\n            \n                0 %\n                (0/1)\n            \n        \n        \n            \n                \n                src/app/_helpers/global-error-handler.ts\n            \n            class\n            HttpError\n            \n                0 %\n                (0/3)\n            \n        \n        \n            \n                \n                src/app/_helpers/global-error-handler.ts\n            \n            injectable\n            GlobalErrorHandler\n            \n                0 %\n                (0/6)\n            \n        \n        \n            \n                \n                src/app/_helpers/http-getter.ts\n            \n            function\n            HttpGetter\n            \n                0 %\n                (0/1)\n            \n        \n        \n            \n                \n                src/app/_helpers/mock-backend.ts\n            \n            interceptor\n            MockBackendInterceptor\n            \n                0 %\n                (0/2)\n            \n        \n        \n            \n                \n                src/app/_helpers/mock-backend.ts\n            \n            variable\n            accountTypes\n            \n                0 %\n                (0/1)\n            \n        \n        \n            \n                \n                src/app/_helpers/mock-backend.ts\n            \n            variable\n            actions\n            \n                0 %\n                (0/1)\n            \n        \n        \n            \n                \n                src/app/_helpers/mock-backend.ts\n            \n            variable\n            areaNames\n            \n                0 %\n                (0/1)\n            \n        \n        \n            \n                \n                src/app/_helpers/mock-backend.ts\n            \n            variable\n            areaTypes\n            \n                0 %\n                (0/1)\n            \n        \n        \n            \n                \n                src/app/_helpers/mock-backend.ts\n            \n            variable\n            categories\n            \n                0 %\n                (0/1)\n            \n        \n        \n            \n                \n                src/app/_helpers/mock-backend.ts\n            \n            variable\n            genders\n            \n                0 %\n                (0/1)\n            \n        \n        \n            \n                \n                src/app/_helpers/mock-backend.ts\n            \n            variable\n            MockBackendProvider\n            \n                0 %\n                (0/1)\n            \n        \n        \n            \n                \n                src/app/_helpers/mock-backend.ts\n            \n            variable\n            tokens\n            \n                0 %\n                (0/1)\n            \n        \n        \n            \n                \n                src/app/_helpers/mock-backend.ts\n            \n            variable\n            transactionTypes\n            \n                0 %\n                (0/1)\n            \n        \n        \n            \n                \n                src/app/_helpers/read-csv.ts\n            \n            function\n            parseData\n            \n                0 %\n                (0/1)\n            \n        \n        \n            \n                \n                src/app/_helpers/read-csv.ts\n            \n            function\n            readCsv\n            \n                0 %\n                (0/1)\n            \n        \n        \n            \n                \n                src/app/_helpers/read-csv.ts\n            \n            variable\n            objCsv\n            \n                0 %\n                (0/1)\n            \n        \n        \n            \n                \n                src/app/_helpers/schema-validation.ts\n            \n            function\n            personValidation\n            \n                0 %\n                (0/1)\n            \n        \n        \n            \n                \n                src/app/_helpers/schema-validation.ts\n            \n            function\n            vcardValidation\n            \n                0 %\n                (0/1)\n            \n        \n        \n            \n                \n                src/app/_interceptors/error.interceptor.ts\n            \n            interceptor\n            ErrorInterceptor\n            \n                0 %\n                (0/3)\n            \n        \n        \n            \n                \n                src/app/_interceptors/http-config.interceptor.ts\n            \n            interceptor\n            HttpConfigInterceptor\n            \n                0 %\n                (0/3)\n            \n        \n        \n            \n                \n                src/app/_interceptors/logging.interceptor.ts\n            \n            interceptor\n            LoggingInterceptor\n            \n                0 %\n                (0/3)\n            \n        \n        \n            \n                \n                src/app/_models/account.ts\n            \n            interface\n            AccountDetails\n            \n                0 %\n                (0/11)\n            \n        \n        \n            \n                \n                src/app/_models/account.ts\n            \n            interface\n            Meta\n            \n                0 %\n                (0/4)\n            \n        \n        \n            \n                \n                src/app/_models/account.ts\n            \n            interface\n            MetaResponse\n            \n                0 %\n                (0/3)\n            \n        \n        \n            \n                \n                src/app/_models/account.ts\n            \n            interface\n            Signature\n            \n                0 %\n                (0/5)\n            \n        \n        \n            \n                \n                src/app/_models/account.ts\n            \n            variable\n            defaultAccount\n            \n                0 %\n                (0/1)\n            \n        \n        \n            \n                \n                src/app/_models/mappings.ts\n            \n            interface\n            Action\n            \n                0 %\n                (0/6)\n            \n        \n        \n            \n                \n                src/app/_models/mappings.ts\n            \n            interface\n            AreaName\n            \n                0 %\n                (0/3)\n            \n        \n        \n            \n                \n                src/app/_models/mappings.ts\n            \n            interface\n            AreaType\n            \n                0 %\n                (0/3)\n            \n        \n        \n            \n                \n                src/app/_models/mappings.ts\n            \n            interface\n            Category\n            \n                0 %\n                (0/3)\n            \n        \n        \n            \n                \n                src/app/_models/settings.ts\n            \n            class\n            Settings\n            \n                0 %\n                (0/6)\n            \n        \n        \n            \n                \n                src/app/_models/settings.ts\n            \n            class\n            W3\n            \n                0 %\n                (0/3)\n            \n        \n        \n            \n                \n                src/app/_models/staff.ts\n            \n            interface\n            Staff\n            \n                0 %\n                (0/6)\n            \n        \n        \n            \n                \n                src/app/_models/token.ts\n            \n            interface\n            Token\n            \n                0 %\n                (0/9)\n            \n        \n        \n            \n                \n                src/app/_models/transaction.ts\n            \n            class\n            BlocksBloom\n            \n                0 %\n                (0/6)\n            \n        \n        \n            \n                \n                src/app/_models/transaction.ts\n            \n            class\n            Conversion\n            \n                0 %\n                (0/8)\n            \n        \n        \n            \n                \n                src/app/_models/transaction.ts\n            \n            class\n            Transaction\n            \n                0 %\n                (0/9)\n            \n        \n        \n            \n                \n                src/app/_models/transaction.ts\n            \n            class\n            Tx\n            \n                0 %\n                (0/6)\n            \n        \n        \n            \n                \n                src/app/_models/transaction.ts\n            \n            class\n            TxToken\n            \n                0 %\n                (0/4)\n            \n        \n        \n            \n                \n                src/app/_pgp/pgp-key-store.ts\n            \n            class\n            MutablePgpKeyStore\n            \n                0 %\n                (0/26)\n            \n        \n        \n            \n                \n                src/app/_pgp/pgp-key-store.ts\n            \n            interface\n            MutableKeyStore\n            \n                0 %\n                (0/26)\n            \n        \n        \n            \n                \n                src/app/_pgp/pgp-key-store.ts\n            \n            variable\n            keyring\n            \n                0 %\n                (0/1)\n            \n        \n        \n            \n                \n                src/app/_pgp/pgp-signer.ts\n            \n            class\n            PGPSigner\n            \n                0 %\n                (0/14)\n            \n        \n        \n            \n                \n                src/app/_pgp/pgp-signer.ts\n            \n            interface\n            Signable\n            \n                0 %\n                (0/2)\n            \n        \n        \n            \n                \n                src/app/_pgp/pgp-signer.ts\n            \n            interface\n            Signer\n            \n                0 %\n                (0/7)\n            \n        \n        \n            \n                \n                src/app/_pgp/pgp-signer.ts\n            \n            variable\n            openpgp\n            \n                0 %\n                (0/1)\n            \n        \n        \n            \n                \n                src/app/_services/auth.service.ts\n            \n            injectable\n            AuthService\n            \n                0 %\n                (0/18)\n            \n        \n        \n            \n                \n                src/app/_services/block-sync.service.ts\n            \n            injectable\n            BlockSyncService\n            \n                0 %\n                (0/10)\n            \n        \n        \n            \n                \n                src/app/_services/error-dialog.service.ts\n            \n            injectable\n            ErrorDialogService\n            \n                0 %\n                (0/5)\n            \n        \n        \n            \n                \n                src/app/_services/location.service.ts\n            \n            injectable\n            LocationService\n            \n                0 %\n                (0/6)\n            \n        \n        \n            \n                \n                src/app/_services/logging.service.ts\n            \n            injectable\n            LoggingService\n            \n                0 %\n                (0/11)\n            \n        \n        \n            \n                \n                src/app/_services/registry.service.ts\n            \n            injectable\n            RegistryService\n            \n                0 %\n                (0/7)\n            \n        \n        \n            \n                \n                src/app/_services/token.service.ts\n            \n            injectable\n            TokenService\n            \n                0 %\n                (0/8)\n            \n        \n        \n            \n                \n                src/app/_services/transaction.service.ts\n            \n            injectable\n            TransactionService\n            \n                0 %\n                (0/16)\n            \n        \n        \n            \n                \n                src/app/_services/transaction.service.ts\n            \n            variable\n            vCard\n            \n                0 %\n                (0/1)\n            \n        \n        \n            \n                \n                src/app/_services/user.service.ts\n            \n            injectable\n            UserService\n            \n                0 %\n                (0/33)\n            \n        \n        \n            \n                \n                src/app/_services/user.service.ts\n            \n            variable\n            vCard\n            \n                0 %\n                (0/1)\n            \n        \n        \n            \n                \n                src/app/app.component.ts\n            \n            component\n            AppComponent\n            \n                0 %\n                (0/9)\n            \n        \n        \n            \n                \n                src/app/auth/_directives/password-toggle.directive.ts\n            \n            directive\n            PasswordToggleDirective\n            \n                0 %\n                (0/5)\n            \n        \n        \n            \n                \n                src/app/auth/auth.component.ts\n            \n            component\n            AuthComponent\n            \n                0 %\n                (0/11)\n            \n        \n        \n            \n                \n                src/app/pages/accounts/account-details/account-details.component.ts\n            \n            component\n            AccountDetailsComponent\n            \n                0 %\n                (0/43)\n            \n        \n        \n            \n                \n                src/app/pages/accounts/account-search/account-search.component.ts\n            \n            component\n            AccountSearchComponent\n            \n                0 %\n                (0/16)\n            \n        \n        \n            \n                \n                src/app/pages/accounts/accounts.component.ts\n            \n            component\n            AccountsComponent\n            \n                0 %\n                (0/17)\n            \n        \n        \n            \n                \n                src/app/pages/accounts/create-account/create-account.component.ts\n            \n            component\n            CreateAccountComponent\n            \n                0 %\n                (0/11)\n            \n        \n        \n            \n                \n                src/app/pages/admin/admin.component.ts\n            \n            component\n            AdminComponent\n            \n                0 %\n                (0/15)\n            \n        \n        \n            \n                \n                src/app/pages/pages.component.ts\n            \n            component\n            PagesComponent\n            \n                0 %\n                (0/3)\n            \n        \n        \n            \n                \n                src/app/pages/settings/organization/organization.component.ts\n            \n            component\n            OrganizationComponent\n            \n                0 %\n                (0/7)\n            \n        \n        \n            \n                \n                src/app/pages/settings/settings.component.ts\n            \n            component\n            SettingsComponent\n            \n                0 %\n                (0/12)\n            \n        \n        \n            \n                \n                src/app/pages/tokens/token-details/token-details.component.ts\n            \n            component\n            TokenDetailsComponent\n            \n                0 %\n                (0/4)\n            \n        \n        \n            \n                \n                src/app/pages/tokens/tokens.component.ts\n            \n            component\n            TokensComponent\n            \n                0 %\n                (0/11)\n            \n        \n        \n            \n                \n                src/app/pages/transactions/transaction-details/transaction-details.component.ts\n            \n            component\n            TransactionDetailsComponent\n            \n                0 %\n                (0/12)\n            \n        \n        \n            \n                \n                src/app/pages/transactions/transactions.component.ts\n            \n            component\n            TransactionsComponent\n            \n                0 %\n                (0/18)\n            \n        \n        \n            \n                \n                src/app/shared/_directives/menu-selection.directive.ts\n            \n            directive\n            MenuSelectionDirective\n            \n                0 %\n                (0/3)\n            \n        \n        \n            \n                \n                src/app/shared/_directives/menu-toggle.directive.ts\n            \n            directive\n            MenuToggleDirective\n            \n                0 %\n                (0/3)\n            \n        \n        \n            \n                \n                src/app/shared/_pipes/safe.pipe.ts\n            \n            pipe\n            SafePipe\n            \n                0 %\n                (0/1)\n            \n        \n        \n            \n                \n                src/app/shared/_pipes/token-ratio.pipe.ts\n            \n            pipe\n            TokenRatioPipe\n            \n                0 %\n                (0/1)\n            \n        \n        \n            \n                \n                src/app/shared/error-dialog/error-dialog.component.ts\n            \n            component\n            ErrorDialogComponent\n            \n                0 %\n                (0/3)\n            \n        \n        \n            \n                \n                src/app/shared/footer/footer.component.ts\n            \n            component\n            FooterComponent\n            \n                0 %\n                (0/3)\n            \n        \n        \n            \n                \n                src/app/shared/sidebar/sidebar.component.ts\n            \n            component\n            SidebarComponent\n            \n                0 %\n                (0/3)\n            \n        \n        \n            \n                \n                src/app/shared/topbar/topbar.component.ts\n            \n            component\n            TopbarComponent\n            \n                0 %\n                (0/3)\n            \n        \n        \n            \n                \n                src/environments/environment.dev.ts\n            \n            variable\n            environment\n            \n                0 %\n                (0/1)\n            \n        \n        \n            \n                \n                src/environments/environment.prod.ts\n            \n            variable\n            environment\n            \n                0 %\n                (0/1)\n            \n        \n        \n            \n                \n                src/environments/environment.ts\n            \n            variable\n            environment\n            \n                0 %\n                (0/1)\n            \n        \n        \n            \n                \n                src/testing/activated-route-stub.ts\n            \n            class\n            ActivatedRouteStub\n            \n                60 %\n                (3/5)\n            \n        \n        \n            \n                \n                src/testing/router-link-directive-stub.ts\n            \n            directive\n            RouterLinkDirectiveStub\n            \n                0 %\n                (0/4)\n            \n        \n        \n            \n                \n                src/testing/shared-module-stub.ts\n            \n            component\n            FooterStubComponent\n            \n                0 %\n                (0/1)\n            \n        \n        \n            \n                \n                src/testing/shared-module-stub.ts\n            \n            component\n            SidebarStubComponent\n            \n                0 %\n                (0/1)\n            \n        \n        \n            \n                \n                src/testing/shared-module-stub.ts\n            \n            component\n            TopbarStubComponent\n            \n                0 %\n                (0/1)\n            \n        \n        \n            \n                \n                src/testing/token-service-stub.ts\n            \n            class\n            TokenServiceStub\n            \n                0 %\n                (0/2)\n            \n        \n        \n            \n                \n                src/testing/transaction-service-stub.ts\n            \n            class\n            TransactionServiceStub\n            \n                0 %\n                (0/4)\n            \n        \n        \n            \n                \n                src/testing/user-service-stub.ts\n            \n            class\n            UserServiceStub\n            \n                0 %\n                (0/7)\n            \n        \n    \n\n\n\n\n\n    new Tablesort(document.getElementById('coverage-table'));\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"dependencies.html":{"url":"dependencies.html","title":"package-dependencies - dependencies","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n        Dependencies\n    \n    \n        \n            @angular/animations : ~10.2.0\n        \n            @angular/cdk : ~10.2.7\n        \n            @angular/common : ~10.2.0\n        \n            @angular/compiler : ~10.2.0\n        \n            @angular/core : ~10.2.0\n        \n            @angular/forms : ~10.2.0\n        \n            @angular/material : ~10.2.7\n        \n            @angular/platform-browser : ~10.2.0\n        \n            @angular/platform-browser-dynamic : ~10.2.0\n        \n            @angular/router : ~10.2.0\n        \n            @popperjs/core : ^2.5.4\n        \n            angular-datatables : ^9.0.2\n        \n            block-syncer : ^0.2.4\n        \n            bootstrap : ^4.5.3\n        \n            chart.js : ^2.9.4\n        \n            cic-client : 0.1.4\n        \n            cic-client-meta : 0.0.7-alpha.6\n        \n            cic-schemas-data-validator : ^1.0.0-alpha.3\n        \n            datatables.net : ^1.10.22\n        \n            datatables.net-dt : ^1.10.22\n        \n            ethers : ^5.0.31\n        \n            jquery : ^3.5.1\n        \n            mocha : ^8.2.1\n        \n            moolb : ^0.1.0\n        \n            ng2-charts : ^2.4.2\n        \n            ngx-logger : ^4.2.1\n        \n            openpgp : ^4.10.10\n        \n            popper.js : ^1.16.1\n        \n            rxjs : ~6.6.0\n        \n            sha3 : ^2.1.4\n        \n            tslib : ^2.0.0\n        \n            vcard-parser : ^1.0.0\n        \n            vcards-js : ^2.10.0\n        \n            web3 : ^1.3.0\n        \n            zone.js : ~0.10.2\n    \n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"miscellaneous/functions.html":{"url":"miscellaneous/functions.html","title":"miscellaneous-functions - functions","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n  Miscellaneous\n  Functions\n\n\n\n    Index\n    \n        \n            \n                \n                    \n                        \n                            arraySum   (src/.../array-sum.ts)\n                        \n                        \n                            copyToClipboard   (src/.../clipboard-copy.ts)\n                        \n                        \n                            exportCsv   (src/.../export-csv.ts)\n                        \n                        \n                            HttpGetter   (src/.../http-getter.ts)\n                        \n                        \n                            parseData   (src/.../read-csv.ts)\n                        \n                        \n                            personValidation   (src/.../schema-validation.ts)\n                        \n                        \n                            readCsv   (src/.../read-csv.ts)\n                        \n                        \n                            removeSpecialChar   (src/.../export-csv.ts)\n                        \n                        \n                            vcardValidation   (src/.../schema-validation.ts)\n                        \n                    \n                \n            \n        \n    \n\n\n    src/app/_helpers/array-sum.ts\n    \n        \n        \n            \n                \n                    \n                    \n                        \n                            arraySum\n                        \n                        \n                    \n                \n            \n            \n                \narraySum(arr)\n                \n            \n\n\n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Optional\n                                \n                            \n                            \n                                \n                                    arr\n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         number\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    src/app/_helpers/clipboard-copy.ts\n    \n        \n        \n            \n                \n                    \n                    \n                        \n                            copyToClipboard\n                        \n                        \n                    \n                \n            \n            \n                \ncopyToClipboard(text: any)\n                \n            \n\n\n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    text\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         boolean\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    src/app/_helpers/export-csv.ts\n    \n        \n        \n            \n                \n                    \n                    \n                        \n                            exportCsv\n                        \n                        \n                    \n                \n            \n            \n                \nexportCsv(arrayData, filename, delimiter)\n                \n            \n\n\n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Optional\n                                \n                            \n                            \n                                \n                                    arrayData\n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    filename\n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    delimiter\n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            removeSpecialChar\n                        \n                        \n                    \n                \n            \n            \n                \nremoveSpecialChar(str)\n                \n            \n\n\n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Optional\n                                \n                            \n                            \n                                \n                                    str\n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         string\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    src/app/_helpers/http-getter.ts\n    \n        \n        \n            \n                \n                    \n                    \n                        \n                            HttpGetter\n                        \n                        \n                    \n                \n            \n            \n                \nHttpGetter()\n                \n            \n\n\n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    src/app/_helpers/read-csv.ts\n    \n        \n        \n            \n                \n                    \n                    \n                        \n                            parseData\n                        \n                        \n                    \n                \n            \n            \n                \nparseData(data: any)\n                \n            \n\n\n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    data\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Array\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            readCsv\n                        \n                        \n                    \n                \n            \n            \n                \nreadCsv(input: any)\n                \n            \n\n\n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    input\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Array | void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    src/app/_helpers/schema-validation.ts\n    \n        \n        \n            \n                \n                    \n                    \n                        \n                            personValidation\n                        \n                        \n                    \n                \n            \n            \n                \npersonValidation(person: any)\n                \n            \n\n\n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    person\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            vcardValidation\n                        \n                        \n                    \n                \n            \n            \n                \nvcardValidation(vcard: any)\n                \n            \n\n\n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    vcard\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"index.html":{"url":"index.html","title":"getting-started - index","body":"\n                   \n\nCICADA\nAn angular admin web client for managing users and transactions in the CIC network.\nThis project was generated with Angular CLI version 10.2.0.\nAngular CLI\nRun npm install -g @angular/cli to install the angular CLI.\nDevelopment server\nRun npm run start:dev for a dev server. Navigate to http://localhost:4200/. The app will automatically reload if you change any of the source files.\nCode scaffolding\nRun ng generate component component-name to generate a new component. You can also use ng generate directive|pipe|service|class|guard|interface|enum|module.\nLazy-loading feature modules\nRun ng generate module module-name --route module-name --module app.module to generate a new module on route /module-name in the app module. \nBuild\nset you environment variables - set these via environment variables as found in set-env.ts\n// TODO create a .env file so people don't have to set these one-by-one\nRun npm run build:dev to build the project. The build artifacts will be stored in the dist/ directory. Use the build:prod script for a production build.\nRunning unit tests\nRun npm run test:dev to execute the unit tests via Karma.\nRunning end-to-end tests\nRun ng e2e to execute the end-to-end tests via Protractor.\nEnvironment variables\nEnvironment variables are contained in the .env file. See .env.example for a template.\nDefault environment variables are set in the set-env.ts file.\nOnce loaded they will be populated in the directory src/environments/.\nIt contains environment variables for development on environment.ts and production on environment.prod.ts.\nFurther help\nTo get more help on the Angular CLI use ng help or go check out the Angular CLI Overview and Command Reference page.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"license.html":{"url":"license.html","title":"getting-started - license","body":"\n                   \n\n                GNU GENERAL PUBLIC LICENSE\n                   Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. https://fsf.org/\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n                        Preamble  The GNU General Public License is a free, copyleft license for\nsoftware and other kinds of works.\n  The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works.  By contrast,\nthe GNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users.  We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors.  You can apply it to\nyour programs, too.\n  When we speak of free software, we are referring to freedom, not\nprice.  Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n  To protect your rights, we need to prevent others from denying you\nthese rights or asking you to surrender the rights.  Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n  For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must pass on to the recipients the same\nfreedoms that you received.  You must make sure that they, too, receive\nor can get the source code.  And you must show them these terms so they\nknow their rights.\n  Developers that use the GNU GPL protect your rights with two steps:\n(1) assert copyright on the software, and (2) offer you this License\ngiving you legal permission to copy, distribute and/or modify it.\n  For the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software.  For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n  Some devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so.  This is fundamentally incompatible with the aim of\nprotecting users' freedom to change the software.  The systematic\npattern of such abuse occurs in the area of products for individuals to\nuse, which is precisely where it is most unacceptable.  Therefore, we\nhave designed this version of the GPL to prohibit the practice for those\nproducts.  If such problems arise substantially in other domains, we\nstand ready to extend this provision to those domains in future versions\nof the GPL, as needed to protect the freedom of users.\n  Finally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary.  To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n  The precise terms and conditions for copying, distribution and\nmodification follow.\n                   TERMS AND CONDITIONS\nDefinitions.\n\"This License\" refers to version 3 of the GNU General Public License.\n\"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\"The Program\" refers to any copyrightable work licensed under this\nLicense.  Each licensee is addressed as \"you\".  \"Licensees\" and\n\"recipients\" may be individuals or organizations.\nTo \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy.  The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\nA \"covered work\" means either the unmodified Program or a work based\non the Program.\nTo \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy.  Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\nTo \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies.  Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\nAn interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License.  If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\nSource Code.\nThe \"source code\" for a work means the preferred form of the work\nfor making modifications to it.  \"Object code\" means any non-source\nform of a work.\nA \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\nThe \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form.  A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\nThe \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities.  However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work.  For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\nThe Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\nThe Corresponding Source for a work in source code form is that\nsame work.\n\nBasic Permissions.\nAll rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met.  This License explicitly affirms your unlimited\npermission to run the unmodified Program.  The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work.  This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\nYou may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force.  You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright.  Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\nConveying under any other circumstances is permitted solely under\nthe conditions stated below.  Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\nProtecting Users' Legal Rights From Anti-Circumvention Law.\nNo covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\nWhen you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\nConveying Verbatim Copies.\nYou may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\nYou may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\nConveying Modified Source Versions.\nYou may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\na) The work must carry prominent notices stating that you modified\nit, and giving a relevant date.\nb) The work must carry prominent notices stating that it is\nreleased under this License and any conditions added under section\n\nThis requirement modifies the requirement in section 4 to\n\"keep intact all notices\".\n\nc) You must license the entire work, as a whole, under this\nLicense to anyone who comes into possession of a copy.  This\nLicense will therefore apply, along with any applicable section 7\nadditional terms, to the whole of the work, and all its parts,\nregardless of how they are packaged.  This License gives no\npermission to license the work in any other way, but it does not\ninvalidate such permission if you have separately received it.\nd) If the work has interactive user interfaces, each must display\nAppropriate Legal Notices; however, if the Program has interactive\ninterfaces that do not display Appropriate Legal Notices, your\nwork need not make them do so.\nA compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit.  Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\nConveying Non-Source Forms.\nYou may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\na) Convey the object code in, or embodied in, a physical product\n(including a physical distribution medium), accompanied by the\nCorresponding Source fixed on a durable physical medium\ncustomarily used for software interchange.\nb) Convey the object code in, or embodied in, a physical product\n(including a physical distribution medium), accompanied by a\nwritten offer, valid for at least three years and valid for as\nlong as you offer spare parts or customer support for that product\nmodel, to give anyone who possesses the object code either (1) a\ncopy of the Corresponding Source for all the software in the\nproduct that is covered by this License, on a durable physical\nmedium customarily used for software interchange, for a price no\nmore than your reasonable cost of physically performing this\nconveying of source, or (2) access to copy the\nCorresponding Source from a network server at no charge.\nc) Convey individual copies of the object code with a copy of the\nwritten offer to provide the Corresponding Source.  This\nalternative is allowed only occasionally and noncommercially, and\nonly if you received the object code with such an offer, in accord\nwith subsection 6b.\nd) Convey the object code by offering access from a designated\nplace (gratis or for a charge), and offer equivalent access to the\nCorresponding Source in the same way through the same place at no\nfurther charge.  You need not require recipients to copy the\nCorresponding Source along with the object code.  If the place to\ncopy the object code is a network server, the Corresponding Source\nmay be on a different server (operated by you or a third party)\nthat supports equivalent copying facilities, provided you maintain\nclear directions next to the object code saying where to find the\nCorresponding Source.  Regardless of what server hosts the\nCorresponding Source, you remain obligated to ensure that it is\navailable for as long as needed to satisfy these requirements.\ne) Convey the object code using peer-to-peer transmission, provided\nyou inform other peers where the object code and Corresponding\nSource of the work are being offered to the general public at no\ncharge under subsection 6d.\nA separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\nA \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling.  In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage.  For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product.  A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source.  The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\nIf you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information.  But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\nThe requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed.  Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\nCorresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\nAdditional Terms.\n\"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law.  If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\nWhen you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit.  (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.)  You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\nNotwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\na) Disclaiming warranty or limiting liability differently from the\nterms of sections 15 and 16 of this License; or\nb) Requiring preservation of specified reasonable legal notices or\nauthor attributions in that material or in the Appropriate Legal\nNotices displayed by works containing it; or\nc) Prohibiting misrepresentation of the origin of that material, or\nrequiring that modified versions of such material be marked in\nreasonable ways as different from the original version; or\nd) Limiting the use for publicity purposes of names of licensors or\nauthors of the material; or\ne) Declining to grant rights under trademark law for use of some\ntrade names, trademarks, or service marks; or\nf) Requiring indemnification of licensors and authors of that\nmaterial by anyone who conveys the material (or modified versions of\nit) with contractual assumptions of liability to the recipient, for\nany liability that these contractual assumptions directly impose on\nthose licensors and authors.\nAll other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10.  If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term.  If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\nIf you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\nAdditional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\nTermination.\nYou may not propagate or modify a covered work except as expressly\nprovided under this License.  Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\nHowever, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\nMoreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\nTermination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License.  If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\nAcceptance Not Required for Having Copies.\nYou are not required to accept this License in order to receive or\nrun a copy of the Program.  Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance.  However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work.  These actions infringe copyright if you do\nnot accept this License.  Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\nAutomatic Licensing of Downstream Recipients.\nEach time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License.  You are not responsible\nfor enforcing compliance by third parties with this License.\nAn \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations.  If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\nYou may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License.  For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\nPatents.\nA \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based.  The\nwork thus licensed is called the contributor's \"contributor version\".\nA contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version.  For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\nEach contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\nIn the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement).  To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\nIf you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients.  \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\nIf, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\nA patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License.  You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\nNothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\nNo Surrender of Others' Freedom.\nIf conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License.  If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all.  For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\nUse with the GNU Affero General Public License.\nNotwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU Affero General Public License into a single\ncombined work, and to convey the resulting work.  The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the special requirements of the GNU Affero General Public License,\nsection 13, concerning interaction through a network will apply to the\ncombination as such.\n\nRevised Versions of this License.\nThe Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time.  Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\nEach version is given a distinguishing version number.  If the\nProgram specifies that a certain numbered version of the GNU General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation.  If the Program does not specify a version number of the\nGNU General Public License, you may choose any version ever published\nby the Free Software Foundation.\nIf the Program specifies that a proxy can decide which future\nversions of the GNU General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\nLater license versions may give you additional or different\npermissions.  However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\nDisclaimer of Warranty.\nTHERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\nLimitation of Liability.\nIN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\nInterpretation of Sections 15 and 16.\nIf the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n           END OF TERMS AND CONDITIONS\n\n  How to Apply These Terms to Your New ProgramsIf you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\nTo do so, attach the following notices to the program.  It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\nCIC Staff Client\nCopyright (C) 2021  Grassroots Economics\nThis program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation, either version 3 of the License, or\n(at your option) any later version.\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see https://www.gnu.org/licenses/.\n\n\nAlso add information on how to contact you by electronic and paper mail.\n  If the program does terminal interaction, make it output a short\nnotice like this when it starts in an interactive mode:\n  Copyright (C) 2021  Grassroots Economics\nThis program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\nThis is free software, and you are welcome to redistribute it\nunder certain conditions; type `show c' for details.The hypothetical commands show w' andshow c' should show the appropriate\nparts of the General Public License.  Of course, your program's commands\nmight be different; for a GUI interface, you would use an \"about box\".\n  You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU GPL, see\nhttps://www.gnu.org/licenses/.\n  The GNU General Public License does not permit incorporating your program\ninto proprietary programs.  If your program is a subroutine library, you\nmay consider it more useful to permit linking proprietary applications with\nthe library.  If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License.  But first, please read\nhttps://www.gnu.org/licenses/why-not-lgpl.html.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"modules.html":{"url":"modules.html","title":"modules - modules","body":"\n                   \n\n\n\n\n    Modules\n\n\n    \n            \n                \n                    \n                        AccountsModule\n                    \n                    \n                                \n                                    \n                                        Your browser does not support SVG\n                                    \n                                \n                        \n                            Browse\n                        \n                    \n                \n            \n            \n                \n                    \n                        AccountsRoutingModule\n                    \n                    \n                                \n                                    No graph available.\n                                \n                        \n                            Browse\n                        \n                    \n                \n            \n            \n                \n                    \n                        AdminModule\n                    \n                    \n                                \n                                    \n                                        Your browser does not support SVG\n                                    \n                                \n                        \n                            Browse\n                        \n                    \n                \n            \n            \n                \n                    \n                        AdminRoutingModule\n                    \n                    \n                                \n                                    No graph available.\n                                \n                        \n                            Browse\n                        \n                    \n                \n            \n            \n                \n                    \n                        AppModule\n                    \n                    \n                                \n                                    \n                                        Your browser does not support SVG\n                                    \n                                \n                        \n                            Browse\n                        \n                    \n                \n            \n            \n                \n                    \n                        AppRoutingModule\n                    \n                    \n                                \n                                    No graph available.\n                                \n                        \n                            Browse\n                        \n                    \n                \n            \n            \n                \n                    \n                        AuthModule\n                    \n                    \n                                \n                                    \n                                        Your browser does not support SVG\n                                    \n                                \n                        \n                            Browse\n                        \n                    \n                \n            \n            \n                \n                    \n                        AuthRoutingModule\n                    \n                    \n                                \n                                    No graph available.\n                                \n                        \n                            Browse\n                        \n                    \n                \n            \n            \n                \n                    \n                        PagesModule\n                    \n                    \n                                \n                                    \n                                        Your browser does not support SVG\n                                    \n                                \n                        \n                            Browse\n                        \n                    \n                \n            \n            \n                \n                    \n                        PagesRoutingModule\n                    \n                    \n                                \n                                    No graph available.\n                                \n                        \n                            Browse\n                        \n                    \n                \n            \n            \n                \n                    \n                        SettingsModule\n                    \n                    \n                                \n                                    \n                                        Your browser does not support SVG\n                                    \n                                \n                        \n                            Browse\n                        \n                    \n                \n            \n            \n                \n                    \n                        SettingsRoutingModule\n                    \n                    \n                                \n                                    No graph available.\n                                \n                        \n                            Browse\n                        \n                    \n                \n            \n            \n                \n                    \n                        SharedModule\n                    \n                    \n                                \n                                    \n                                        Your browser does not support SVG\n                                    \n                                \n                        \n                            Browse\n                        \n                    \n                \n            \n            \n                \n                    \n                        TokensModule\n                    \n                    \n                                \n                                    \n                                        Your browser does not support SVG\n                                    \n                                \n                        \n                            Browse\n                        \n                    \n                \n            \n            \n                \n                    \n                        TokensRoutingModule\n                    \n                    \n                                \n                                    No graph available.\n                                \n                        \n                            Browse\n                        \n                    \n                \n            \n            \n                \n                    \n                        TransactionsModule\n                    \n                    \n                                \n                                    \n                                        Your browser does not support SVG\n                                    \n                                \n                        \n                            Browse\n                        \n                    \n                \n            \n            \n                \n                    \n                        TransactionsRoutingModule\n                    \n                    \n                                \n                                    No graph available.\n                                \n                        \n                            Browse\n                        \n                    \n                \n            \n    \n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"overview.html":{"url":"overview.html","title":"overview - overview","body":"\n                   \n\n\n\n    Overview\n\n  \n\n    \n        \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_AccountsModule\n\n\n\ncluster_AccountsModule_declarations\n\n\n\ncluster_AccountsModule_imports\n\n\n\ncluster_AdminModule\n\n\n\ncluster_AdminModule_declarations\n\n\n\ncluster_AdminModule_imports\n\n\n\ncluster_AppModule\n\n\n\ncluster_AppModule_declarations\n\n\n\ncluster_AppModule_imports\n\n\n\ncluster_AppModule_bootstrap\n\n\n\ncluster_AppModule_providers\n\n\n\ncluster_AuthModule\n\n\n\ncluster_AuthModule_declarations\n\n\n\ncluster_AuthModule_imports\n\n\n\ncluster_PagesModule\n\n\n\ncluster_PagesModule_declarations\n\n\n\ncluster_PagesModule_imports\n\n\n\ncluster_SettingsModule\n\n\n\ncluster_SettingsModule_declarations\n\n\n\ncluster_SettingsModule_imports\n\n\n\ncluster_SharedModule\n\n\n\ncluster_SharedModule_declarations\n\n\n\ncluster_SharedModule_exports\n\n\n\ncluster_TokensModule\n\n\n\ncluster_TokensModule_declarations\n\n\n\ncluster_TokensModule_imports\n\n\n\ncluster_TransactionsModule\n\n\n\ncluster_TransactionsModule_declarations\n\n\n\ncluster_TransactionsModule_imports\n\n\n\ncluster_TransactionsModule_exports\n\n\n\n\nAccountDetailsComponent\n\nAccountDetailsComponent\n\n\n\nAccountsModule\n\nAccountsModule\n\nAccountsModule -->\n\nAccountDetailsComponent->AccountsModule\n\n\n\n\n\nAccountSearchComponent\n\nAccountSearchComponent\n\nAccountsModule -->\n\nAccountSearchComponent->AccountsModule\n\n\n\n\n\nAccountsComponent\n\nAccountsComponent\n\nAccountsModule -->\n\nAccountsComponent->AccountsModule\n\n\n\n\n\nCreateAccountComponent\n\nCreateAccountComponent\n\nAccountsModule -->\n\nCreateAccountComponent->AccountsModule\n\n\n\n\n\nAccountsRoutingModule\n\nAccountsRoutingModule\n\nAccountsModule -->\n\nAccountsRoutingModule->AccountsModule\n\n\n\n\n\nSharedModule\n\nSharedModule\n\nAccountsModule -->\n\nSharedModule->AccountsModule\n\n\n\n\n\nTransactionsModule\n\nTransactionsModule\n\nTransactionsModule -->\n\nSharedModule->TransactionsModule\n\n\n\n\n\nAdminModule\n\nAdminModule\n\nAdminModule -->\n\nSharedModule->AdminModule\n\n\n\n\n\nAppModule\n\nAppModule\n\nAppModule -->\n\nSharedModule->AppModule\n\n\n\n\n\nPagesModule\n\nPagesModule\n\nPagesModule -->\n\nSharedModule->PagesModule\n\n\n\n\n\nSettingsModule\n\nSettingsModule\n\nSettingsModule -->\n\nSharedModule->SettingsModule\n\n\n\n\n\nFooterComponent \n\nFooterComponent \n\nFooterComponent  -->\n\nSharedModule->FooterComponent \n\n\n\n\n\nMenuSelectionDirective \n\nMenuSelectionDirective \n\nMenuSelectionDirective  -->\n\nSharedModule->MenuSelectionDirective \n\n\n\n\n\nSafePipe \n\nSafePipe \n\nSafePipe  -->\n\nSharedModule->SafePipe \n\n\n\n\n\nSidebarComponent \n\nSidebarComponent \n\nSidebarComponent  -->\n\nSharedModule->SidebarComponent \n\n\n\n\n\nTokenRatioPipe \n\nTokenRatioPipe \n\nTokenRatioPipe  -->\n\nSharedModule->TokenRatioPipe \n\n\n\n\n\nTopbarComponent \n\nTopbarComponent \n\nTopbarComponent  -->\n\nSharedModule->TopbarComponent \n\n\n\n\n\nTokensModule\n\nTokensModule\n\nTokensModule -->\n\nSharedModule->TokensModule\n\n\n\nAccountsModule -->\n\nTransactionsModule->AccountsModule\n\n\n\n\n\nTransactionDetailsComponent \n\nTransactionDetailsComponent \n\nTransactionDetailsComponent  -->\n\nTransactionsModule->TransactionDetailsComponent \n\n\n\n\n\nAdminComponent\n\nAdminComponent\n\nAdminModule -->\n\nAdminComponent->AdminModule\n\n\n\n\n\nAdminRoutingModule\n\nAdminRoutingModule\n\nAdminModule -->\n\nAdminRoutingModule->AdminModule\n\n\n\n\n\nAppComponent\n\nAppComponent\n\nAppModule -->\n\nAppComponent->AppModule\n\n\n\n\n\nAppComponent \n\nAppComponent \n\nAppComponent  -->\n\nAppModule->AppComponent \n\n\n\n\n\nAppRoutingModule\n\nAppRoutingModule\n\nAppModule -->\n\nAppRoutingModule->AppModule\n\n\n\n\n\nErrorInterceptor\n\nErrorInterceptor\n\nAppModule -->\n\nErrorInterceptor->AppModule\n\n\n\n\n\nGlobalErrorHandler\n\nGlobalErrorHandler\n\nAppModule -->\n\nGlobalErrorHandler->AppModule\n\n\n\n\n\nHttpConfigInterceptor\n\nHttpConfigInterceptor\n\nAppModule -->\n\nHttpConfigInterceptor->AppModule\n\n\n\n\n\nLoggingInterceptor\n\nLoggingInterceptor\n\nAppModule -->\n\nLoggingInterceptor->AppModule\n\n\n\n\n\nAuthComponent\n\nAuthComponent\n\n\n\nAuthModule\n\nAuthModule\n\nAuthModule -->\n\nAuthComponent->AuthModule\n\n\n\n\n\nPasswordToggleDirective\n\nPasswordToggleDirective\n\nAuthModule -->\n\nPasswordToggleDirective->AuthModule\n\n\n\n\n\nAuthRoutingModule\n\nAuthRoutingModule\n\nAuthModule -->\n\nAuthRoutingModule->AuthModule\n\n\n\n\n\nPagesComponent\n\nPagesComponent\n\nPagesModule -->\n\nPagesComponent->PagesModule\n\n\n\n\n\nPagesRoutingModule\n\nPagesRoutingModule\n\nPagesModule -->\n\nPagesRoutingModule->PagesModule\n\n\n\n\n\nOrganizationComponent\n\nOrganizationComponent\n\nSettingsModule -->\n\nOrganizationComponent->SettingsModule\n\n\n\n\n\nSettingsComponent\n\nSettingsComponent\n\nSettingsModule -->\n\nSettingsComponent->SettingsModule\n\n\n\n\n\nSettingsRoutingModule\n\nSettingsRoutingModule\n\nSettingsModule -->\n\nSettingsRoutingModule->SettingsModule\n\n\n\n\n\nErrorDialogComponent\n\nErrorDialogComponent\n\nSharedModule -->\n\nErrorDialogComponent->SharedModule\n\n\n\n\n\nFooterComponent\n\nFooterComponent\n\nSharedModule -->\n\nFooterComponent->SharedModule\n\n\n\n\n\nMenuSelectionDirective\n\nMenuSelectionDirective\n\nSharedModule -->\n\nMenuSelectionDirective->SharedModule\n\n\n\n\n\nMenuToggleDirective\n\nMenuToggleDirective\n\nSharedModule -->\n\nMenuToggleDirective->SharedModule\n\n\n\n\n\nSafePipe\n\nSafePipe\n\nSharedModule -->\n\nSafePipe->SharedModule\n\n\n\n\n\nSidebarComponent\n\nSidebarComponent\n\nSharedModule -->\n\nSidebarComponent->SharedModule\n\n\n\n\n\nTokenRatioPipe\n\nTokenRatioPipe\n\nSharedModule -->\n\nTokenRatioPipe->SharedModule\n\n\n\n\n\nTopbarComponent\n\nTopbarComponent\n\nSharedModule -->\n\nTopbarComponent->SharedModule\n\n\n\n\n\nTokenDetailsComponent\n\nTokenDetailsComponent\n\nTokensModule -->\n\nTokenDetailsComponent->TokensModule\n\n\n\n\n\nTokensComponent\n\nTokensComponent\n\nTokensModule -->\n\nTokensComponent->TokensModule\n\n\n\n\n\nTokensRoutingModule\n\nTokensRoutingModule\n\nTokensModule -->\n\nTokensRoutingModule->TokensModule\n\n\n\n\n\nTransactionDetailsComponent\n\nTransactionDetailsComponent\n\nTransactionsModule -->\n\nTransactionDetailsComponent->TransactionsModule\n\n\n\n\n\nTransactionsComponent\n\nTransactionsComponent\n\nTransactionsModule -->\n\nTransactionsComponent->TransactionsModule\n\n\n\n\n\nTransactionsRoutingModule\n\nTransactionsRoutingModule\n\nTransactionsModule -->\n\nTransactionsRoutingModule->TransactionsModule\n\n\n\n\n\n\n    \n    \n    \n        Zoom in\n        Reset\n        Zoom out\n    \n\n  \n\n    \n        \n            \n                \n                    \n                    \n                        17 Modules\n                    \n                \n            \n        \n        \n            \n                \n                    \n                    21 Components\n                \n            \n        \n        \n            \n                \n                    \n                    4 Directives\n                \n            \n        \n        \n            \n                \n                    \n                    10 Injectables\n                \n            \n        \n        \n            \n                \n                    \n                    2 Pipes\n                \n            \n        \n        \n            \n                \n                    \n                    18 Classes\n                \n            \n        \n        \n            \n                \n                    \n                    2 Guards\n                \n            \n        \n        \n            \n                \n                    \n                    13 Interfaces\n                \n            \n        \n        \n            \n                \n                    \n                    \n                        51 Routes\n                    \n                \n            \n        \n    \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"routes.html":{"url":"routes.html","title":"routes - routes","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    Routes\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"miscellaneous/typealiases.html":{"url":"miscellaneous/typealiases.html","title":"miscellaneous-typealiases - typealiases","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n  Miscellaneous\n  Type aliases\n\n\n\n    Index\n    \n        \n            \n                \n                    \n                        \n                            Signature   (src/.../pgp-signer.ts)\n                        \n                    \n                \n            \n        \n    \n\n\n    src/app/_pgp/pgp-signer.ts\n    \n    \n        \n            \n                \n                    \n                    Signature\n                \n            \n            \n                \n                        literal type\n\n                \n            \n        \n    \n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"miscellaneous/variables.html":{"url":"miscellaneous/variables.html","title":"miscellaneous-variables - variables","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n  Miscellaneous\n  Variables\n\n\n\n    Index\n    \n        \n            \n                \n                    \n                        \n                            abi   (src/.../accountIndex.ts)\n                        \n                        \n                            abi   (src/.../token-registry.ts)\n                        \n                        \n                            accountTypes   (src/.../mock-backend.ts)\n                        \n                        \n                            actions   (src/.../mock-backend.ts)\n                        \n                        \n                            areaNames   (src/.../mock-backend.ts)\n                        \n                        \n                            areaTypes   (src/.../mock-backend.ts)\n                        \n                        \n                            categories   (src/.../mock-backend.ts)\n                        \n                        \n                            defaultAccount   (src/.../account.ts)\n                        \n                        \n                            environment   (src/.../environment.dev.ts)\n                        \n                        \n                            environment   (src/.../environment.prod.ts)\n                        \n                        \n                            environment   (src/.../environment.ts)\n                        \n                        \n                            genders   (src/.../mock-backend.ts)\n                        \n                        \n                            keyring   (src/.../pgp-key-store.ts)\n                        \n                        \n                            MockBackendProvider   (src/.../mock-backend.ts)\n                        \n                        \n                            objCsv   (src/.../read-csv.ts)\n                        \n                        \n                            openpgp   (src/.../pgp-signer.ts)\n                        \n                        \n                            tokens   (src/.../mock-backend.ts)\n                        \n                        \n                            transactionTypes   (src/.../mock-backend.ts)\n                        \n                        \n                            vCard   (src/.../transaction.service.ts)\n                        \n                        \n                            vCard   (src/.../user.service.ts)\n                        \n                        \n                            web3   (src/.../accountIndex.ts)\n                        \n                        \n                            web3   (src/.../token-registry.ts)\n                        \n                    \n                \n            \n        \n    \n\n\n    src/app/_eth/accountIndex.ts\n    \n            \n            \n                \n                    \n                        \n                        \n                            \n                            abi\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     Array\n\n                        \n                    \n                    \n                        \n                            Default value : require('@src/assets/js/block-sync/data/AccountRegistry.json')\n                        \n                    \n\n                \n                    \n                        Fetch the account registry contract's ABI. \n\n                    \n                \n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            web3\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     Web3\n\n                        \n                    \n                    \n                        \n                            Default value : new Web3(environment.web3Provider)\n                        \n                    \n\n                \n                    \n                        Establish a connection to the blockchain network. \n\n                    \n                \n\n            \n        \n\n    src/app/_eth/token-registry.ts\n    \n            \n            \n                \n                    \n                        \n                        \n                            \n                            abi\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     Array\n\n                        \n                    \n                    \n                        \n                            Default value : require('@src/assets/js/block-sync/data/TokenUniqueSymbolIndex.json')\n                        \n                    \n\n                \n                    \n                        Fetch the token registry contract's ABI. \n\n                    \n                \n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            web3\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     Web3\n\n                        \n                    \n                    \n                        \n                            Default value : new Web3(environment.web3Provider)\n                        \n                    \n\n                \n                    \n                        Establish a connection to the blockchain network. \n\n                    \n                \n\n            \n        \n\n    src/app/_helpers/mock-backend.ts\n    \n            \n            \n                \n                    \n                        \n                        \n                            \n                            accountTypes\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     Array\n\n                        \n                    \n                    \n                        \n                            Default value : ['user', 'cashier', 'vendor', 'tokenagent', 'group']\n                        \n                    \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            actions\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         Array\n\n                        \n                    \n                    \n                        \n                            Default value : [\n  { id: 1, user: 'Tom', role: 'enroller', action: 'Disburse RSV 100', approval: false },\n  { id: 2, user: 'Christine', role: 'admin', action: 'Change user phone number', approval: true },\n  { id: 3, user: 'Will', role: 'superadmin', action: 'Reclaim RSV 1000', approval: true },\n  { id: 4, user: 'Vivian', role: 'enroller', action: 'Complete user profile', approval: true },\n  { id: 5, user: 'Jack', role: 'enroller', action: 'Reclaim RSV 200', approval: false },\n  { id: 6, user: 'Patience', role: 'enroller', action: 'Change user information', approval: false }\n]\n                        \n                    \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            areaNames\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         Array\n\n                        \n                    \n                    \n                        \n                            Default value : [\n  {\n    name: 'Mukuru Nairobi',\n    locations: ['kayaba', 'kayba', 'kambi', 'mukuru', 'masai', 'hazina', 'south', 'tetra', 'tetrapak', 'ruben', 'rueben', 'kingston',\n      'korokocho', 'kingstone', 'kamongo', 'lungalunga', 'sinai', 'sigei', 'lungu', 'lunga lunga', 'owino road', 'seigei']\n  },\n  {\n    name: 'Kinango Kwale',\n    locations: ['amani', 'bofu', 'chibuga', 'chikomani', 'chilongoni', 'chigojoni', 'chinguluni', 'chigato', 'chigale', 'chikole',\n      'chilongoni', 'chilumani', 'chigojoni', 'chikomani', 'chizini', 'chikomeni', 'chidzuvini', 'chidzivuni', 'chikuyu', 'chizingo',\n      'doti', 'dzugwe', 'dzivani', 'dzovuni', 'hanje', 'kasemeni', 'katundani', 'kibandaogo', 'kibandaongo', 'kwale', 'kinango',\n      'kidzuvini', 'kalalani', 'kafuduni', 'kaloleni', 'kilibole', 'lutsangani', 'peku', 'gona', 'guro', 'gandini', 'mkanyeni', 'myenzeni',\n      'miyenzeni', 'miatsiani', 'mienzeni', 'mnyenzeni', 'minyenzeni', 'miyani', 'mioleni', 'makuluni', 'mariakani', 'makobeni', 'madewani',\n      'mwangaraba', 'mwashanga', 'miloeni', 'mabesheni', 'mazeras', 'mazera', 'mlola', 'muugano', 'mulunguni', 'mabesheni', 'miatsani',\n      'miatsiani', 'mwache', 'mwangani', 'mwehavikonje', 'miguneni', 'nzora', 'nzovuni', 'vikinduni', 'vikolani', 'vitangani', 'viogato',\n      'vyogato', 'vistangani', 'yapha', 'yava', 'yowani', 'ziwani', 'majengo', 'matuga', 'vigungani', 'vidziweni', 'vinyunduni', 'ukunda',\n      'kokotoni', 'mikindani']\n  },\n  {\n    name: 'Misc Nairobi',\n    locations: ['nairobi', 'west', 'lindi', 'kibera', 'kibira', 'kibra', 'makina', 'soweto', 'olympic', 'kangemi', 'ruiru', 'congo',\n      'kawangware', 'kwangware', 'donholm', 'dagoreti', 'dandora', 'kabete', 'sinai', 'donhom', 'donholm', 'huruma', 'kitengela',\n      'makadara', ',mlolongo', 'kenyatta', 'mlolongo', 'tassia', 'tasia', 'gatina', '56', 'industrial', 'kariobangi', 'kasarani', 'kayole',\n      'mathare', 'pipe', 'juja', 'uchumi', 'jogoo', 'umoja', 'thika', 'kikuyu', 'stadium', 'buru buru', 'ngong', 'starehe', 'mwiki',\n      'fuata', 'kware', 'kabiro', 'embakassi', 'embakasi', 'kmoja', 'east', 'githurai', 'landi', 'langata', 'limuru', 'mathere',\n      'dagoretti', 'kirembe', 'muugano', 'mwiki', 'toi market']\n  },\n  {\n    name: 'Misc Mombasa',\n    locations: ['mombasa', 'likoni', 'bangla', 'bangladesh', 'kizingo', 'old town', 'makupa', 'mvita', 'ngombeni', 'ngómbeni', 'ombeni',\n      'magongo', 'miritini', 'changamwe', 'jomvu', 'ohuru', 'tudor', 'diani']\n  },\n  {\n    name: 'Kisauni',\n    locations: ['bamburi', 'kisauni', 'mworoni', 'nyali', 'shanzu', 'bombolulu', 'mtopanga', 'mjambere', 'majaoni', 'manyani', 'magogoni',\n      'junda', 'mwakirunge', 'mshomoroni']\n  },\n  {\n    name: 'Kilifi',\n    locations: ['kilfi', 'kilifi', 'mtwapa', 'takaungu', 'makongeni', 'mnarani', 'mnarani', 'office', 'g.e', 'ge', 'raibai', 'ribe']\n  },\n  {\n    name: 'Kakuma',\n    locations: ['kakuma']\n  },\n  {\n    name: 'Kitui',\n    locations: ['kitui', 'mwingi']\n  },\n  {\n    name: 'Nyanza',\n    locations: ['busia', 'nyalgunga', 'mbita', 'siaya', 'kisumu', 'nyalenda', 'hawinga', 'rangala', 'uyoma', 'mumias', 'homabay', 'homaboy',\n      'migori', 'kusumu']\n  },\n  {\n    name: 'Misc Rural Counties',\n    locations: ['makueni', 'meru', 'kisii', 'bomet', 'machakos', 'bungoma', 'eldoret', 'kakamega', 'kericho', 'kajiado', 'nandi', 'nyeri',\n      'wote', 'kiambu', 'mwea', 'nakuru', 'narok']\n  },\n  {\n    name: 'other',\n    locations: ['other', 'none', 'unknown']\n  }\n]\n                        \n                    \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            areaTypes\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         Array\n\n                        \n                    \n                    \n                        \n                            Default value : [\n  {\n    name: 'urban',\n    area: ['urban', 'nairobi', 'mombasa']\n  },\n  {\n    name: 'rural',\n    area: ['rural', 'kakuma', 'kwale', 'kinango', 'kitui', 'nyanza']\n  },\n  {\n    name: 'periurban',\n    area: ['kilifi', 'periurban']\n  },\n  {\n    name: 'other',\n    area: ['other']\n  }\n]\n                        \n                    \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            categories\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         Array\n\n                        \n                    \n                    \n                        \n                            Default value : [\n  {\n    name: 'system',\n    products: ['system', 'office main', 'office main phone']\n  },\n  {\n    name: 'education',\n    products: ['book', 'coach', 'teacher', 'sch', 'school', 'pry', 'education', 'student', 'mwalimu', 'maalim', 'consultant', 'consult',\n      'college', 'university', 'lecturer', 'primary', 'secondary', 'daycare', 'babycare', 'baby care', 'elim', 'eimu', 'nursery',\n      'red cross', 'volunteer', 'instructor', 'journalist', 'lesson', 'academy', 'headmistress', 'headteacher', 'cyber', 'researcher',\n      'professor', 'demo', 'expert', 'tution', 'tuition', 'children', 'headmaster', 'educator', 'Marital counsellor', 'counsellor',\n      'trainer', 'vijana', 'youth', 'intern', 'redcross', 'KRCS', 'danish', 'science', 'data', 'facilitator', 'vitabu', 'kitabu']\n  },\n  {\n    name: 'faith',\n    products: ['pastor', 'imam', 'madrasa', 'religous', 'religious', 'ustadh', 'ustadhi', 'Marital counsellor', 'counsellor', 'church',\n      'kanisa', 'mksiti', 'donor']\n  },\n  {\n    name: 'government',\n    products: ['elder', 'chief', 'police', 'government', 'country', 'county', 'soldier', 'village admin', 'ward', 'leader', 'kra',\n      'mailman', 'immagration', 'immigration']\n  },\n  {\n    name: 'environment',\n    products: ['conservation', 'toilet', 'choo', 'garbage', 'fagio', 'waste', 'tree', 'taka', 'scrap', 'cleaning', 'gardener', 'rubbish',\n      'usafi', 'mazingira', 'miti', 'trash', 'cleaner', 'plastic', 'collection', 'seedling', 'seedlings', 'recycling']\n  },\n  {\n    name: 'farming',\n    products: ['farm', 'farmer', 'farming', 'mkulima', 'kulima', 'ukulima', 'wakulima', 'jembe', 'shamba']\n  },\n  {\n    name: 'labour',\n    products: ['artist', 'agent', 'guard', 'askari', 'accountant', 'baker', 'beadwork', 'beauty', 'business', 'barber', 'casual',\n      'electrian', 'caretaker', 'car wash', 'capenter', 'construction', 'chef', 'catering', 'cobler', 'cobbler', 'carwash', 'dhobi',\n      'landlord', 'design', 'carpenter', 'fundi', 'hawking', 'hawker', 'househelp', 'hsehelp', 'house help', 'help', 'housegirl', 'kushona',\n      'juakali', 'jualikali', 'juacali', 'jua kali', 'shepherd', 'makuti', 'kujenga', 'kinyozi', 'kazi', 'knitting', 'kufua', 'fua',\n      'hustler', 'biashara', 'labour', 'labor', 'laundry', 'repair', 'hair', 'posho', 'mill', 'mtambo', 'uvuvi', 'engineer', 'manager',\n      'tailor', 'nguo', 'mason', 'mtumba', 'garage', 'mechanic', 'mjenzi', 'mfugaji', 'painter', 'receptionist', 'printing', 'programming',\n      'plumb', 'charging', 'salon', 'mpishi', 'msusi', 'mgema', 'footballer', 'photocopy', 'peddler', 'staff', 'sales', 'service', 'saloon',\n      'seremala', 'security', 'insurance', 'secretary', 'shoe', 'shepard', 'shephard', 'tout', 'tv', 'mvuvi', 'mawe', 'majani', 'maembe',\n      'freelance', 'mjengo', 'electronics', 'photographer', 'programmer', 'electrician', 'washing', 'bricks', 'welder', 'welding',\n      'working', 'worker', 'watchman', 'waiter', 'waitress', 'viatu', 'yoga', 'guitarist', 'house', 'artisan', 'musician', 'trade',\n      'makonge', 'ujenzi', 'vendor', 'watchlady', 'marketing', 'beautician', 'photo', 'metal work', 'supplier', 'law firm', 'brewer']\n  },\n  {\n    name: 'food',\n    products: ['avocado', 'bhajia', 'bajia', 'mbonga', 'bofu', 'beans', 'biscuits', 'biringanya', 'banana', 'bananas', 'crisps', 'chakula',\n      'coconut', 'chapati', 'cereal', 'chipo', 'chapo', 'chai', 'chips', 'cassava', 'cake', 'cereals', 'cook', 'corn', 'coffee', 'chicken',\n      'dagaa', 'donut', 'dough', 'groundnuts', 'hotel', 'holel', 'hoteli', 'butcher', 'butchery', 'fruit', 'food', 'fruits', 'fish',\n      'githeri', 'grocery', 'grocer', 'pojo', 'papa', 'goats', 'mabenda', 'mbenda', 'poultry', 'soda', 'peanuts', 'potatoes', 'samosa',\n      'soko', 'samaki', 'tomato', 'tomatoes', 'mchele', 'matunda', 'mango', 'melon', 'mellon', 'nyanya', 'nyama', 'omena', 'umena', 'ndizi',\n      'njugu', 'kamba kamba', 'khaimati', 'kaimati', 'kunde', 'kuku', 'kahawa', 'keki', 'muguka', 'miraa', 'milk', 'choma', 'maziwa',\n      'mboga', 'mbog', 'busaa', 'chumvi', 'cabbages', 'mabuyu', 'machungwa', 'mbuzi', 'mnazi', 'mchicha', 'ngombe', 'ngano', 'nazi',\n      'oranges', 'peanuts', 'mkate', 'bread', 'mikate', 'vitungu', 'sausages', 'maize', 'mbata', 'mchuzi', 'mchuuzi', 'mandazi', 'mbaazi',\n      'mahindi', 'maandazi', 'mogoka', 'meat', 'mhogo', 'mihogo', 'muhogo', 'maharagwe', 'miwa', 'mahamri', 'mitumba', 'simsim', 'porridge',\n      'pilau', 'vegetable', 'egg', 'mayai', 'mifugo', 'unga', 'good', 'sima', 'sweet', 'sweats', 'sambusa', 'snacks', 'sugar', 'suger',\n      'ugoro', 'sukari', 'soup', 'spinach', 'smokie', 'smokies', 'sukuma', 'tea', 'uji', 'ugali', 'uchuzi', 'uchuuzi', 'viazi', 'yoghurt',\n      'yogurt', 'wine', 'marondo', 'maandzi', 'matoke', 'omeno', 'onions', 'nzugu', 'korosho', 'barafu', 'juice']\n  },\n  {\n    name: 'water',\n    products: ['maji', 'water']\n  },\n  {\n    name: 'health',\n    products: ['agrovet', 'dispensary', 'barakoa', 'chemist', 'Chemicals', 'chv', 'doctor', 'daktari', 'dawa', 'hospital', 'herbalist',\n      'mganga', 'sabuni', 'soap', 'nurse', 'heath', 'community health worker', 'clinic', 'clinical', 'mask', 'medicine', 'lab technician',\n      'pharmacy', 'cosmetics', 'veterinary', 'vet', 'sickly', 'emergency response', 'emergency']\n  },\n  {\n    name: 'savings',\n    products: ['chama', 'group', 'savings', 'loan', 'silc', 'vsla', 'credit', 'finance']\n  },\n  {\n    name: 'shop',\n    products: ['bag', 'bead', 'belt', 'bedding', 'jik', 'bed', 'cement', 'botique', 'boutique', 'lines', 'kibanda', 'kiosk', 'spareparts',\n      'candy', 'cloth', 'electricals', 'mutumba', 'cafe', 'leso', 'lesso', 'duka', 'spare parts', 'socks', 'malimali', 'mitungi',\n      'mali mali', 'hardware', 'detergent', 'detergents', 'dera', 'retail', 'kamba', 'pombe', 'pampers', 'pool', 'phone', 'simu', 'mangwe',\n      'mikeka', 'movie', 'shop', 'acces', 'mchanga', 'uto', 'airtime', 'matress', 'mattress', 'mattresses', 'mpsea', 'mpesa', 'shirt',\n      'wholesaler', 'perfume', 'playstation', 'tissue', 'vikapu', 'uniform', 'flowers', 'vitenge', 'utencils', 'utensils', 'station',\n      'jewel', 'pool table', 'club', 'pub', 'bar', 'furniture', 'm-pesa', 'vyombo']\n  },\n  {\n    name: 'transport',\n    products: ['kebeba', 'beba', 'bebabeba', 'bike', 'bicycle', 'matatu', 'boda', 'bodaboda', 'cart', 'carrier', 'tour', 'travel', 'driver',\n      'dereva', 'tout', 'conductor', 'kubeba', 'tuktuk', 'taxi', 'piki', 'pikipiki', 'manamba', 'trasportion', 'mkokoteni', 'mover',\n      'motorist', 'motorbike', 'transport', 'transpoter', 'gari', 'magari', 'makanga', 'car']\n  },\n  {\n    name: 'fuel/energy',\n    products: ['timber', 'timberyard', 'biogas', 'charcol', 'charcoal', 'kuni', 'mbao', 'fuel', 'makaa', 'mafuta', 'moto', 'solar', 'stima',\n      'fire', 'firewood', 'wood', 'oil', 'taa', 'gas', 'paraffin', 'parrafin', 'parafin', 'petrol', 'petro', 'kerosine', 'kerosene',\n      'diesel']\n  },\n  {\n    name: 'other',\n    products: ['other', 'none', 'unknown', 'none']\n  }\n]\n                        \n                    \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            genders\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     Array\n\n                        \n                    \n                    \n                        \n                            Default value : ['male', 'female', 'other']\n                        \n                    \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            MockBackendProvider\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         object\n\n                        \n                    \n                    \n                        \n                            Default value : {\n  provide: HTTP_INTERCEPTORS,\n  useClass: MockBackendInterceptor,\n  multi: true\n}\n                        \n                    \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            tokens\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         Array\n\n                        \n                    \n                    \n                        \n                            Default value : [\n  {\n    name: 'Giftable Reserve', symbol: 'GRZ', address: '0xa686005CE37Dce7738436256982C3903f2E4ea8E', supply: '1000000001000000000000000000',\n    decimals: '18', reserves: {}\n  },\n  {\n    name: 'Demo Token', symbol: 'DEMO', address: '0xc80D6aFF8194114c52AEcD84c9f15fd5c8abb187', supply: '99999999999999998976',\n    decimals: '18', reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '99999999999999998976'}},\n    reserveRatio: '1000000', owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'\n  },\n  {\n    name: 'Foo Token', symbol: 'FOO', address: '0x9ceD86089f7aBB5A97B40eb0E7521e7aa308d354', supply: '1000000000000000001014',\n    decimals: '18', reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '1000000000000000001014'}},\n    reserveRatio: '1000000', owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'\n  },\n  {\n    name: 'testb', symbol: 'tstb', address: '0xC63cFA91A3BFf41cE31Ff436f67D3ACBC977DB95', supply: '99000', decimals: '18',\n    reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '99000'}}, reserveRatio: '1000000',\n    owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'\n  },\n  {\n    name: 'testa', symbol: 'tsta', address: '0x8fA4101ef19D0a078239d035659e92b278bD083C', supply: '9981', decimals: '18',\n    reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '9981'}}, reserveRatio: '1000000',\n    owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'\n  },\n  {\n    name: 'testc', symbol: 'tstc', address: '0x4A6fA6bc3BfE4C9661bC692D9798425350C9e3D4', supply: '100990', decimals: '18',\n    reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '100990'}}, reserveRatio: '1000000',\n    owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'\n  }\n]\n                        \n                    \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            transactionTypes\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     Array\n\n                        \n                    \n                    \n                        \n                            Default value : ['transactions', 'conversions', 'disbursements', 'rewards', 'reclamation']\n                        \n                    \n\n\n            \n        \n\n    src/app/_models/account.ts\n    \n            \n            \n                \n                    \n                        \n                        \n                            \n                            defaultAccount\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         AccountDetails\n\n                        \n                    \n                    \n                        \n                            Default value : {\n  date_registered: Date.now(),\n  gender: 'other',\n  identities: {\n    evm: {\n      'bloxberg:8996': [''],\n      'oldchain:1': [''],\n    },\n    latitude: 0,\n    longitude: 0,\n  },\n  location: {\n    area_name: 'Kilifi',\n  },\n  products: [],\n  vcard: {\n    email: [{\n      value: '',\n    }],\n    fn: [{\n      value: 'Sarafu Contract',\n    }],\n    n: [{\n      value: ['Sarafu', 'Contract'],\n    }],\n    tel: [{\n      meta: {\n        TYP: [],\n      },\n      value: '',\n    }],\n    version: [{\n      value: '3.0',\n    }],\n  },\n}\n                        \n                    \n\n\n            \n        \n\n    src/environments/environment.dev.ts\n    \n            \n            \n                \n                    \n                        \n                        \n                            \n                            environment\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         object\n\n                        \n                    \n                    \n                        \n                            Default value : {\n  production: false,\n  bloxbergChainId: 8996,\n  logLevel: NgxLoggerLevel.ERROR,\n  serverLogLevel: NgxLoggerLevel.OFF,\n  loggingUrl: '',\n  cicMetaUrl: 'https://meta.dev.grassrootseconomics.net',\n  publicKeysUrl: 'https://dev.grassrootseconomics.net/.well-known/publickeys/',\n  cicCacheUrl: 'https://cache.dev.grassrootseconomics.net',\n  web3Provider: 'wss://bloxberg-ws.dev.grassrootseconomics.net',\n  cicUssdUrl: 'https://ussd.dev.grassrootseconomics.net',\n  registryAddress: '0xea6225212005e86a4490018ded4bf37f3e772161',\n  trustedDeclaratorAddress: '0xEb3907eCad74a0013c259D5874AE7f22DcBcC95C'\n}\n                        \n                    \n\n\n            \n        \n\n    src/environments/environment.prod.ts\n    \n            \n            \n                \n                    \n                        \n                        \n                            \n                            environment\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         object\n\n                        \n                    \n                    \n                        \n                            Default value : {\n  production: true,\n  bloxbergChainId: 8996,\n  logLevel: NgxLoggerLevel.ERROR,\n  serverLogLevel: NgxLoggerLevel.OFF,\n  loggingUrl: '',\n  cicMetaUrl: 'https://meta.dev.grassrootseconomics.net',\n  publicKeysUrl: 'https://dev.grassrootseconomics.net/.well-known/publickeys/',\n  cicCacheUrl: 'https://cache.dev.grassrootseconomics.net',\n  web3Provider: 'wss://bloxberg-ws.dev.grassrootseconomics.net',\n  cicUssdUrl: 'https://ussd.dev.grassrootseconomics.net',\n  registryAddress: '0xAf1B487491073C2d49136Db3FD87E293302CF839',\n  trustedDeclaratorAddress: '0xEb3907eCad74a0013c259D5874AE7f22DcBcC95C'\n}\n                        \n                    \n\n\n            \n        \n\n    src/environments/environment.ts\n    \n            \n            \n                \n                    \n                        \n                        \n                            \n                            environment\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         object\n\n                        \n                    \n                    \n                        \n                            Default value : {\n  production: false,\n  bloxbergChainId: 8996,\n  logLevel: NgxLoggerLevel.ERROR,\n  serverLogLevel: NgxLoggerLevel.OFF,\n  loggingUrl: 'http://localhost:8000',\n  cicMetaUrl: 'https://meta.dev.grassrootseconomics.net',\n  publicKeysUrl: 'http://localhost:8000/keys.asc',\n  cicCacheUrl: 'https://cache.dev.grassrootseconomics.net',\n  web3Provider: 'ws://localhost:63546',\n  cicUssdUrl: 'https://ussd.dev.grassrootseconomics.net',\n  registryAddress: '0x6Ca3cB14aA6F761712E1C18646AfBA4d5Ae249E8',\n  trustedDeclaratorAddress: '0xEb3907eCad74a0013c259D5874AE7f22DcBcC95C'\n}\n                        \n                    \n\n\n            \n        \n\n    src/app/_pgp/pgp-key-store.ts\n    \n            \n            \n                \n                    \n                        \n                        \n                            \n                            keyring\n                            \n                        \n                    \n                \n                    \n                        \n                            Default value : new openpgp.Keyring()\n                        \n                    \n\n\n            \n        \n\n    src/app/_helpers/read-csv.ts\n    \n            \n            \n                \n                    \n                        \n                        \n                            \n                            objCsv\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     literal type\n\n                        \n                    \n                    \n                        \n                            Default value : {\n  size: 0,\n  dataFile: []\n}\n                        \n                    \n\n\n            \n        \n\n    src/app/_pgp/pgp-signer.ts\n    \n            \n            \n                \n                    \n                        \n                        \n                            \n                            openpgp\n                            \n                        \n                    \n                \n                    \n                        \n                            Default value : require('openpgp')\n                        \n                    \n\n\n            \n        \n\n    src/app/_services/transaction.service.ts\n    \n            \n            \n                \n                    \n                        \n                        \n                            \n                            vCard\n                            \n                        \n                    \n                \n                    \n                        \n                            Default value : require('vcard-parser')\n                        \n                    \n\n\n            \n        \n\n    src/app/_services/user.service.ts\n    \n            \n            \n                \n                    \n                        \n                        \n                            \n                            vCard\n                            \n                        \n                    \n                \n                    \n                        \n                            Default value : require('vcard-parser')\n                        \n                    \n\n\n            \n        \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"}}
+    "index": {"version":"2.3.9","fields":["title","body"],"fieldVectors":[["title/interfaces/AccountDetails.html",[0,1.107,1,2.027]],["body/interfaces/AccountDetails.html",[0,1.888,1,3.613,2,1.956,3,0.116,4,0.093,5,0.071,6,2.868,7,0.352,8,1.058,9,1.322,10,5.354,11,4.064,12,3.59,13,5.233,14,4.673,15,5.233,16,4.247,17,3.902,18,0.7,19,4.066,20,1.539,21,0.011,22,2.059,23,5.395,24,4.121,25,4.121,26,4.121,27,3.883,28,3.883,29,2.101,30,4.121,31,3.253,32,3.68,33,1.998,34,4.121,35,4.121,36,4.121,37,3.752,38,4.121,39,3.68,40,3.891,41,2.717,42,2.649,43,2.717,44,2.469,45,2.476,46,3.883,47,2.364,48,1.001,49,3.68,50,2.868,51,2.649,52,2.868,53,3.68,54,3.68,55,3.043,56,0.116,57,0.005,58,0.007,59,0.005]],["title/classes/AccountIndex.html",[60,0.005,61,3.393]],["body/classes/AccountIndex.html",[0,0.738,3,0.075,4,0.06,5,0.045,7,0.226,8,0.769,9,0.96,18,0.558,20,1.405,21,0.011,22,2.035,48,1.342,51,1.258,54,4.993,56,0.075,57,0.003,58,0.005,59,0.003,60,0.003,61,3.462,62,1.103,63,2.262,64,3.277,65,2.431,66,5.185,67,5.592,68,4.989,69,3.809,70,3.809,71,7.359,72,3.202,73,3.924,74,3.803,75,5.894,76,6.486,77,0.726,78,4.004,79,3.36,80,4.337,81,4.337,82,4.337,83,6.711,84,0.61,85,3.809,86,0.834,87,4.337,88,1.452,89,3.89,90,6.619,91,2.739,92,1.046,93,0.552,94,5.079,95,3.067,96,2.262,97,2.833,98,2.833,99,4.337,100,2.833,101,4.337,102,3.809,103,4.337,104,2.823,105,5.75,106,3.809,107,5.903,108,4.337,109,5.75,110,6.327,111,2.833,112,1.294,113,2.718,114,2.546,115,3.809,116,3.809,117,4.337,118,2.833,119,2.675,120,4.077,121,3.202,122,3.462,123,2.187,124,3.809,125,3.462,126,2.833,127,3.462,128,2.833,129,4.337,130,2.833,131,3.202,132,4.337,133,5.269,134,1.722,135,2.401,136,4.337,137,4.337,138,2.833,139,5.894,140,0.263,141,3.641,142,1.957,143,0.949,144,1.216,145,1.459,146,2.262,147,2.995,148,2.262,149,2.489,150,2.262,151,2.262,152,1.411,153,2.092,154,2.489,155,3.414,156,3.809,157,2.489,158,2.489,159,4.628,160,2.489,161,4.337,162,2.833,163,2.879,164,2.833,165,2.833,166,2.833,167,2.833,168,4.628,169,2.833,170,5.269,171,2.546,172,2.833,173,2.833,174,2.833]],["title/components/AccountSearchComponent.html",[175,0.652,176,1.383]],["body/components/AccountSearchComponent.html",[3,0.077,4,0.062,5,0.047,7,0.234,8,0.789,9,0.477,18,0.617,21,0.011,22,1.522,33,1.696,56,0.077,57,0.003,58,0.005,59,0.003,60,0.003,67,3.91,77,0.745,79,2.823,84,0.958,86,0.955,88,0.982,91,2.507,92,0.52,93,0.605,95,2.364,112,0.977,113,2.267,114,2.345,123,3.354,134,1.677,140,0.429,144,1.258,145,1.51,152,1.448,163,2.578,175,0.826,176,1.955,177,1.629,178,1.073,179,1.217,180,1.073,181,0.982,182,7.29,183,6.129,184,2.575,185,1.331,186,2.474,187,0.927,188,1.847,189,1.847,190,2.866,191,3.092,192,4.832,193,1.847,194,5.381,195,1.847,196,4.451,197,5.381,198,5.381,199,5.381,200,3.973,201,5.381,202,5.381,203,5.381,204,5.381,205,5.381,206,5.381,207,2.763,208,6.008,209,6.008,210,6.008,211,3.287,212,5.381,213,5.381,214,5.381,215,2.341,216,5.022,217,4.359,218,3.793,219,4.451,220,2.932,221,1.482,222,2.932,223,2.932,224,2.932,225,4.881,226,2.932,227,2.408,228,2.235,229,2.932,230,2.932,231,3.984,232,2.932,233,2.932,234,2.932,235,2.932,236,2.932,237,2.932,238,2.932,239,2.932,240,2.932,241,2.932,242,2.932,243,2.932,244,1.217,245,0.351,246,2.165,247,1.574,248,1.452,249,1.452,250,1.041,251,2.165,252,2.165,253,1.654,254,2.932,255,3.973,256,3.973,257,2.932,258,2.575,259,2.932,260,2.932,261,2.932,262,2.932,263,2.932,264,2.932,265,4.451,266,2.932,267,2.932,268,2.932,269,4.451,270,2.932,271,4.451,272,3.91,273,3.074,274,4.451,275,4.451,276,3.553,277,2.932,278,2.932,279,4.451,280,2.932,281,2.204,282,4.426,283,3.91,284,4.451,285,0.829,286,1.68,287,1.629,288,0.852,289,2.267,290,1.106,291,0.982,292,2.03,293,0.954,294,1.106,295,1.106,296,0.954,297,1.106,298,0.982,299,1.106,300,0.954,301,1.106,302,0.954,303,1.106,304,0.954,305,0.743,306,1.106,307,0.982,308,1.68,309,1.041,310,0.954,311,1.106,312,0.954,313,1.106,314,0.954,315,1.106,316,0.982,317,1.68,318,1.041,319,0.954,320,0.743,321,0.954,322,1.106,323,0.982,324,1.68,325,1.041,326,0.982,327,0.764,328,0.954,329,0.982,330,0.954,331,0.954,332,1.106,333,0.954,334,1.106,335,0.954,336,1.106,337,1.011,338,1.073,339,1.106]],["title/components/AccountsComponent.html",[175,0.652,293,1.383]],["body/components/AccountsComponent.html",[1,1.446,3,0.08,4,0.064,5,0.049,7,0.242,8,0.809,9,0.893,11,3.425,16,3.425,18,0.638,20,1.129,21,0.011,22,1.549,33,1.653,56,0.145,57,0.004,58,0.005,59,0.004,60,0.004,67,5.246,77,0.765,79,2.536,84,0.983,86,0.948,88,1.015,91,2.073,92,0.973,93,0.718,112,1.121,113,1.723,135,2.776,140,0.473,144,1.301,145,1.562,152,0.987,163,1.959,175,0.843,176,0.987,177,1.671,178,1.11,179,1.258,180,1.11,181,1.015,185,1.365,186,2.81,187,0.959,188,1.895,189,1.895,190,2.876,191,3.105,192,3.769,193,1.895,195,1.895,207,2.81,217,4.249,218,3.836,221,1.891,228,2.073,244,1.258,245,0.363,248,1.501,249,1.501,250,1.077,251,2.239,252,2.239,253,1.688,272,1.973,281,2.261,282,3.978,285,0.857,286,1.723,287,1.671,288,0.881,289,2.306,290,1.144,291,1.015,292,2.072,293,1.989,294,1.144,295,1.144,296,0.987,297,1.144,298,1.015,299,1.144,300,0.987,301,1.144,302,0.987,303,1.144,304,0.987,305,1.392,306,1.144,307,1.015,308,1.723,309,1.077,310,0.987,311,1.144,312,0.987,313,1.144,314,0.987,315,1.144,316,1.015,317,1.723,318,1.077,319,0.987,320,0.768,321,0.987,322,1.144,323,1.015,324,1.723,325,1.077,326,1.015,327,0.79,328,0.987,329,1.015,330,0.987,331,0.987,332,1.144,333,0.987,334,1.144,335,0.987,336,1.144,337,1.046,338,1.11,339,1.144,340,2.663,341,5.492,342,4.566,343,5.492,344,3.793,345,3.793,346,4.824,347,4.384,348,4.824,349,3.793,350,3.793,351,3.153,352,4.221,353,6.112,354,6.112,355,4.566,356,2.663,357,2.967,358,4.566,359,3.153,360,3.032,361,3.032,362,3.032,363,3.032,364,3.032,365,4.566,366,3.032,367,3.032,368,3.032,369,3.032,370,3.793,371,3.032,372,4.221,373,3.032,374,4.879,375,3.032,376,3.645,377,4.01,378,2.68,379,3.032,380,3.793,381,2.972,382,3.153,383,3.032,384,3.793,385,3.153,386,2.094,387,1.562,388,1.627,389,1.627,390,1.87,391,1.699,392,1.501,393,1.973,394,2.239,395,1.627,396,3.032,397,2.094,398,3.032,399,2.42,400,3.032,401,2.663,402,2.663,403,2.663,404,4.566,405,2.239,406,3.032,407,4.055,408,3.153,409,2.239,410,2.094,411,4.566,412,2.239,413,2.094,414,3.032,415,4.566,416,4.566,417,3.032,418,3.032,419,3.032,420,3.032,421,4.01,422,3.645,423,3.153,424,4.566,425,4.566,426,4.566,427,3.153,428,4.566,429,2.972,430,4.566]],["title/modules/AccountsModule.html",[431,1.138,432,3.139]],["body/modules/AccountsModule.html",[3,0.127,4,0.102,5,0.077,21,0.011,56,0.127,57,0.006,58,0.008,59,0.006,60,0.006,91,1.519,140,0.541,143,2.117,176,2.605,183,3.546,245,0.575,247,2.577,285,1.358,291,2.681,293,2.605,302,2.605,387,2.473,388,2.577,389,2.577,431,1.285,432,6.489,433,1.758,434,2.378,435,3.791,436,2.473,437,2.577,438,1.758,439,4.219,440,4.219,441,4.219,442,5.53,443,4.123,444,5.53,445,3.392,446,2.577,447,2.29,448,4.803,449,2.623,450,3.71,451,2.692,452,4.803,453,2.819,454,4.219,455,2.962,456,4.219,457,3.834,458,3.317,459,5.045,460,2.577,461,3.546,462,4.219,463,3.546,464,4.219,465,4.113,466,4.365,467,4.667,468,3.546,469,4.365,470,3.898,471,2.962,472,4.113,473,3.126,474,2.962,475,3.898,476,2.962,477,3.898,478,2.962,479,4.113,480,3.126,481,4.365,482,3.317,483,4.803,484,6.32,485,4.803,486,4.365,487,3.126,488,6.32,489,4.803,490,4.803,491,5.045,492,4.219,493,5.551,494,3.834,495,3.317]],["title/modules/AccountsRoutingModule.html",[431,1.138,442,2.936]],["body/modules/AccountsRoutingModule.html",[3,0.155,4,0.124,5,0.094,21,0.011,45,2.44,48,1.336,56,0.155,57,0.007,58,0.009,59,0.007,60,0.007,88,1.969,140,0.512,143,1.969,175,1.24,176,2.338,183,4.341,192,3.626,245,0.704,250,2.088,291,2.407,293,2.338,302,2.338,433,2.152,438,2.152,442,4.963,449,2.982,454,5.164,456,6.312,457,4.693,458,4.061,462,5.164,463,4.341,464,5.164,492,5.164,496,5.879,497,3.451,498,3.568,499,4.028,500,4.867,501,4.061,502,4.061,503,3.827,504,3.626]],["title/interfaces/Action.html",[0,1.107,505,2.281]],["body/interfaces/Action.html",[0,2.104,2,2.605,3,0.155,4,0.124,5,0.094,7,0.469,8,1.272,12,3.554,17,3.022,18,0.662,20,1.519,21,0.011,22,1.965,29,2.798,45,3.353,56,0.155,57,0.007,58,0.009,59,0.007,93,0.726,135,2.926,227,2.384,505,4.582,506,4.053,507,4.742,508,4.528,509,2.957,510,4.213,511,3.82,512,4.427]],["title/classes/ActivatedRouteStub.html",[60,0.005,513,3.393]],["body/classes/ActivatedRouteStub.html",[3,0.135,4,0.108,5,0.082,7,0.407,8,1.165,9,1.069,18,0.525,21,0.011,33,1.953,56,0.135,57,0.006,58,0.008,59,0.006,60,0.006,62,1.986,64,2.627,77,1.101,84,1.098,86,0.889,92,1.165,93,0.615,96,5.247,112,0.83,140,0.399,152,2.366,221,1.621,228,2.079,250,1.812,253,2.236,513,5.247,514,6.983,515,4.456,516,2.859,517,6.573,518,6.573,519,6.573,520,8.697,521,3.936,522,5.37,523,7.682,524,4.854,525,5.247,526,5,527,7.273,528,6.388,529,6.573,530,7.368,531,5.774,532,5.101,533,6.573,534,5.101,535,5.247,536,7.682,537,6.573,538,4.481,539,4.54,540,6.573,541,5.101,542,2.432,543,4.481,544,4.481,545,5.774,546,5.101,547,5.101,548,5.101,549,5.101]],["title/components/AdminComponent.html",[175,0.652,296,1.383]],["body/components/AdminComponent.html",[3,0.082,4,0.066,5,0.05,7,0.248,8,0.824,9,1.131,18,0.626,20,1.141,21,0.011,33,1.116,51,1.379,56,0.147,57,0.004,58,0.006,59,0.004,60,0.004,77,0.778,84,1.001,86,0.937,88,1.04,91,1.47,92,1.232,93,0.751,112,1.172,134,1.374,135,2.334,140,0.46,152,1.011,171,1.823,175,0.855,176,1.011,177,1.701,178,1.137,179,1.289,180,1.137,181,1.04,185,1.389,186,2.562,187,0.982,188,1.929,189,1.929,190,2.883,191,3.114,192,2.867,193,1.929,195,1.929,207,2.844,217,4.287,221,1.956,227,1.713,228,0.982,244,1.289,245,0.372,248,1.538,249,1.538,253,1.429,281,2.302,285,0.878,286,1.754,287,1.701,288,0.903,289,2.334,290,1.172,291,1.04,292,2.102,293,1.011,294,1.172,295,1.172,296,2.013,297,1.172,298,1.04,299,1.172,300,1.011,301,1.172,302,1.011,303,1.172,304,1.011,305,0.787,306,1.172,307,1.04,308,1.754,309,1.103,310,1.011,311,1.172,312,1.011,313,1.172,314,1.011,315,1.172,316,1.04,317,1.754,318,1.103,319,1.011,320,0.787,321,1.011,322,1.172,323,1.04,324,1.754,325,1.103,326,1.04,327,0.809,328,1.011,329,1.04,330,1.011,331,1.011,332,1.172,333,1.011,334,1.172,335,1.011,336,1.172,337,1.071,338,1.137,339,1.172,345,3.848,347,4.447,349,3.848,350,3.848,351,3.211,352,4.272,356,2.728,357,2.991,359,3.211,370,3.848,380,3.848,381,3.026,382,3.211,384,3.848,385,3.211,386,2.145,387,1.599,388,1.667,389,1.667,390,1.916,391,1.741,392,1.538,405,2.293,407,2.293,408,2.145,409,2.293,410,2.145,412,2.293,413,2.145,423,3.211,505,4.414,507,2.729,508,3.896,509,1.701,550,2.728,551,3.631,552,5.571,553,4.649,554,4.69,555,4.649,556,3.711,557,4.649,558,4.649,559,4.649,560,4.649,561,3.106,562,3.977,563,4.649,564,3.106,565,4.649,566,3.106,567,3.106,568,3.106,569,4.649,570,3.106,571,3.106,572,3.106,573,3.106,574,3.106,575,3.106,576,6.185,577,6.951,578,3.106,579,3.106,580,3.106,581,2.021,582,2.728,583,3.106,584,2.728,585,2.728,586,2.479,587,3.106,588,3.106,589,3.106,590,4.649,591,3.106,592,3.106,593,4.649,594,3.106,595,3.106,596,2.728,597,3.106,598,3.106,599,3.106,600,3.106,601,3.106,602,3.106,603,3.106,604,5.571,605,3.106,606,3.106,607,3.106,608,2.728,609,2.728,610,3.106,611,3.106,612,4.649,613,3.106,614,3.106,615,4.649,616,3.106,617,6.185,618,6.185,619,6.185,620,6.185,621,4.649,622,2.606,623,3.433,624,4.649,625,2.728,626,2.293,627,3.106]],["title/modules/AdminModule.html",[431,1.138,628,3.139]],["body/modules/AdminModule.html",[3,0.146,4,0.117,5,0.089,21,0.011,56,0.146,57,0.007,58,0.008,59,0.007,60,0.007,140,0.535,143,2.321,245,0.663,285,1.567,296,2.706,387,2.855,388,2.975,389,2.975,431,1.484,433,2.029,434,2.745,435,4.057,436,2.855,437,2.975,438,2.029,443,4.282,445,3.719,446,2.975,447,2.643,449,2.876,450,4.067,451,3.107,453,3.254,455,3.419,465,4.51,466,4.786,469,4.786,470,4.274,471,3.419,472,4.51,473,3.608,474,3.419,475,4.274,476,3.419,477,4.274,478,3.419,479,4.51,480,3.608,486,4.786,487,3.608,628,6.396,629,4.869,630,4.869,631,4.869,632,5.743,633,5.543,634,5.543,635,4.869]],["title/modules/AdminRoutingModule.html",[431,1.138,632,2.936]],["body/modules/AdminRoutingModule.html",[3,0.169,4,0.135,5,0.102,21,0.011,48,1.454,56,0.169,57,0.008,58,0.009,59,0.008,60,0.008,140,0.488,143,2.142,175,0.981,245,0.765,250,2.272,296,2.46,433,2.341,438,2.341,449,3.137,497,3.755,498,3.7,499,4.237,500,3.755,504,3.945,632,5.221,635,5.619,636,6.397]],["title/components/AppComponent.html",[175,0.652,298,1.424]],["body/components/AppComponent.html",[3,0.092,4,0.073,5,0.056,7,0.277,8,0.895,9,0.821,18,0.554,20,0.598,21,0.011,22,1.655,33,1.567,48,1.645,51,2.241,56,0.092,57,0.004,58,0.006,59,0.004,60,0.004,77,0.845,78,1.789,79,2.468,84,1.087,86,0.886,88,1.163,91,1.596,92,0.895,93,0.649,112,0.565,113,1.905,140,0.361,163,2.976,175,0.913,176,1.13,177,1.848,178,1.271,179,1.441,180,1.271,181,1.163,187,1.098,188,2.095,189,2.095,190,2.915,191,3.154,193,2.095,195,2.095,221,1.245,228,2.065,244,1.441,245,0.416,249,1.72,253,2.007,285,0.982,286,1.905,287,1.848,288,1.01,289,2.464,290,1.311,291,1.163,292,2.244,293,1.13,294,1.311,295,1.311,296,1.13,297,1.311,298,2.187,299,1.311,300,1.13,301,1.311,302,1.13,303,1.311,304,1.13,305,1.655,306,1.311,307,1.163,308,1.905,309,1.234,310,1.13,311,1.311,312,1.13,313,1.311,314,1.13,315,1.311,316,1.163,317,1.905,318,1.234,319,1.13,320,0.88,321,1.13,322,1.311,323,1.163,324,1.905,325,1.234,326,1.163,327,1.315,328,1.13,329,1.163,330,1.13,331,1.13,332,1.311,333,1.13,334,1.311,335,1.13,336,1.311,337,1.198,338,1.271,339,1.311,357,3.099,378,2.963,392,1.72,394,4.392,395,1.864,399,2.772,401,4.434,509,1.271,626,3.728,637,3.051,638,2.6,639,5.948,640,5.049,641,5.224,642,5.224,643,5.224,644,5.948,645,5.049,646,4.434,647,5.049,648,5.049,649,2.772,650,4.464,651,4.606,652,4.861,653,5.049,654,5.049,655,5.212,656,3.473,657,6.529,658,3.473,659,3.473,660,3.473,661,5.049,662,3.473,663,2.261,664,5.049,665,4.434,666,4.434,667,3.473,668,3.286,669,3.473,670,4.392,671,3.473,672,3.051,673,3.051,674,3.051,675,5.049,676,3.473,677,3.473,678,5.224,679,4.392,680,4.434,681,5.049,682,5.049,683,5.049,684,4.03,685,5.049,686,3.487,687,3.473,688,2.565,689,3.473,690,2.772,691,3.473,692,3.473,693,3.473,694,3.051,695,3.473,696,3.473,697,3.473,698,2.142,699,4.108,700,2.772,701,2.565,702,2.772,703,2.772,704,2.772,705,3.051,706,3.051,707,3.473,708,4.434,709,3.051,710,4.434,711,3.051,712,3.473,713,3.473,714,3.473,715,3.473,716,5.049,717,3.473,718,3.473,719,3.473,720,1.789,721,3.473]],["title/modules/AppModule.html",[431,1.138,722,3.139]],["body/modules/AppModule.html",[3,0.127,4,0.101,5,0.077,21,0.011,56,0.127,57,0.006,58,0.008,59,0.006,60,0.006,114,2.434,123,1.99,140,0.528,143,2.115,144,2.057,145,2.47,245,0.574,248,2.374,285,1.356,298,2.872,387,2.47,431,1.283,433,1.755,434,2.374,435,3.788,436,3.635,437,3.788,438,1.755,443,4.122,445,3.388,446,2.574,447,2.287,449,2.62,453,2.815,455,2.958,459,5.04,460,2.574,461,3.541,465,4.109,722,6.505,723,4.212,724,4.212,725,4.212,726,4.212,727,4.212,728,5.527,729,5.527,730,5.31,731,5.527,732,5.527,733,4.795,734,6.314,735,5.04,736,2.815,737,5.04,738,4.795,739,4.795,740,6.314,741,4.795,742,5.988,743,6.314,744,2.47,745,4.662,746,4.361,747,4.212,748,4.795,749,3.828,750,3.828,751,4.795,752,4.109,753,4.212,754,4.795,755,4.795,756,4.795,757,4.212,758,4.795,759,4.795,760,4.795,761,4.795,762,5.539,763,5.988,764,5.635]],["title/modules/AppRoutingModule.html",[431,1.138,728,2.936]],["body/modules/AppRoutingModule.html",[3,0.16,4,0.128,5,0.097,21,0.011,48,1.379,56,0.16,57,0.007,58,0.009,59,0.007,60,0.007,140,0.478,143,2.033,245,0.726,250,2.156,433,2.221,438,2.221,449,3.04,497,3.562,498,3.618,499,4.106,500,4.619,501,4.191,502,4.191,503,3.95,728,5.059,746,5.059,747,5.331,765,6.069,766,7.326,767,4.845,768,6.435,769,6.069,770,6.069,771,6.069,772,6.069,773,4.845,774,6.069,775,6.069]],["title/interfaces/AreaName.html",[0,1.107,510,2.495]],["body/interfaces/AreaName.html",[0,2.132,2,2.71,3,0.161,4,0.129,5,0.098,7,0.488,8,1.303,12,3.64,17,3.143,18,0.587,20,1.496,21,0.011,22,1.547,29,2.91,45,2.533,56,0.161,57,0.007,58,0.009,59,0.007,93,0.796,135,3.162,227,1.876,505,4.233,506,4.215,507,3.583,508,3.421,509,2.234,510,4.63,511,5.329,512,4.534]],["title/interfaces/AreaType.html",[0,1.107,512,2.622]],["body/interfaces/AreaType.html",[0,2.132,2,2.71,3,0.161,4,0.129,5,0.098,7,0.488,8,1.303,12,3.64,17,3.143,18,0.587,20,1.496,21,0.011,22,1.547,29,3.904,45,2.533,56,0.161,57,0.007,58,0.009,59,0.007,93,0.796,135,3.162,227,1.876,505,4.233,506,4.215,507,3.583,508,3.421,509,2.234,510,4.315,511,3.973,512,4.865]],["title/components/AuthComponent.html",[175,0.652,300,1.383]],["body/components/AuthComponent.html",[3,0.088,4,0.071,5,0.054,7,0.268,8,0.872,9,0.8,18,0.571,20,0.577,21,0.011,33,1.398,37,1.658,48,1.459,56,0.088,57,0.004,58,0.006,59,0.004,60,0.004,77,0.823,79,2.965,84,1.058,86,0.922,88,1.122,91,1.555,92,0.872,93,0.64,112,1.112,113,2.422,114,1.695,123,2.837,134,1.212,140,0.415,152,1.6,163,2.499,175,0.894,176,1.09,177,1.8,178,1.226,179,1.39,180,1.226,181,1.122,185,1.47,186,2.678,187,1.059,188,2.041,189,2.041,190,2.905,191,3.141,193,2.041,195,2.041,200,4.301,207,2.951,211,3.63,216,5.453,218,3.963,221,1.762,225,4.023,227,1.973,228,1.842,231,4.216,244,1.39,245,0.401,246,2.473,247,1.798,248,1.658,249,1.658,250,1.19,253,2.523,255,2.473,256,2.473,273,3.396,281,2.434,283,3.2,285,0.947,286,1.855,287,2.132,288,0.974,289,2.422,290,1.264,291,1.122,292,2.198,293,1.09,294,1.264,295,1.264,296,1.09,297,1.264,298,1.122,299,1.264,300,2.088,301,1.264,302,1.09,303,1.264,304,1.09,305,1.246,306,1.264,307,1.122,308,1.855,309,1.19,310,1.09,311,1.264,312,1.09,313,1.264,314,1.09,315,1.264,316,1.122,317,1.855,318,1.19,319,1.09,320,0.849,321,1.09,322,1.264,323,1.122,324,1.855,325,1.19,326,1.122,327,0.872,328,1.09,329,1.122,330,1.09,331,1.09,332,1.264,333,1.09,334,1.264,335,1.09,336,1.264,337,1.155,338,1.226,339,1.264,395,1.798,525,5.123,582,4.319,649,2.674,650,4.407,670,3.63,674,2.942,699,3.396,767,3.925,776,2.942,777,5.825,778,4.917,779,5.825,780,5.117,781,4.65,782,6.276,783,5.123,784,6.418,785,4.917,786,5.825,787,4.917,788,3.35,789,3.35,790,3.35,791,3.35,792,4.917,793,3.35,794,3.35,795,3.35,796,3.35,797,3.35,798,3.35,799,3.35,800,3.914,801,3.35,802,2.942,803,3.35,804,3.35,805,2.674,806,3.35,807,4.917,808,3.35,809,2.942,810,2.473,811,2.942,812,3.35,813,3.35,814,2.18,815,3.35,816,2.313,817,2.313,818,2.942,819,3.35,820,3.35,821,3.35,822,3.35,823,3.35,824,3.35,825,3.35,826,3.35,827,3.35,828,3.35,829,2.756,830,4.917,831,2.473,832,3.032,833,4.917]],["title/guards/AuthGuard.html",[746,2.936,834,2.622]],["body/guards/AuthGuard.html",[3,0.119,4,0.095,5,0.072,7,0.36,9,0.985,18,0.484,21,0.011,56,0.119,57,0.005,58,0.007,59,0.005,60,0.008,64,3.524,65,3.395,74,2.32,77,1.014,84,0.97,86,0.701,92,1.074,93,0.567,112,1.19,113,2.286,114,2.359,119,3.736,120,4.183,121,4.472,123,1.87,127,4.835,134,1.494,140,0.415,143,1.509,155,3.672,175,0.929,181,2.028,185,1.81,218,4.526,227,1.862,245,0.539,250,1.6,253,2.249,498,2.785,509,2.217,515,4.503,521,3.388,542,2.148,562,3.25,581,5.315,638,2.32,746,4.183,767,5.841,773,6.276,800,3.489,834,4.513,835,3.596,836,3.957,837,4.835,838,5.32,839,4.472,840,5.32,841,3.596,842,4.505,843,5.32,844,2.999,845,5.403,846,4.472,847,3.736,848,4.472,849,4.472,850,3.957,851,6.906,852,6.427,853,4.505,854,5.32,855,6.057,856,4.472,857,3.736,858,4.835,859,4.835,860,5.32,861,4.835,862,6.427,863,5.841,864,4.472,865,5.32,866,5.32,867,6.01,868,6.057,869,4.472,870,6.057,871,1.915,872,3.327,873,3.327,874,2.418,875,3.327,876,3.957,877,3.957]],["title/modules/AuthModule.html",[431,1.138,878,3.139]],["body/modules/AuthModule.html",[3,0.15,4,0.12,5,0.091,21,0.011,56,0.15,57,0.007,58,0.008,59,0.007,60,0.007,140,0.53,143,2.351,245,0.677,247,3.038,285,1.601,300,2.72,335,2.72,431,1.515,433,2.072,434,2.803,435,4.095,436,2.915,437,3.038,438,2.072,445,3.768,446,3.038,447,2.699,449,2.914,450,4.121,451,3.173,453,3.323,470,4.33,471,3.492,475,4.33,476,3.492,477,4.33,478,3.492,481,4.849,482,3.91,486,4.849,487,3.684,491,5.604,878,6.417,879,4.972,880,4.972,881,4.972,882,5.773,883,5.661,884,5.661,885,4.972,886,5.661,887,4.972]],["title/modules/AuthRoutingModule.html",[431,1.138,882,2.936]],["body/modules/AuthRoutingModule.html",[3,0.166,4,0.133,5,0.101,21,0.011,48,1.428,56,0.166,57,0.007,58,0.009,59,0.007,60,0.007,140,0.485,143,2.104,175,0.964,245,0.752,250,2.232,300,2.434,433,2.3,438,2.3,449,3.104,497,3.688,498,3.672,499,4.192,500,4.391,501,4.34,502,4.34,503,4.09,504,3.876,882,5.166,885,5.519,888,6.284]],["title/injectables/AuthService.html",[650,2.622,871,1.344]],["body/injectables/AuthService.html",[0,0.699,3,0.071,4,0.057,5,0.043,7,0.214,8,0.737,9,1.01,18,0.593,20,0.462,21,0.011,22,1.054,23,2.872,33,0.644,48,1.745,51,1.846,56,0.071,57,0.003,58,0.005,59,0.003,60,0.003,77,0.696,79,3.228,84,0.895,86,0.935,92,1.1,93,0.581,112,1.265,113,2.802,114,1.434,123,1.726,134,1.918,135,1.013,140,0.441,144,1.151,145,1.382,152,2.303,155,1.44,163,3.037,221,1.831,227,1.565,228,0.849,245,0.321,253,1.908,273,2.872,305,1.841,320,0.68,357,2.843,394,4.236,395,3.331,397,1.853,399,4.579,447,1.28,460,1.44,522,1.982,539,3.517,622,1.504,625,4.473,638,1.382,650,2.565,652,4.458,663,4.458,680,2.357,684,2.142,744,1.382,752,2.707,753,2.357,782,5.039,800,3.266,802,3.653,811,2.357,817,1.853,829,1.504,831,3.76,839,1.982,844,1.329,871,1.315,874,1.44,876,2.357,889,1.44,890,2.357,891,3.854,892,5.093,893,5.093,894,5.736,895,4.579,896,4.579,897,5.736,898,5.736,899,5.736,900,4.159,901,5.736,902,5.039,903,4.159,904,4.159,905,1.982,906,4.848,907,4.159,908,2.684,909,2.684,910,2.684,911,2.684,912,2.684,913,2.684,914,2.684,915,4.159,916,2.684,917,4.159,918,2.684,919,2.684,920,4.159,921,2.684,922,4.159,923,4.159,924,2.684,925,5.093,926,4.159,927,2.684,928,3.653,929,2.684,930,2.684,931,2.684,932,2.684,933,2.684,934,2.684,935,2.684,936,1.504,937,2.684,938,2.684,939,2.872,940,2.684,941,4.159,942,2.684,943,2.684,944,2.684,945,2.684,946,3.653,947,6.566,948,2.684,949,2.684,950,5.093,951,6.566,952,5.093,953,3.32,954,5.093,955,5.736,956,5.093,957,4.159,958,2.357,959,4.159,960,4.159,961,4.159,962,2.232,963,4.159,964,4.159,965,5.736,966,4.473,967,4.579,968,2.684,969,2.684,970,4.159,971,5.093,972,5.093,973,5.093,974,2.684,975,2.684,976,5.093,977,2.684,978,2.357,979,2.357,980,2.684,981,4.159,982,2.684,983,2.684,984,2.684,985,2.684,986,2.684,987,2.684,988,2.684,989,2.684,990,2.684,991,2.684,992,4.159,993,2.684,994,2.684,995,2.684,996,4.159,997,4.065,998,2.684,999,2.684,1000,2.684,1001,2.684,1002,2.357,1003,2.684,1004,2.684,1005,2.684,1006,2.684,1007,1.853,1008,3.32,1009,2.357,1010,5.093,1011,2.428,1012,2.357,1013,1.982,1014,2.684,1015,2.357,1016,2.142,1017,2.142,1018,2.684,1019,2.684,1020,2.684,1021,2.684,1022,2.684,1023,2.684,1024,2.684,1025,2.684,1026,1.982,1027,2.684,1028,2.684,1029,4.159,1030,2.684,1031,4.159,1032,2.357,1033,2.684,1034,2.684,1035,4.159,1036,2.684,1037,2.684,1038,1.382,1039,2.684,1040,2.684,1041,3.653,1042,2.684,1043,4.159,1044,4.159,1045,2.684,1046,2.684,1047,2.684,1048,3.653,1049,2.684,1050,2.684,1051,2.684,1052,2.684,1053,2.684,1054,2.684,1055,2.684,1056,2.684,1057,2.684,1058,2.684]],["title/injectables/BlockSyncService.html",[871,1.344,1059,3.139]],["body/injectables/BlockSyncService.html",[3,0.087,4,0.07,5,0.053,7,0.263,8,0.86,9,1.194,18,0.614,20,1.298,21,0.011,22,2.194,33,1.383,47,2.603,48,1.712,51,2.824,56,0.087,57,0.004,58,0.006,59,0.004,60,0.004,73,3.554,77,0.812,79,2.815,84,1.044,86,0.89,92,1.301,93,0.687,95,2.598,112,1.155,113,2.4,134,1.196,140,0.457,144,1.41,145,1.693,152,2.452,221,1.81,228,1.822,245,0.393,253,1.771,272,3.156,327,1.263,357,3.047,378,2.847,391,1.843,392,1.628,393,2.14,638,1.693,642,5.061,643,5.061,651,4.378,871,1.534,874,1.764,889,1.764,936,1.843,962,1.764,1059,3.581,1060,6.872,1061,2.888,1062,4.85,1063,4.85,1064,4.85,1065,4.85,1066,4.85,1067,4.85,1068,3.288,1069,4.778,1070,4.85,1071,4.85,1072,6.014,1073,5.421,1074,3.288,1075,4.255,1076,4.85,1077,4.621,1078,5.762,1079,3.288,1080,4.85,1081,3.288,1082,3.413,1083,4.85,1084,3.288,1085,4.85,1086,6.361,1087,3.288,1088,4.85,1089,6.361,1090,6.361,1091,6.361,1092,7.534,1093,6.361,1094,6.361,1095,3.288,1096,3.382,1097,3.288,1098,3.288,1099,1.764,1100,3.288,1101,2.624,1102,3.288,1103,3.288,1104,3.288,1105,5.762,1106,3.288,1107,3.288,1108,2.888,1109,4.85,1110,3.288,1111,3.288,1112,3.288,1113,3.288,1114,3.288,1115,3.288,1116,3.288,1117,3.288,1118,4.85,1119,3.288,1120,3.288,1121,3.288,1122,3.288,1123,3.288,1124,4.85,1125,4.85,1126,3.288,1127,3.871,1128,4.85,1129,3.288,1130,3.288,1131,4.85,1132,3.288,1133,4.85,1134,3.288,1135,4.85,1136,4.85,1137,3.288,1138,3.288,1139,4.26,1140,3.288,1141,2.888,1142,3.288,1143,3.288,1144,3.288,1145,3.288,1146,3.288,1147,3.288,1148,3.288,1149,4.85,1150,3.288,1151,3.288,1152,3.871,1153,4.85,1154,3.288,1155,3.288,1156,3.288,1157,4.85,1158,3.288,1159,3.288,1160,3.288,1161,3.288,1162,3.288,1163,3.288,1164,3.288]],["title/classes/BlocksBloom.html",[60,0.005,1165,2.622]],["body/classes/BlocksBloom.html",[1,3.757,3,0.144,4,0.116,5,0.087,7,0.437,8,1.218,18,0.662,20,1.517,21,0.011,22,2.19,33,1.312,56,0.144,57,0.007,58,0.008,59,0.007,60,0.01,62,2.128,86,0.94,93,0.512,95,2.001,140,0.332,227,1.681,320,1.385,327,1.789,509,2.001,720,3.538,829,3.064,1082,4.447,1165,4.633,1166,3.559,1167,5.188,1168,5.188,1169,5.188,1170,5.188,1171,5.188,1172,5.468,1173,5.468,1174,5.468,1175,5.468,1176,5.468,1177,3.776,1178,5.008,1179,2.607,1180,3.559,1181,3.559,1182,3.776,1183,3.776,1184,3.372,1185,3.209,1186,3.776,1187,3.776,1188,3.776,1189,3.559,1190,3.559]],["title/interfaces/Category.html",[0,1.107,12,2.105]],["body/interfaces/Category.html",[0,2.132,2,2.71,3,0.161,4,0.129,5,0.098,7,0.488,8,1.303,12,3.906,17,4.217,18,0.587,20,1.496,21,0.011,22,1.547,29,2.91,45,2.533,56,0.161,57,0.007,58,0.009,59,0.007,93,0.796,135,3.162,227,1.876,505,4.233,506,4.215,507,3.583,508,3.421,509,2.234,510,4.315,511,3.973,512,4.534]],["title/classes/Conversion.html",[60,0.005,720,2.189]],["body/classes/Conversion.html",[1,3.844,3,0.141,4,0.113,5,0.085,7,0.427,8,1.2,18,0.676,20,1.501,21,0.011,22,2.182,33,1.281,56,0.141,57,0.006,58,0.008,59,0.006,60,0.01,62,2.079,86,0.968,93,0.5,95,1.954,140,0.324,227,1.641,320,1.353,327,1.762,509,2.72,720,3.827,829,2.993,1082,4.586,1165,4.174,1166,3.475,1167,3.688,1168,3.688,1169,3.688,1170,3.688,1171,3.688,1177,3.688,1178,5.16,1179,2.546,1180,3.475,1181,3.475,1182,3.688,1183,3.688,1184,3.293,1185,3.134,1186,5.132,1187,5.132,1188,5.132,1189,4.836,1190,4.836,1191,5.34,1192,5.34,1193,5.34,1194,5.34,1195,5.34,1196,5.34,1197,5.34]],["title/components/CreateAccountComponent.html",[175,0.652,302,1.383]],["body/components/CreateAccountComponent.html",[3,0.082,4,0.066,5,0.05,7,0.249,8,0.827,9,0.508,12,3.574,14,4.452,16,3.72,18,0.634,21,0.011,22,1.957,29,2.225,33,1.12,45,2.573,56,0.082,57,0.004,58,0.006,59,0.004,60,0.004,67,3.037,77,0.781,84,1.004,86,0.908,88,2.66,91,2.539,92,0.553,93,0.58,112,0.759,114,1.076,123,2.319,134,1.151,135,2.8,140,0.423,152,1.518,175,0.857,176,1.015,177,1.708,178,1.142,179,1.295,180,1.142,181,1.045,185,1.395,186,2.569,187,0.987,188,1.936,189,1.936,190,2.885,191,3.116,193,1.936,195,1.936,200,4.126,207,2.851,211,3.445,215,2.491,216,5.142,217,4.452,221,1.529,225,3.859,227,1.434,228,1.475,231,4.093,244,1.295,245,0.373,246,2.304,247,1.675,248,1.545,249,1.545,253,1.718,255,2.304,256,5.704,258,2.741,272,4.035,281,2.31,282,4.532,283,5.477,285,0.882,286,1.761,287,1.708,288,0.907,289,2.34,290,1.178,291,1.045,292,2.109,293,1.015,294,1.178,295,1.178,296,1.015,297,1.178,298,1.045,299,1.178,300,1.015,301,1.178,302,2.017,303,1.178,304,1.015,305,0.791,306,1.178,307,1.045,308,1.761,309,1.108,310,1.015,311,1.178,312,1.015,313,1.178,314,1.015,315,1.178,316,1.045,317,1.761,318,1.108,319,1.015,320,0.791,321,1.015,322,1.178,323,1.045,324,1.761,325,1.108,326,1.045,327,0.813,328,1.015,329,1.045,330,1.015,331,1.015,332,1.178,333,1.015,334,1.178,335,1.015,336,1.178,337,1.076,338,1.142,339,1.178,344,3.859,391,1.749,392,1.545,393,2.031,402,2.741,403,2.741,421,4.908,422,5.559,463,5.864,509,1.708,510,1.832,781,4.46,783,4.949,805,3.724,1198,6.976,1199,2.741,1200,5.588,1201,4.666,1202,4.126,1203,4.126,1204,5.588,1205,4.126,1206,5.588,1207,5.33,1208,4.666,1209,3.121,1210,3.121,1211,3.121,1212,3.121,1213,3.121,1214,3.121,1215,3.121,1216,3.121,1217,3.121,1218,3.121,1219,3.121,1220,3.121,1221,3.121,1222,5.588,1223,3.121,1224,6.637,1225,3.121,1226,3.121,1227,3.121,1228,3.121,1229,3.121,1230,3.121,1231,3.121,1232,3.121,1233,3.121,1234,3.121,1235,4.035,1236,4.666,1237,3.445,1238,4.666,1239,5.446,1240,5.446,1241,4.578,1242,4.666,1243,4.098]],["title/classes/CustomErrorStateMatcher.html",[60,0.005,231,2.622]],["body/classes/CustomErrorStateMatcher.html",[3,0.132,4,0.106,5,0.08,7,0.399,9,0.812,18,0.399,21,0.011,33,1.555,48,1.134,56,0.132,57,0.006,58,0.008,59,0.006,60,0.006,62,1.942,64,3.337,74,2.57,77,1.085,86,0.578,92,0.885,93,0.467,112,1.054,114,2.235,119,3.997,120,4.475,134,1.231,140,0.393,155,3.478,180,2.372,185,2.151,225,4.475,227,2.212,231,3.997,247,2.678,287,2.372,305,2.05,487,3.248,562,3.478,581,4.218,1032,6.691,1075,5.974,1244,5.692,1245,4.383,1246,5.692,1247,4.475,1248,5.692,1249,6.845,1250,6.48,1251,6.48,1252,6.48,1253,6.48,1254,6.48,1255,7.618,1256,6.48,1257,6.48,1258,7.618,1259,7.618,1260,7.618,1261,4.99,1262,4.958,1263,5.974,1264,6.575,1265,6.48,1266,5.692,1267,5.692,1268,6.48,1269,6.48,1270,6.48,1271,4.99,1272,4.99,1273,4.99,1274,4.99]],["title/classes/CustomValidator.html",[60,0.005,1275,3.393]],["body/classes/CustomValidator.html",[3,0.121,4,0.097,5,0.073,7,0.365,9,0.995,18,0.488,20,1.187,21,0.011,33,1.467,48,1.566,56,0.121,57,0.005,58,0.007,59,0.005,60,0.005,62,1.779,64,3.549,65,3.427,72,4.515,77,1.232,86,0.708,92,1.084,93,0.572,112,1.121,114,1.576,119,4.539,125,4.881,134,1.892,140,0.277,155,3.698,221,1.508,227,1.405,247,2.452,305,1.944,474,5.053,800,2.179,997,5.874,1038,4.066,1075,5.434,1235,3.98,1246,5.371,1248,5.371,1249,6.54,1262,4.79,1264,6.124,1266,6.934,1275,4.881,1276,4.014,1277,6.115,1278,4.515,1279,7.895,1280,6.115,1281,6.115,1282,6.115,1283,7.671,1284,4.569,1285,7.359,1286,6.54,1287,6.115,1288,7.895,1289,3.98,1290,5.371,1291,6.115,1292,6.892,1293,7.895,1294,4.569,1295,7.359,1296,7.359,1297,6.115,1298,7.359,1299,5.371,1300,4.569,1301,6.115,1302,4.569,1303,4.569,1304,4.569,1305,4.569,1306,4.569]],["title/components/ErrorDialogComponent.html",[175,0.652,304,1.383]],["body/components/ErrorDialogComponent.html",[3,0.123,4,0.099,5,0.075,7,0.372,8,1.099,9,0.759,18,0.495,21,0.011,42,3.293,56,0.123,57,0.006,58,0.007,59,0.006,60,0.006,78,3.585,84,1.004,86,0.717,88,1.562,91,1.96,92,0.827,93,0.694,140,0.376,175,1.068,176,1.517,177,2.268,178,1.707,179,1.935,180,1.707,181,1.562,187,1.474,188,2.572,189,2.572,190,2.986,191,3.243,193,2.572,195,2.572,244,1.935,245,0.558,285,1.318,286,2.339,287,2.268,288,1.355,289,2.799,290,1.759,291,1.562,292,2.627,293,1.517,294,1.759,295,1.759,296,1.517,297,1.759,298,1.562,299,1.759,300,1.517,301,1.759,302,1.517,303,1.759,304,2.414,305,2.085,306,1.759,307,1.562,308,2.339,309,1.656,310,1.517,311,1.759,312,1.517,313,1.759,314,1.517,315,1.759,316,1.562,317,2.339,318,1.656,319,1.517,320,1.182,321,1.517,322,1.759,323,1.562,324,2.339,325,1.656,326,1.562,327,1.214,328,1.517,329,1.562,330,1.517,331,1.517,332,1.759,333,1.517,334,1.759,335,1.517,336,1.759,337,1.608,338,1.707,339,1.759,381,3.035,562,3.326,1011,2.955,1307,6.115,1308,5.141,1309,4.096,1310,5.444,1311,6.962,1312,6.198,1313,4.663,1314,4.663,1315,4.663,1316,4.663,1317,4.663,1318,4.663,1319,3.722,1320,4.663,1321,6.198,1322,6.198]],["title/injectables/ErrorDialogService.html",[652,2.767,871,1.344]],["body/injectables/ErrorDialogService.html",[3,0.146,4,0.117,5,0.088,7,0.441,8,1.226,9,1.125,18,0.603,21,0.011,33,1.326,42,3.069,48,1.256,56,0.146,57,0.007,58,0.008,59,0.007,60,0.007,77,1.158,78,4.279,84,1.488,86,0.916,92,1.226,93,0.647,112,0.899,114,1.905,123,3.283,134,1.362,140,0.458,227,2.125,228,1.747,245,0.661,304,1.797,626,4.079,638,2.845,652,4.5,871,2.186,874,2.965,889,2.965,1308,4.079,1310,6.947,1319,4.41,1323,7.153,1324,4.852,1325,7.547,1326,6.914,1327,5.524,1328,8.144,1329,6.914,1330,6.914,1331,5.524,1332,5.524,1333,6.914,1334,4.852,1335,4.852,1336,7.547,1337,5.524,1338,5.524,1339,5.524,1340,5.524]],["title/interceptors/ErrorInterceptor.html",[729,2.936,814,2.767]],["body/interceptors/ErrorInterceptor.html",[3,0.132,4,0.106,5,0.08,7,0.4,9,1.056,18,0.519,20,0.862,21,0.011,56,0.132,57,0.006,58,0.008,59,0.006,60,0.006,73,3.087,77,1.087,84,1.397,86,0.752,92,1.151,93,0.608,112,0.814,134,1.777,140,0.491,185,1.496,218,4.424,245,0.599,249,2.478,250,1.778,253,2.216,305,1.933,357,3.421,392,2.478,509,1.832,521,3.776,526,4.691,542,2.387,652,5.27,673,4.397,729,4.484,744,2.578,816,3.457,871,2.053,966,4.397,1007,3.457,1009,4.397,1011,2.387,1041,4.397,1099,2.686,1299,5.703,1341,3.696,1342,4.397,1343,4.795,1344,5.006,1345,5.006,1346,4.795,1347,5.632,1348,5.632,1349,5.006,1350,3.696,1351,3.696,1352,4.795,1353,5.183,1354,4.397,1355,5.006,1356,5.006,1357,7.207,1358,5.006,1359,5.006,1360,5.006,1361,6.493,1362,5.006,1363,5.006,1364,5.703,1365,5.006,1366,4.484,1367,4.226,1368,5.183,1369,4.397,1370,5.006,1371,5.006,1372,5.006,1373,6.493,1374,5.006,1375,5.006,1376,4.397,1377,5.183,1378,5.006,1379,5.006,1380,6.493,1381,5.006,1382,5.006,1383,5.006,1384,4.397,1385,5.006,1386,5.006]],["title/components/FooterComponent.html",[175,0.652,307,1.424]],["body/components/FooterComponent.html",[3,0.128,4,0.103,5,0.078,7,0.388,21,0.01,56,0.128,57,0.006,58,0.008,59,0.006,60,0.006,77,1.067,84,1.529,86,0.737,88,1.628,91,2.014,93,0.665,112,0.791,140,0.295,175,1.09,176,1.582,177,2.332,178,1.779,179,2.017,180,1.779,181,1.628,185,1.904,186,3.267,187,1.537,188,2.644,189,2.644,190,2.994,191,3.254,193,2.644,195,2.644,207,3.467,221,1.571,244,2.017,245,0.582,285,1.374,286,2.404,287,2.332,288,1.413,289,2.846,290,1.834,291,1.628,292,2.681,293,1.582,294,1.834,295,1.834,296,1.582,297,1.834,298,1.628,299,1.834,300,1.582,301,1.834,302,1.582,303,1.834,304,1.582,305,1.232,306,1.834,307,2.526,308,2.404,309,1.727,310,1.582,311,1.834,312,1.582,313,1.834,314,1.582,315,1.834,316,1.628,317,2.404,318,1.727,319,1.582,320,1.232,321,1.582,322,1.834,323,1.628,324,2.404,325,1.727,326,1.628,327,1.266,328,1.582,329,1.628,330,1.582,331,1.582,332,1.834,333,1.582,334,1.834,335,1.582,336,1.834,337,1.676,338,1.779,339,1.834,1016,5.085,1017,5.085,1387,4.27,1388,4.704,1389,7.106,1390,6.37,1391,4.861,1392,4.861,1393,6.37]],["title/components/FooterStubComponent.html",[175,0.652,309,1.51]],["body/components/FooterStubComponent.html",[3,0.135,4,0.108,5,0.082,21,0.01,56,0.192,57,0.006,58,0.008,59,0.006,60,0.009,88,1.711,91,2.081,93,0.681,140,0.31,175,1.01,176,1.663,177,2.408,178,2.664,180,1.87,181,1.711,187,1.616,190,3.001,191,3.276,245,0.611,285,1.445,286,2.483,287,2.408,288,1.485,289,2.9,290,1.928,291,1.711,292,2.746,293,1.663,294,1.928,295,1.928,296,1.663,297,1.928,298,1.711,299,1.928,300,1.663,301,1.928,302,1.663,303,1.928,304,1.663,305,1.295,306,1.928,307,1.711,308,2.483,309,2.73,310,1.663,311,1.928,312,1.663,313,1.928,314,1.663,315,1.928,316,1.711,317,2.483,318,2.337,319,1.663,320,1.295,321,1.663,322,1.928,323,1.711,324,2.483,325,2.337,326,1.711,327,1.331,328,1.663,329,1.711,330,1.663,331,1.663,332,1.928,333,1.663,334,1.928,335,1.663,336,1.928,337,1.762,338,1.87,339,1.928,431,1.367,516,2.864,698,3.151,1388,4.859,1394,3.773,1395,5.81,1396,3.773]],["title/injectables/GlobalErrorHandler.html",[730,2.767,871,1.344]],["body/injectables/GlobalErrorHandler.html",[3,0.088,4,0.07,5,0.053,7,0.265,8,0.866,9,1.04,18,0.643,20,1.302,21,0.011,22,1.238,33,0.797,48,1.453,56,0.129,57,0.004,58,0.006,59,0.004,60,0.007,64,3.793,65,3.993,74,1.711,77,0.818,78,1.711,84,1.052,86,0.789,92,1.133,93,0.598,112,1.04,114,2.204,119,3.014,123,1.379,134,0.819,135,2.412,140,0.388,142,2.294,143,1.112,152,1.081,155,3.952,218,4.055,221,1.576,227,1.965,228,1.05,245,0.397,250,1.18,253,2.411,305,2.261,357,3.057,397,3.375,515,3.993,562,3.823,690,2.652,730,3.18,737,5.103,744,1.711,844,3.165,845,3.608,846,3.608,847,3.014,848,3.608,849,4.72,871,1.545,889,1.783,936,1.862,939,4.004,967,2.652,1007,4.004,1008,2.652,1011,2.764,1235,3.18,1286,5.687,1353,3.901,1366,2.294,1367,3.773,1397,5.687,1398,2.652,1399,4.292,1400,4.292,1401,4.292,1402,4.292,1403,5.03,1404,5.092,1405,4.887,1406,6.637,1407,4.887,1408,2.918,1409,4.887,1410,4.292,1411,4.292,1412,4.292,1413,4.292,1414,3.322,1415,3.901,1416,3.901,1417,3.608,1418,5.615,1419,5.103,1420,5.615,1421,5.103,1422,4.292,1423,3.322,1424,5.615,1425,5.092,1426,4.292,1427,4.292,1428,5.092,1429,4.292,1430,3.322,1431,4.292,1432,3.901,1433,4.292,1434,3.901,1435,4.292,1436,3.901,1437,4.292,1438,4.292,1439,2.918,1440,3.608,1441,2.918,1442,2.918,1443,2.918,1444,2.918,1445,2.918,1446,2.918,1447,2.918,1448,2.918,1449,4.292,1450,2.918,1451,2.652,1452,2.918,1453,2.918,1454,2.918,1455,2.918,1456,2.918,1457,2.918,1458,2.918,1459,2.918,1460,2.918,1461,2.918,1462,2.918,1463,2.918,1464,2.918,1465,4.292,1466,4.292,1467,2.652,1468,2.918,1469,2.918,1470,2.918]],["title/interceptors/HttpConfigInterceptor.html",[731,2.936,814,2.767]],["body/interceptors/HttpConfigInterceptor.html",[3,0.154,4,0.123,5,0.093,7,0.465,9,0.948,18,0.465,20,1.004,21,0.011,48,1.324,56,0.154,57,0.007,58,0.009,59,0.007,60,0.007,77,1.197,84,1.664,86,0.827,92,1.033,93,0.545,112,0.948,134,1.437,140,0.469,185,1.741,245,0.697,320,1.959,521,3.827,526,5.031,542,2.778,731,4.935,744,3,871,2.26,946,5.117,958,5.117,1341,4.302,1343,5.277,1346,5.277,1347,5.951,1348,5.951,1350,5.277,1351,4.302,1352,5.277,1471,6.79,1472,5.117,1473,5.826,1474,5.826,1475,5.826,1476,5.826,1477,4.651]],["title/classes/HttpError.html",[60,0.005,939,2.936]],["body/classes/HttpError.html",[3,0.099,4,0.079,5,0.06,7,0.298,8,0.943,9,0.607,18,0.592,20,1.344,21,0.011,22,1.808,48,1.534,56,0.14,57,0.004,58,0.006,59,0.004,60,0.008,62,1.453,64,3.19,65,3.471,74,1.922,78,3.19,84,1.144,86,0.615,92,0.662,93,0.349,112,0.607,114,2.136,119,2.302,123,1.549,134,0.92,135,2.006,140,0.41,142,2.578,143,1.25,152,1.214,155,4.095,218,3.622,221,1.311,227,1.904,245,0.447,250,1.326,253,2.28,305,2.258,357,2.801,397,2.578,515,4.156,562,4.415,690,2.979,730,2.429,737,4.944,744,1.922,844,2.633,845,2.756,846,2.756,847,2.302,848,2.756,849,3.926,871,1.681,936,2.092,939,4.927,967,2.979,1007,4.277,1008,2.979,1011,3.402,1235,4.393,1286,4.944,1353,4.244,1366,3.672,1367,4.643,1397,4.944,1398,2.979,1399,3.279,1400,3.279,1401,3.279,1402,3.279,1403,5.268,1404,3.279,1406,6.514,1410,3.279,1411,3.279,1412,3.279,1413,3.279,1415,2.979,1416,2.979,1417,2.756,1418,4.67,1419,4.244,1420,4.67,1421,4.244,1422,3.279,1424,4.67,1425,4.67,1426,3.279,1427,3.279,1428,4.67,1429,3.279,1431,3.279,1432,2.979,1433,3.279,1434,2.979,1435,3.279,1436,2.979,1437,3.279,1438,3.279,1439,4.67,1440,4.573,1441,4.67,1442,4.67,1443,4.67,1444,3.279,1445,3.279,1446,3.279,1447,3.279,1448,3.279,1449,4.67,1450,3.279,1451,2.979,1452,3.279,1453,3.279,1454,3.279,1455,3.279,1456,3.279,1457,3.279,1458,3.279,1459,3.279,1460,3.279,1461,3.279,1462,3.279,1463,3.279,1464,3.279,1465,4.67,1466,4.67,1467,2.979,1468,3.279,1469,3.279,1470,3.279,1478,5.317]],["title/injectables/LocationService.html",[871,1.344,1207,3.139]],["body/injectables/LocationService.html",[3,0.145,4,0.116,5,0.088,7,0.437,9,1.223,16,3.07,18,0.601,20,1.428,21,0.011,29,2.611,56,0.145,57,0.007,58,0.008,59,0.007,60,0.007,77,1.152,84,1.48,86,0.94,92,1.333,93,0.704,112,1.283,134,1.944,140,0.493,144,2.35,145,2.821,245,0.655,253,1.684,391,3.07,392,2.712,521,4.25,542,2.611,638,2.821,744,2.821,871,2.175,874,2.939,889,2.939,905,4.044,906,6.122,1207,5.078,1479,4.811,1480,6.041,1481,6.926,1482,6.041,1483,6.926,1484,5.477,1485,6.877,1486,5.477,1487,5.477,1488,6.877,1489,5.477,1490,5.477,1491,5.477,1492,5.477,1493,5.477,1494,5.477]],["title/interceptors/LoggingInterceptor.html",[732,2.936,814,2.767]],["body/interceptors/LoggingInterceptor.html",[3,0.139,4,0.111,5,0.084,7,0.42,9,1.089,18,0.535,20,1.154,21,0.011,22,1.697,48,1.676,50,4.359,56,0.139,57,0.006,58,0.008,59,0.006,60,0.006,77,1.121,84,1.441,86,0.775,92,1.187,93,0.627,112,0.854,134,1.652,140,0.487,185,1.57,245,0.628,253,1.614,305,1.331,357,3.404,392,2.601,521,3.651,526,4.799,542,2.504,562,4.305,655,4.192,732,4.625,744,2.705,871,2.118,936,2.944,997,4.192,1007,3.627,1011,2.504,1341,3.878,1343,4.945,1346,4.945,1347,5.734,1348,5.734,1350,4.945,1351,3.878,1352,4.945,1408,4.613,1477,4.192,1495,4.613,1496,5.252,1497,5.252,1498,5.883,1499,6.697,1500,5.252,1501,5.252,1502,6.697,1503,5.252,1504,5.252,1505,6.697,1506,5.252,1507,5.252,1508,5.252,1509,5.252]],["title/injectables/LoggingService.html",[357,1.764,871,1.344]],["body/injectables/LoggingService.html",[3,0.12,4,0.186,5,0.073,7,0.363,8,1.08,9,1.331,18,0.669,20,1.05,21,0.011,56,0.12,57,0.005,58,0.007,59,0.005,60,0.005,77,1.02,84,0.978,86,0.969,92,1.45,93,0.766,112,1.31,140,0.37,221,2.122,227,1.873,245,0.544,305,2.245,357,2.528,638,2.34,749,3.627,750,5.485,871,1.926,874,2.438,875,3.355,889,2.438,1011,3.839,1510,3.991,1511,6.872,1512,6.036,1513,6.091,1514,6.091,1515,6.091,1516,6.091,1517,6.091,1518,6.091,1519,6.091,1520,4.544,1521,7.342,1522,6.091,1523,6.091,1524,4.544,1525,6.091,1526,4.544,1527,6.091,1528,4.544,1529,6.091,1530,4.544,1531,6.091,1532,4.544,1533,6.091,1534,4.544,1535,6.091,1536,4.544,1537,4.544,1538,6.091,1539,4.544,1540,4.544,1541,4.544,1542,3.991,1543,4.544,1544,4.544,1545,4.544,1546,4.544,1547,4.544,1548,4.544,1549,4.544]],["title/directives/MenuSelectionDirective.html",[288,1.236,331,1.383]],["body/directives/MenuSelectionDirective.html",[3,0.149,4,0.12,5,0.09,7,0.451,9,0.919,18,0.451,21,0.011,48,1.812,56,0.149,57,0.007,58,0.008,59,0.007,60,0.007,77,1.174,84,1.509,86,0.812,92,1.002,93,0.529,112,0.919,140,0.343,187,1.787,190,2.349,221,1.729,245,0.676,253,2.156,288,2.038,330,1.839,331,2.282,626,4.173,641,4.964,665,4.964,666,4.964,698,3.485,699,5.266,700,4.511,701,4.173,702,4.511,703,4.511,704,4.511,705,4.964,706,4.964,708,4.964,709,4.964,710,4.964,711,4.964,1550,6.087,1551,4.964,1552,7.013,1553,7.974,1554,4.511,1555,6.669,1556,6.087,1557,6.365,1558,5.651,1559,5.651,1560,4.511,1561,4.173,1562,5.651,1563,5.651]],["title/directives/MenuToggleDirective.html",[288,1.236,333,1.383]],["body/directives/MenuToggleDirective.html",[3,0.153,4,0.123,5,0.093,7,0.464,9,0.944,18,0.464,21,0.011,48,1.754,56,0.153,57,0.007,58,0.009,59,0.007,60,0.007,77,1.194,84,1.535,86,0.825,92,1.029,93,0.543,112,0.944,140,0.352,187,1.836,190,2.388,221,1.758,245,0.695,253,2.192,288,2.073,330,1.889,333,2.32,584,5.099,698,3.58,699,5.33,700,4.634,701,4.286,702,4.634,703,4.634,704,4.634,1550,6.16,1554,4.634,1555,6.713,1556,6.16,1557,6.425,1560,4.634,1561,4.286,1564,4.634,1565,7.13,1566,8.049,1567,5.805,1568,5.805,1569,5.805,1570,5.099,1571,5.805,1572,5.805,1573,5.805]],["title/interfaces/Meta.html",[0,1.107,37,2.105]],["body/interfaces/Meta.html",[0,1.958,1,3.822,2,2.142,3,0.127,4,0.102,5,0.077,6,3.14,7,0.385,8,1.124,10,3.562,11,2.704,12,2.389,13,4.378,14,3.91,15,4.378,16,3.553,17,3.265,18,0.601,19,3.402,20,1.533,21,0.011,22,1.905,24,4.378,25,4.378,26,4.378,27,4.126,28,4.126,29,2.3,30,4.378,31,3.562,32,3.91,33,2.031,34,4.378,35,4.378,36,4.378,37,3.969,38,4.378,39,3.91,40,4.501,41,2.976,42,3.467,43,2.976,44,2.704,45,3.241,46,4.126,47,2.589,48,1.096,49,3.91,50,3.14,51,2.814,52,3.14,53,3.91,54,3.91,55,3.332,56,0.127,57,0.006,58,0.008,59,0.006]],["title/interfaces/MetaResponse.html",[0,1.107,46,2.767]],["body/interfaces/MetaResponse.html",[0,1.966,1,3.6,2,2.165,3,0.129,4,0.103,5,0.078,6,3.173,7,0.389,8,1.131,10,3.6,11,2.733,12,2.414,13,4.408,14,3.937,15,4.408,16,3.578,17,3.287,18,0.568,19,3.426,20,1.535,21,0.011,22,1.913,24,4.408,25,4.408,26,4.408,27,4.154,28,4.154,29,2.325,30,4.408,31,3.6,32,3.937,33,2.035,34,4.408,35,4.408,36,4.408,37,4.056,38,4.408,39,3.937,40,4.052,41,3.007,42,2.834,43,3.007,44,2.733,45,3.252,46,4.632,47,4.052,48,1.108,49,3.937,50,3.173,51,2.834,52,3.173,53,3.937,54,3.937,55,3.367,56,0.129,57,0.006,58,0.008,59,0.006]],["title/interceptors/MockBackendInterceptor.html",[814,2.767,1574,3.139]],["body/interceptors/MockBackendInterceptor.html",[3,0.036,4,0.028,5,0.022,7,0.108,9,0.509,11,2.383,12,1.163,17,3.421,18,0.108,20,0.405,21,0.011,22,0.595,29,2.228,42,1.388,45,1.939,47,0.722,48,1.658,52,2.035,56,0.062,57,0.002,58,0.003,59,0.002,60,0.002,64,1.21,65,1.317,74,0.693,77,0.393,86,0.156,91,0.426,92,0.239,93,0.746,95,1.71,112,0.382,114,1.466,123,1.298,131,1.735,134,1.943,135,2.403,140,0.258,142,0.929,143,0.787,144,0.577,155,1.261,171,1.835,181,0.451,185,0.702,228,0.426,245,0.161,282,2.035,305,0.341,320,0.949,327,0.35,329,0.451,344,0.929,372,0.929,378,0.79,392,0.666,393,0.876,397,1.623,438,0.86,460,0.722,495,0.929,498,0.619,505,3.125,507,2.951,508,2.619,509,2.132,510,1.379,511,3.922,512,1.449,515,0.754,521,3.576,524,4.905,526,3.041,535,4.256,539,0.929,542,0.642,551,1.835,554,1.529,556,1.875,562,1.678,622,1.317,668,0.876,742,1.875,744,0.693,745,0.994,762,0.994,763,1.074,764,1.074,816,1.623,817,1.623,831,2.309,832,1.449,834,0.83,844,0.666,847,0.83,857,0.83,869,0.994,871,0.743,872,0.994,873,0.994,1011,1.12,1013,2.309,1096,0.79,1127,1.875,1179,2.228,1202,0.994,1203,1.735,1205,1.735,1237,0.994,1241,1.735,1247,0.929,1263,0.994,1341,0.994,1343,1.735,1346,1.735,1347,2.766,1348,2.766,1350,4.131,1351,0.994,1352,2.309,1354,2.064,1364,2.064,1366,2.159,1368,2.991,1376,1.182,1377,5.198,1415,1.875,1417,2.309,1419,1.074,1440,3.936,1451,1.074,1477,1.074,1480,2.064,1481,2.064,1482,2.064,1483,2.064,1498,2.064,1574,2.766,1575,1.875,1576,1.074,1577,3.746,1578,5.824,1579,2.349,1580,2.064,1581,2.349,1582,1.346,1583,3.746,1584,2.349,1585,2.349,1586,2.064,1587,2.349,1588,2.349,1589,2.349,1590,1.346,1591,3.735,1592,1.182,1593,1.875,1594,1.182,1595,1.875,1596,1.074,1597,2.991,1598,1.074,1599,2.309,1600,1.074,1601,1.074,1602,1.875,1603,1.074,1604,0.929,1605,1.074,1606,1.074,1607,1.074,1608,0.994,1609,1.074,1610,0.929,1611,1.074,1612,2.064,1613,3.291,1614,1.182,1615,1.182,1616,1.182,1617,1.182,1618,1.182,1619,1.182,1620,1.182,1621,1.182,1622,1.182,1623,1.182,1624,1.182,1625,1.182,1626,1.182,1627,1.182,1628,1.182,1629,2.064,1630,1.182,1631,1.182,1632,2.064,1633,1.182,1634,1.182,1635,1.182,1636,2.746,1637,2.746,1638,1.182,1639,2.064,1640,1.182,1641,2.064,1642,2.064,1643,2.064,1644,1.182,1645,1.182,1646,1.182,1647,1.182,1648,1.182,1649,1.182,1650,1.182,1651,1.182,1652,1.182,1653,1.182,1654,1.182,1655,1.182,1656,1.182,1657,1.182,1658,1.182,1659,1.182,1660,1.182,1661,1.182,1662,1.182,1663,1.182,1664,1.182,1665,1.182,1666,1.182,1667,1.182,1668,1.182,1669,1.182,1670,1.182,1671,1.182,1672,1.182,1673,1.182,1674,1.182,1675,1.182,1676,1.182,1677,2.064,1678,1.182,1679,1.182,1680,1.182,1681,1.182,1682,1.182,1683,1.182,1684,1.182,1685,1.182,1686,1.182,1687,1.182,1688,1.182,1689,1.182,1690,2.064,1691,1.182,1692,1.182,1693,1.182,1694,2.064,1695,1.182,1696,1.182,1697,1.182,1698,1.182,1699,1.182,1700,1.182,1701,1.182,1702,1.182,1703,1.182,1704,1.182,1705,1.182,1706,1.182,1707,1.182,1708,1.182,1709,1.182,1710,1.182,1711,1.182,1712,1.182,1713,1.182,1714,1.182,1715,1.182,1716,1.182,1717,1.182,1718,1.182,1719,1.182,1720,1.182,1721,2.746,1722,1.182,1723,1.182,1724,1.182,1725,1.182,1726,1.182,1727,1.182,1728,1.182,1729,1.182,1730,1.182,1731,1.182,1732,1.182,1733,1.182,1734,1.182,1735,2.064,1736,1.182,1737,1.182,1738,1.182,1739,1.182,1740,1.182,1741,1.182,1742,1.182,1743,2.064,1744,1.182,1745,1.182,1746,1.182,1747,1.182,1748,1.182,1749,1.074,1750,1.182,1751,1.182,1752,1.182,1753,1.182,1754,0.83,1755,1.182,1756,1.182,1757,1.182,1758,1.182,1759,1.182,1760,1.182,1761,1.182,1762,2.064,1763,1.182,1764,1.182,1765,2.064,1766,1.182,1767,1.182,1768,1.182,1769,1.182,1770,1.182,1771,1.182,1772,1.182,1773,1.182,1774,1.182,1775,1.182,1776,1.182,1777,1.182,1778,1.182,1779,1.182,1780,1.182,1781,1.182,1782,2.746,1783,1.182,1784,1.182,1785,1.182,1786,1.182,1787,1.182,1788,1.182,1789,1.182,1790,1.182,1791,1.182,1792,1.182,1793,1.182,1794,1.182,1795,1.182,1796,1.182,1797,1.182,1798,1.182,1799,1.182,1800,1.182,1801,2.064,1802,1.182,1803,1.182,1804,1.182,1805,1.182,1806,1.182,1807,1.182,1808,1.182,1809,1.182,1810,1.182,1811,1.182,1812,1.182,1813,1.182,1814,1.182,1815,1.182,1816,1.182,1817,1.182,1818,1.182,1819,2.064,1820,2.746,1821,1.182,1822,1.182,1823,1.182,1824,1.182,1825,2.746,1826,2.746,1827,1.182,1828,2.064,1829,1.182,1830,1.182,1831,1.182,1832,1.182,1833,1.182,1834,1.182,1835,1.182,1836,1.182,1837,1.182,1838,1.182,1839,1.182,1840,1.182,1841,1.182,1842,1.182,1843,2.746,1844,1.182,1845,1.182,1846,1.182,1847,1.182,1848,1.182,1849,1.182,1850,1.182,1851,1.182,1852,1.182,1853,1.182,1854,1.182,1855,1.182,1856,1.182,1857,1.182,1858,1.182,1859,1.182,1860,1.182,1861,1.182,1862,1.875,1863,1.074,1864,2.064,1865,2.064,1866,2.064,1867,2.064,1868,1.182,1869,1.182,1870,1.182,1871,1.182,1872,1.074,1873,1.182,1874,1.182,1875,1.182,1876,1.182,1877,1.182,1878,1.182,1879,1.182,1880,1.182,1881,1.182,1882,1.182,1883,1.182,1884,1.182,1885,1.182,1886,1.182,1887,1.182,1888,1.182,1889,1.182,1890,1.182,1891,1.182,1892,1.074,1893,1.182,1894,1.182,1895,1.182,1896,1.182,1897,1.182,1898,1.182,1899,1.182,1900,1.182,1901,1.182,1902,1.182,1903,2.746,1904,1.182,1905,1.182,1906,1.182,1907,1.182,1908,1.182,1909,1.182,1910,2.064,1911,3.291,1912,1.182,1913,1.182,1914,1.182,1915,1.182,1916,1.182,1917,1.182,1918,1.182,1919,1.182,1920,1.182,1921,1.182,1922,1.182,1923,1.182,1924,1.182,1925,1.182,1926,1.182,1927,1.182,1928,1.182,1929,1.182,1930,1.182,1931,1.182,1932,1.182,1933,1.182,1934,1.182,1935,2.064,1936,1.182,1937,1.182,1938,1.182,1939,0.994,1940,1.182,1941,1.182,1942,1.182,1943,1.182,1944,1.182,1945,1.182,1946,1.182,1947,1.182,1948,1.182,1949,1.182,1950,1.182,1951,1.182,1952,1.182,1953,1.182,1954,1.182,1955,1.182,1956,1.182,1957,1.182,1958,1.182,1959,1.182,1960,1.182,1961,1.182,1962,1.182,1963,1.182,1964,1.182,1965,1.182,1966,1.182,1967,1.182,1968,1.182,1969,1.182,1970,2.064,1971,1.182,1972,1.182,1973,1.182,1974,1.182,1975,1.182,1976,1.182,1977,1.182,1978,1.182,1979,2.064,1980,1.182,1981,1.074,1982,1.182,1983,1.182,1984,1.182,1985,1.182,1986,1.182,1987,1.182,1988,1.182,1989,1.182,1990,1.182,1991,2.064,1992,1.182,1993,1.182,1994,1.182,1995,1.182,1996,1.182,1997,1.182,1998,1.182,1999,1.182,2000,1.182,2001,1.182,2002,1.182,2003,1.182,2004,1.182,2005,1.182,2006,1.182,2007,1.182,2008,1.182,2009,2.064,2010,1.875,2011,1.182,2012,1.182,2013,1.182,2014,1.182,2015,1.182,2016,1.182,2017,1.182,2018,1.182,2019,1.182,2020,1.182,2021,1.182,2022,1.182,2023,1.182,2024,1.182,2025,1.182,2026,1.182,2027,1.182,2028,1.182,2029,1.182,2030,1.074,2031,1.182,2032,1.182,2033,1.182,2034,1.182,2035,1.182,2036,1.182,2037,1.182,2038,1.182,2039,1.182,2040,1.182,2041,1.182,2042,1.182,2043,1.182,2044,1.182,2045,1.182,2046,1.182,2047,1.182,2048,1.182,2049,1.074,2050,1.182,2051,1.182,2052,1.182,2053,1.182,2054,1.182,2055,1.182,2056,1.182,2057,1.182,2058,1.182,2059,1.182,2060,1.182,2061,1.182,2062,1.182,2063,1.182,2064,1.182,2065,1.182,2066,1.182,2067,1.182,2068,2.064,2069,1.182,2070,1.182,2071,1.182,2072,1.182,2073,1.182,2074,1.182,2075,1.182,2076,1.074,2077,1.182,2078,1.074,2079,1.182,2080,1.182,2081,1.182,2082,1.182,2083,1.182,2084,1.074,2085,1.182,2086,1.182,2087,1.182,2088,1.182,2089,1.182,2090,1.182,2091,1.182,2092,1.182,2093,1.074,2094,1.182,2095,1.182,2096,1.182,2097,1.182,2098,1.182,2099,1.182,2100,1.182,2101,1.074,2102,1.182,2103,1.074,2104,1.182,2105,1.182,2106,1.875,2107,1.182,2108,1.182,2109,1.182,2110,1.182,2111,1.182,2112,1.182,2113,1.182,2114,1.182,2115,1.182,2116,1.182,2117,1.182,2118,1.182,2119,1.182,2120,1.182,2121,1.182,2122,1.182,2123,1.182,2124,1.182,2125,1.182,2126,1.182,2127,1.182,2128,1.182,2129,1.182,2130,1.182,2131,1.182,2132,1.182,2133,1.182,2134,1.182,2135,1.182,2136,1.182,2137,1.182,2138,1.182,2139,1.182,2140,1.182,2141,1.182,2142,1.182,2143,1.182,2144,1.182,2145,1.182,2146,1.182,2147,1.182,2148,1.182,2149,1.182,2150,1.182,2151,1.182,2152,1.182,2153,1.182,2154,2.064,2155,1.182,2156,1.182,2157,1.182,2158,1.182,2159,1.182,2160,1.182,2161,1.182,2162,1.182,2163,1.182,2164,1.182,2165,1.182,2166,1.182,2167,1.182,2168,1.182,2169,1.182,2170,1.182,2171,1.182,2172,2.746,2173,1.182,2174,1.182,2175,1.182,2176,1.182,2177,1.182,2178,1.182,2179,1.182,2180,1.182,2181,1.182,2182,1.182,2183,1.182,2184,1.182,2185,1.182,2186,1.182,2187,1.182,2188,1.182,2189,1.182,2190,1.182,2191,1.182,2192,1.182,2193,1.182,2194,1.182,2195,1.182,2196,1.182,2197,1.182,2198,1.182,2199,1.182,2200,1.182,2201,1.182,2202,1.182,2203,1.182,2204,1.182,2205,1.182,2206,1.182,2207,1.182,2208,1.182,2209,1.182,2210,1.182,2211,1.182,2212,1.182,2213,1.182,2214,1.182,2215,1.182,2216,1.182,2217,1.182,2218,1.182,2219,1.182,2220,1.182,2221,1.182,2222,1.182,2223,1.182,2224,1.182,2225,1.182,2226,1.182,2227,1.182,2228,1.182,2229,1.182,2230,1.182,2231,1.182,2232,1.182,2233,1.182,2234,1.182,2235,1.182,2236,1.182,2237,1.182,2238,1.182,2239,1.182,2240,1.182,2241,1.182,2242,1.182,2243,1.182,2244,1.182,2245,1.182,2246,1.182,2247,1.182,2248,1.182,2249,1.182,2250,1.182,2251,1.182,2252,1.182,2253,1.182,2254,1.182,2255,1.182,2256,1.182,2257,1.182,2258,1.182,2259,1.182,2260,1.182,2261,2.064,2262,1.182,2263,1.875,2264,1.182,2265,1.182,2266,1.182,2267,1.182,2268,1.182,2269,1.182,2270,1.182,2271,1.182,2272,1.182,2273,1.182,2274,1.182,2275,1.182,2276,1.182,2277,1.182,2278,1.182,2279,1.182,2280,1.074,2281,1.182,2282,1.182,2283,1.182,2284,1.182,2285,1.182,2286,1.182,2287,1.182,2288,1.182,2289,1.182,2290,1.182,2291,1.182,2292,2.064,2293,2.064,2294,1.182,2295,1.182,2296,1.182,2297,1.182,2298,1.182,2299,1.182,2300,1.875,2301,1.182,2302,1.182,2303,1.182,2304,1.182,2305,1.182,2306,1.182,2307,1.182,2308,1.182,2309,1.182,2310,1.182,2311,1.182,2312,1.182,2313,1.182,2314,1.182,2315,1.182,2316,1.182,2317,1.182,2318,1.182,2319,1.182,2320,1.182,2321,1.182,2322,1.074,2323,1.074,2324,1.182,2325,1.182,2326,1.182,2327,2.064,2328,1.182,2329,1.182,2330,1.182,2331,1.182,2332,1.182,2333,1.182,2334,1.182,2335,2.064,2336,1.182,2337,1.182,2338,1.182,2339,1.182,2340,1.182,2341,1.182,2342,1.182,2343,1.182,2344,1.182,2345,1.182,2346,1.182,2347,1.182,2348,1.182,2349,1.182,2350,1.182,2351,1.182,2352,1.182,2353,1.182,2354,1.182,2355,1.182,2356,1.182,2357,1.182,2358,1.182,2359,1.182,2360,1.182,2361,1.182,2362,1.074,2363,1.182,2364,1.182,2365,1.182,2366,1.182,2367,1.182,2368,1.875,2369,1.182,2370,1.182,2371,1.182,2372,1.182,2373,1.182,2374,1.182,2375,1.182,2376,1.074,2377,1.182,2378,1.182,2379,1.182,2380,1.182,2381,1.182,2382,1.182,2383,1.182,2384,1.182,2385,1.182,2386,1.182,2387,1.182,2388,1.182,2389,1.182,2390,1.182,2391,1.182,2392,1.182,2393,1.182,2394,1.182,2395,1.182,2396,1.182,2397,1.182,2398,1.182,2399,1.182,2400,1.182,2401,1.182,2402,1.182,2403,1.182,2404,1.182,2405,1.182,2406,1.182,2407,1.182,2408,1.182,2409,1.182,2410,1.182,2411,1.182,2412,1.182,2413,1.182,2414,1.182,2415,1.182,2416,1.182,2417,1.182,2418,1.182,2419,1.182,2420,1.182,2421,1.182,2422,1.182,2423,1.182,2424,1.182,2425,1.182,2426,1.182,2427,1.074,2428,1.074,2429,1.379,2430,1.182,2431,0.994,2432,1.182,2433,3.73,2434,3.227,2435,1.182,2436,3.73,2437,3.73,2438,3.73,2439,1.182,2440,2.064,2441,3.14,2442,5.115,2443,3.394,2444,3.14,2445,3.735,2446,2.064,2447,1.182,2448,2.064,2449,1.182,2450,1.182,2451,1.182,2452,2.064,2453,1.182,2454,1.182,2455,1.182,2456,2.064,2457,1.182,2458,1.182,2459,1.182,2460,2.064,2461,1.074,2462,1.182,2463,1.182,2464,1.182,2465,1.182,2466,1.346,2467,1.346,2468,1.346,2469,1.346,2470,1.074,2471,1.346,2472,2.349,2473,1.182,2474,1.182,2475,1.346,2476,1.346,2477,1.346,2478,1.346,2479,1.346,2480,1.346,2481,1.346,2482,1.346,2483,1.346,2484,5.636,2485,1.346,2486,1.346,2487,2.349,2488,1.346,2489,2.349,2490,2.349,2491,2.064,2492,1.346,2493,1.346,2494,1.346,2495,1.346,2496,1.346,2497,1.346,2498,2.349,2499,1.346,2500,2.349,2501,1.346,2502,2.349,2503,1.346,2504,2.064,2505,1.346,2506,2.064,2507,1.346,2508,2.349,2509,1.182,2510,1.182,2511,1.346,2512,1.182,2513,1.875,2514,2.349,2515,2.349,2516,2.349,2517,3.127,2518,1.346,2519,2.349,2520,1.182,2521,1.346,2522,1.346,2523,1.346,2524,1.346,2525,1.346,2526,1.346,2527,1.346,2528,1.346,2529,1.346,2530,1.346,2531,1.346,2532,1.346,2533,1.346,2534,1.346,2535,1.346,2536,1.346,2537,1.346,2538,1.346,2539,1.346,2540,1.346,2541,1.346,2542,1.346,2543,1.346,2544,1.346,2545,1.346,2546,1.346,2547,1.346,2548,1.346,2549,1.346,2550,1.346,2551,1.346,2552,1.346,2553,1.074,2554,2.349,2555,1.346,2556,1.346,2557,1.346,2558,1.346,2559,2.349,2560,2.349,2561,1.346,2562,1.346,2563,1.346,2564,1.346,2565,1.346]],["title/interfaces/MutableKeyStore.html",[0,1.107,891,2.495]],["body/interfaces/MutableKeyStore.html",[0,0.719,2,1.226,3,0.073,4,0.058,5,0.044,7,0.221,9,1.3,18,0.638,20,1.489,21,0.011,37,1.368,48,1.666,56,0.073,57,0.003,58,0.005,59,0.003,60,0.003,77,0.712,79,2.757,86,0.978,92,1.416,93,0.748,95,1.011,112,1.374,113,3.041,114,1.788,123,1.146,134,2.05,135,3.176,140,0.258,152,0.899,163,3.145,185,1.271,221,1.762,395,2.783,460,1.482,524,2.04,679,2.04,752,2.768,800,4.086,810,5.276,816,1.908,891,3.419,895,5.021,896,5.021,962,1.482,1011,1.317,1038,1.423,1099,1.482,1289,1.798,1403,3.829,2566,4.975,2567,2.04,2568,3.582,2569,5.525,2570,5.525,2571,5.525,2572,3.736,2573,3.736,2574,3.736,2575,5.525,2576,5.525,2577,3.736,2578,3.736,2579,3.736,2580,5.525,2581,5.525,2582,3.736,2583,3.736,2584,3.736,2585,3.736,2586,3.736,2587,5.525,2588,3.736,2589,3.736,2590,3.736,2591,2.937,2592,2.762,2593,2.762,2594,2.762,2595,4.555,2596,2.762,2597,4.555,2598,2.762,2599,5.835,2600,2.762,2601,4.555,2602,2.762,2603,2.762,2604,2.762,2605,4.555,2606,2.762,2607,4.555,2608,2.762,2609,2.426,2610,2.762,2611,4.555,2612,2.762,2613,2.762,2614,2.762,2615,4.555,2616,2.762,2617,4.555,2618,4.555,2619,2.762,2620,4.555,2621,2.762,2622,4.555,2623,2.762,2624,4.555,2625,2.762,2626,2.762,2627,4.555,2628,2.762,2629,4.555,2630,2.762,2631,4.555,2632,2.762,2633,4.555,2634,2.762,2635,2.426,2636,2.426,2637,2.426,2638,1.908,2639,2.497,2640,2.04,2641,2.205,2642,2.426,2643,2.426,2644,3.736,2645,3.736,2646,4.555,2647,2.426,2648,4.555,2649,4.555,2650,2.426,2651,2.426,2652,2.426,2653,2.205,2654,2.426,2655,2.426,2656,2.426,2657,2.426,2658,2.426,2659,2.426,2660,2.426,2661,2.426,2662,2.426,2663,2.426,2664,2.426,2665,2.205,2666,2.205,2667,2.426,2668,2.426,2669,2.426,2670,2.426,2671,2.426,2672,2.426,2673,2.426,2674,2.426,2675,3.736,2676,2.426,2677,2.426,2678,2.426,2679,2.205,2680,1.798,2681,2.205,2682,1.908,2683,2.426,2684,1.908,2685,1.908,2686,2.205,2687,2.426,2688,2.426]],["title/classes/MutablePgpKeyStore.html",[60,0.005,752,2.767]],["body/classes/MutablePgpKeyStore.html",[0,0.725,3,0.074,4,0.059,5,0.045,7,0.222,9,1.302,18,0.554,20,1.427,21,0.011,37,1.379,48,1.67,56,0.074,57,0.003,58,0.005,59,0.003,60,0.003,62,1.084,74,1.434,77,0.716,79,3.397,86,0.979,92,1.419,93,0.749,95,1.019,112,1.375,113,3.068,114,1.797,123,1.155,134,2.052,135,3.179,140,0.26,152,0.906,163,3.152,185,1.558,221,1.711,395,2.797,460,1.494,524,2.056,679,2.056,752,3.392,800,4.089,810,5.289,816,1.923,891,3.433,895,5.039,896,5.039,962,1.494,1011,1.327,1038,1.434,1099,1.494,1289,1.812,1403,3.16,2566,4.979,2567,2.056,2568,2.955,2569,5.544,2570,5.544,2571,5.544,2572,3.758,2573,3.758,2574,3.758,2575,5.544,2576,5.544,2577,3.758,2578,3.758,2579,3.758,2580,5.544,2581,5.544,2582,3.758,2583,3.758,2584,3.758,2585,3.758,2586,3.758,2587,5.544,2588,3.758,2589,3.758,2590,3.758,2591,2.955,2595,4.578,2597,4.578,2599,5.854,2601,4.578,2605,4.578,2607,4.578,2609,2.445,2611,4.578,2615,4.578,2617,4.578,2618,4.578,2620,4.578,2622,4.578,2624,4.578,2627,4.578,2629,4.578,2631,4.578,2633,4.578,2635,2.445,2636,2.445,2637,2.445,2638,1.923,2639,2.512,2640,2.056,2641,2.222,2642,2.445,2643,2.445,2644,3.758,2645,3.758,2646,4.578,2647,2.445,2648,4.578,2649,4.578,2650,2.445,2651,2.445,2652,2.445,2653,2.222,2654,2.445,2655,2.445,2656,2.445,2657,2.445,2658,2.445,2659,2.445,2660,2.445,2661,2.445,2662,2.445,2663,2.445,2664,2.445,2665,2.222,2666,2.222,2667,2.445,2668,2.445,2669,2.445,2670,2.445,2671,2.445,2672,2.445,2673,2.445,2674,2.445,2675,3.758,2676,2.445,2677,2.445,2678,2.445,2679,2.222,2680,1.812,2681,2.222,2682,1.923,2683,2.445,2684,1.923,2685,1.923,2686,2.222,2687,2.445,2688,2.445,2689,2.784,2690,2.784,2691,2.784,2692,2.784,2693,2.784,2694,2.784,2695,2.784,2696,2.784,2697,2.784,2698,2.784,2699,2.784,2700,2.784,2701,2.784,2702,2.784,2703,2.784,2704,2.784,2705,2.784,2706,2.784,2707,2.784,2708,2.784,2709,2.784,2710,2.784,2711,2.784,2712,2.784,2713,2.784]],["title/components/OrganizationComponent.html",[175,0.652,310,1.383]],["body/components/OrganizationComponent.html",[3,0.101,4,0.081,5,0.061,7,0.306,8,0.959,9,0.622,18,0.545,21,0.011,33,1.299,56,0.101,57,0.005,58,0.006,59,0.005,60,0.005,77,0.906,84,1.165,86,0.89,88,1.281,91,1.711,92,0.678,93,0.639,112,0.88,114,1.319,123,2.606,134,1.334,140,0.381,152,1.761,175,0.963,176,1.245,177,1.981,178,1.4,179,1.588,180,1.4,181,1.281,185,1.617,186,2.887,187,1.21,188,2.246,189,2.246,190,2.94,191,3.186,193,2.246,195,2.246,200,4.636,207,3.138,211,3.996,215,3.054,216,5.521,221,1.683,225,4.336,227,1.663,228,2.56,231,4.442,244,1.588,245,0.458,246,2.825,247,2.053,248,1.895,253,1.176,255,2.825,256,3.996,281,2.679,283,4.442,285,1.082,286,2.042,287,1.981,288,1.112,289,2.576,290,1.444,291,1.281,292,2.369,293,1.245,294,1.444,295,1.444,296,1.245,297,1.444,298,1.281,299,1.444,300,1.245,301,1.444,302,1.245,303,1.444,304,1.245,305,0.97,306,1.444,307,1.281,308,2.042,309,1.359,310,2.221,311,1.444,312,1.245,313,1.444,314,1.245,315,1.444,316,1.281,317,2.042,318,1.359,319,1.245,320,0.97,321,1.245,322,1.444,323,1.281,324,2.042,325,1.359,326,1.281,327,0.996,328,1.245,329,1.281,330,1.245,331,1.245,332,1.444,333,1.245,334,1.444,335,1.245,336,1.444,337,1.319,338,1.4,339,1.444,781,5.012,783,5.448,805,4.32,857,2.36,1077,4.19,1243,4.753,1367,4.442,1939,5.04,2714,3.361,2715,5.318,2716,6.279,2717,5.411,2718,6.279,2719,6.279,2720,5.411,2721,3.826,2722,3.826,2723,3.826,2724,3.826,2725,3.826,2726,3.826,2727,3.826,2728,7.202,2729,5.012,2730,3.826,2731,3.826,2732,3.826,2733,3.826,2734,5.411,2735,5.411,2736,4.753,2737,5.411,2738,5.411,2739,5.411,2740,5.411,2741,4.753,2742,5.411,2743,5.411,2744,5.411,2745,5.411,2746,5.411,2747,5.411]],["title/classes/PGPSigner.html",[60,0.005,2748,2.936]],["body/classes/PGPSigner.html",[0,1.387,3,0.099,4,0.079,5,0.06,7,0.299,8,0.944,9,1.099,18,0.663,20,1.483,21,0.011,33,1.278,40,4.634,41,4.404,42,2.364,43,4.404,44,4.002,47,2.858,48,1.687,51,2.364,56,0.099,57,0.004,58,0.006,59,0.004,60,0.004,62,1.456,77,0.892,78,4.239,79,2.574,84,0.805,86,0.961,92,1.198,93,0.632,104,4.398,112,1.099,113,2.34,114,1.837,134,1.313,140,0.323,163,1.605,185,1.592,221,1.883,227,2.281,228,1.684,305,1.35,357,3.08,395,2.008,663,3.466,686,2.584,688,2.763,736,2.196,800,1.784,891,4.356,936,2.097,1011,2.539,1026,3.933,1038,1.927,2484,4.251,2566,4.908,2568,4.931,2591,3.678,2638,2.584,2639,2.196,2680,2.435,2682,3.678,2684,2.584,2685,2.584,2748,4.283,2749,2.435,2750,4.95,2751,4.95,2752,4.95,2753,5.7,2754,4.678,2755,4.678,2756,4.251,2757,5.326,2758,4.251,2759,3.741,2760,3.741,2761,3.741,2762,3.741,2763,3.741,2764,3.741,2765,3.741,2766,3.741,2767,4.95,2768,5.126,2769,3.741,2770,2.986,2771,4.95,2772,3.741,2773,4.95,2774,3.741,2775,2.986,2776,2.763,2777,2.986,2778,2.986,2779,4.251,2780,2.986,2781,2.986,2782,2.986,2783,2.986,2784,2.986,2785,2.986,2786,2.986,2787,4.251,2788,2.986,2789,2.986,2790,2.986,2791,4.251,2792,2.986,2793,4.251,2794,2.986,2795,2.986,2796,2.986,2797,2.986,2798,2.986,2799,2.986,2800,2.986,2801,2.986,2802,2.986,2803,2.986,2804,2.986,2805,2.986]],["title/components/PagesComponent.html",[175,0.652,312,1.383]],["body/components/PagesComponent.html",[3,0.129,4,0.103,5,0.078,7,0.389,8,1.13,18,0.389,20,1.099,21,0.01,33,1.168,56,0.129,57,0.006,58,0.008,59,0.006,60,0.006,84,1.53,86,0.738,88,1.63,91,2.016,93,0.666,140,0.295,175,1.091,176,1.584,177,2.334,178,1.782,179,2.021,180,1.782,181,1.63,187,1.54,188,2.647,189,2.647,190,2.995,191,3.255,193,2.647,195,2.647,228,1.54,244,2.021,245,0.583,281,3.157,285,1.377,286,2.406,287,2.334,288,1.415,289,2.847,290,1.837,291,1.63,292,2.683,293,1.584,294,1.837,295,1.837,296,1.584,297,1.837,298,1.63,299,1.837,300,1.584,301,1.837,302,1.584,303,1.837,304,1.584,305,1.234,306,1.837,307,1.63,308,2.406,309,1.729,310,1.584,311,1.837,312,2.455,313,1.837,314,1.584,315,1.837,316,1.63,317,2.406,318,1.729,319,1.584,320,1.234,321,1.584,322,1.837,323,1.63,324,2.406,325,1.729,326,1.63,327,1.268,328,1.584,329,1.63,330,1.584,331,1.584,332,1.837,333,1.584,334,1.837,335,1.584,336,1.837,337,1.679,338,1.782,339,1.837,736,3.743,847,4.386,2806,4.276,2807,6.377,2808,7.111,2809,6.377,2810,6.377,2811,6.377,2812,5.09,2813,6.377]],["title/modules/PagesModule.html",[431,1.138,2814,3.139]],["body/modules/PagesModule.html",[3,0.149,4,0.12,5,0.09,21,0.011,56,0.149,57,0.007,58,0.008,59,0.007,60,0.007,140,0.53,143,2.349,245,0.676,285,1.598,312,2.719,431,1.512,433,2.068,434,2.798,435,4.092,436,2.91,437,3.033,438,2.068,443,4.303,445,3.763,446,3.033,447,2.694,449,2.91,450,4.116,451,3.167,453,3.317,455,3.485,470,4.325,471,3.485,472,4.564,473,3.678,474,3.485,475,4.325,476,3.485,477,4.325,478,3.485,481,4.843,482,3.903,2814,6.415,2815,4.964,2816,4.964,2817,4.964,2818,5.77,2819,5.651,2820,5.651,2821,5.651,2822,7.013,2823,4.964,2824,4.964]],["title/modules/PagesRoutingModule.html",[431,1.138,2818,2.936]],["body/modules/PagesRoutingModule.html",[3,0.151,4,0.121,5,0.092,21,0.011,48,1.3,56,0.151,57,0.007,58,0.008,59,0.007,60,0.007,67,3.724,140,0.465,143,1.916,175,0.878,245,0.685,250,2.032,281,3.499,312,2.299,433,2.094,438,2.094,449,2.933,497,3.358,498,3.526,499,3.961,500,4.985,501,3.952,502,3.952,503,3.724,504,3.529,551,3.358,768,7.227,1077,3.207,1082,3.071,2429,3.358,2818,4.881,2825,5.722,2826,5.722,2827,5.722,2828,5.722,2829,5.722,2830,5.722,2831,5.722,2832,5.722,2833,5.722,2834,5.722,2835,5.722,2836,5.722]],["title/directives/PasswordToggleDirective.html",[288,1.236,335,1.383]],["body/directives/PasswordToggleDirective.html",[3,0.142,4,0.113,5,0.086,7,0.428,9,0.872,18,0.594,20,1.348,21,0.011,45,3.089,48,1.542,56,0.142,57,0.006,58,0.008,59,0.006,60,0.006,77,1.136,84,1.46,86,0.905,92,0.95,93,0.501,112,0.872,140,0.325,187,1.694,190,2.271,221,1.673,245,0.641,253,2.085,288,1.972,330,1.743,335,2.207,699,4.684,953,4.277,1038,3.833,1262,4.844,1278,5.008,1554,4.277,1555,6.581,1556,5.941,1557,6.244,1560,4.277,1561,3.956,1564,4.277,2837,7.088,2838,6.782,2839,7.822,2840,7.442,2841,6.782,2842,5.358,2843,5.358,2844,5.358,2845,5.358,2846,5.358,2847,5.358,2848,7.442,2849,7.442,2850,7.442,2851,6.782,2852,7.822,2853,6.782,2854,6.782]],["title/injectables/RegistryService.html",[871,1.344,1069,2.767]],["body/injectables/RegistryService.html",[3,0.143,4,0.115,5,0.087,7,0.434,8,1.213,18,0.598,21,0.011,33,1.797,56,0.143,57,0.006,58,0.008,59,0.006,60,0.006,68,4.396,77,1.145,84,1.612,86,0.958,112,1.113,134,1.687,140,0.492,141,5.18,144,2.33,145,2.797,152,2.692,153,5.051,228,2.368,245,0.65,248,2.689,638,2.797,871,2.163,874,2.914,889,2.914,962,2.914,1069,4.452,1099,2.914,2855,4.77,2856,8.272,2857,7.861,2858,7.861,2859,5.43,2860,5.43,2861,5.43,2862,5.978,2863,5.43,2864,6.468,2865,6.84,2866,6.84,2867,6.84,2868,6.84,2869,6.84,2870,5.43,2871,5.43,2872,5.43,2873,4.335,2874,4.335,2875,4.77]],["title/guards/RoleGuard.html",[834,2.622,2876,3.393]],["body/guards/RoleGuard.html",[3,0.115,4,0.092,5,0.07,7,0.349,9,0.965,18,0.474,21,0.011,48,0.993,56,0.115,57,0.005,58,0.007,59,0.005,60,0.008,64,3.469,65,3.326,74,2.25,77,0.993,84,0.94,86,0.687,92,1.052,93,0.555,112,1.176,113,2.239,114,2.323,119,3.66,120,4.098,121,4.381,123,2.462,127,4.736,134,1.661,140,0.409,143,1.463,155,3.615,171,2.565,175,0.91,181,1.987,185,1.773,218,4.502,227,1.824,245,0.523,250,1.552,283,3.862,498,2.728,508,4.659,509,2.172,515,4.608,521,3.336,542,2.084,581,5.278,638,2.25,773,6.22,834,4.457,835,3.488,837,4.736,838,5.212,839,5.336,841,3.488,843,5.212,844,2.938,845,5.336,846,4.381,847,3.66,848,4.381,849,4.381,850,3.838,851,6.844,852,6.347,854,5.212,856,4.381,857,3.66,858,4.736,859,4.736,860,5.212,861,4.736,862,6.347,863,5.768,864,4.381,865,5.212,866,5.212,867,5.917,869,5.336,871,1.876,872,3.227,873,3.227,874,2.345,875,3.227,877,3.838,2876,4.736,2877,3.838,2878,4.37,2879,4.37,2880,5.933,2881,5.933,2882,5.933,2883,5.933,2884,4.37,2885,4.37,2886,4.37,2887,4.37,2888,4.37,2889,4.37,2890,4.37]],["title/directives/RouterLinkDirectiveStub.html",[288,1.236,337,1.466]],["body/directives/RouterLinkDirectiveStub.html",[3,0.159,4,0.127,5,0.096,7,0.48,8,1.291,18,0.582,21,0.011,33,1.443,56,0.159,57,0.007,58,0.009,59,0.007,60,0.007,86,0.907,140,0.365,187,1.901,190,2.44,221,1.483,228,1.901,245,0.719,288,2.465,330,1.956,337,2.512,338,2.982,516,3.37,531,5.281,646,6.398,672,5.281,1075,5.379,1262,3.913,1278,5.379,1561,5.787,2891,7.155,2892,6.503,2893,7.837,2894,6.012,2895,5.281,2896,6.012,2897,6.012,2898,6.012,2899,6.012,2900,6.012,2901,6.012]],["title/pipes/SafePipe.html",[1754,2.622,2902,2.936]],["body/pipes/SafePipe.html",[3,0.163,4,0.13,5,0.099,9,1.003,18,0.492,20,1.365,21,0.011,56,0.163,57,0.007,58,0.009,59,0.007,60,0.007,77,1.032,86,0.713,92,1.092,93,0.741,112,1.003,134,1.52,140,0.449,185,1.842,187,1.949,245,0.737,735,4.919,736,3.617,847,3.801,875,4.551,1754,4.56,1862,6.706,2902,5.106,2903,4.919,2904,5.413,2905,7.394,2906,5.413,2907,7.394,2908,6.958,2909,6.163,2910,6.494,2911,7.394,2912,6.163,2913,6.163]],["title/classes/Settings.html",[60,0.005,1077,2.383]],["body/classes/Settings.html",[3,0.156,4,0.125,5,0.094,7,0.471,8,1.277,9,0.96,18,0.663,21,0.011,33,1.416,44,4.357,56,0.156,57,0.007,58,0.009,59,0.007,60,0.009,62,2.297,68,4.563,84,1.27,86,0.961,92,1.046,93,0.552,228,1.866,273,5.59,1077,4.357,1247,5.369,2914,4.711,2915,7.291,2916,6.828,2917,6.312,2918,6.326,2919,7.202,2920,5.901,2921,5.901,2922,5.901,2923,5.183]],["title/components/SettingsComponent.html",[175,0.652,314,1.383]],["body/components/SettingsComponent.html",[3,0.092,4,0.074,5,0.056,7,0.279,8,0.898,9,0.825,18,0.612,20,1.198,21,0.011,32,4.037,33,1.216,45,2.104,48,0.794,56,0.158,57,0.004,58,0.006,59,0.004,60,0.004,77,0.849,84,1.091,86,0.93,88,1.17,91,2.423,92,0.898,93,0.731,112,1.065,135,2.47,140,0.454,152,1.649,175,0.915,176,1.136,177,1.855,178,1.278,179,1.449,180,1.278,181,1.17,185,1.515,186,2.743,187,1.104,188,2.104,189,2.104,190,2.917,191,3.156,192,3.126,193,2.104,195,2.104,207,3.01,221,1.89,228,1.104,244,1.449,245,0.418,248,1.729,249,1.729,253,1.073,281,2.51,285,0.987,286,1.913,287,1.855,288,1.015,289,2.47,290,1.318,291,1.17,292,2.251,293,1.136,294,1.318,295,1.318,296,1.136,297,1.318,298,1.17,299,1.318,300,1.136,301,1.318,302,1.136,303,1.318,304,1.136,305,0.885,306,1.318,307,1.17,308,1.913,309,1.24,310,1.136,311,1.318,312,1.136,313,1.318,314,2.13,315,1.318,316,1.17,317,1.913,318,1.24,319,1.136,320,0.885,321,1.136,322,1.318,323,1.17,324,1.913,325,1.24,326,1.17,327,0.909,328,1.136,329,1.17,330,1.136,331,1.136,332,1.318,333,1.136,334,1.318,335,1.136,336,1.318,337,1.204,338,1.278,339,1.318,345,4.12,347,4.763,349,4.12,350,4.12,351,3.5,352,4.521,359,3.5,370,4.12,380,4.12,381,3.299,382,3.5,384,4.12,385,3.5,386,2.412,387,1.798,388,1.874,389,1.874,390,2.154,405,2.579,407,2.579,408,2.412,409,2.579,410,2.412,412,2.579,413,2.412,423,3.5,427,4.521,509,1.855,551,2.975,622,1.957,649,2.788,650,4.472,678,4.452,832,4.037,840,4.452,902,6.369,1038,3.734,1048,5.241,1077,4.447,2715,4.834,2924,3.067,2925,5.966,2926,5.069,2927,5.069,2928,3.492,2929,3.492,2930,3.492,2931,3.492,2932,3.492,2933,3.492,2934,4.452,2935,3.492,2936,3.492,2937,3.492,2938,3.492,2939,3.067,2940,3.492,2941,3.492,2942,3.492,2943,3.492,2944,3.492,2945,3.492,2946,4.406,2947,3.492,2948,5.069,2949,5.069,2950,5.069,2951,5.069,2952,5.069,2953,5.069,2954,5.069,2955,5.75,2956,6.546,2957,5.069,2958,5.069,2959,5.069,2960,5.069,2961,5.069]],["title/modules/SettingsModule.html",[431,1.138,2962,3.139]],["body/modules/SettingsModule.html",[3,0.139,4,0.112,5,0.084,21,0.011,56,0.139,57,0.006,58,0.008,59,0.006,60,0.006,140,0.539,143,2.25,245,0.632,247,2.833,285,1.492,310,2.672,314,2.672,387,2.718,388,2.833,389,2.833,431,1.413,433,1.932,434,2.613,435,3.966,436,2.718,437,2.833,438,1.932,443,4.229,445,3.605,446,2.833,447,2.517,449,2.788,450,3.943,451,2.958,453,3.098,455,3.255,465,4.373,466,4.64,467,4.961,468,3.897,469,4.64,470,4.144,471,3.255,472,4.373,473,3.435,474,3.255,475,4.144,476,3.255,477,4.144,478,3.255,479,4.373,480,3.435,481,4.64,482,3.645,491,5.363,2962,6.421,2963,4.636,2964,4.636,2965,4.636,2966,5.672,2967,5.278,2968,5.278,2969,4.636,2970,4.636,2971,6.718,2972,5.278,2973,6.718,2974,5.278]],["title/modules/SettingsRoutingModule.html",[431,1.138,2966,2.936]],["body/modules/SettingsRoutingModule.html",[3,0.163,4,0.13,5,0.099,21,0.011,48,1.401,56,0.163,57,0.007,58,0.009,59,0.007,60,0.007,140,0.499,143,2.064,175,1.134,245,0.737,250,2.189,310,2.406,314,2.406,433,2.256,438,2.256,449,3.069,497,3.617,498,3.642,499,4.144,500,4.649,501,4.256,502,4.256,503,4.011,504,3.801,2715,4.551,2966,5.106,2969,5.413,2970,5.413,2975,6.163]],["title/modules/SharedModule.html",[431,1.138,443,2.189]],["body/modules/SharedModule.html",[3,0.125,4,0.1,5,0.076,21,0.011,56,0.125,57,0.006,58,0.007,59,0.006,60,0.006,140,0.523,143,1.589,245,0.568,250,1.686,285,1.342,304,2.597,307,2.868,316,2.868,323,2.868,331,2.786,333,2.597,431,1.27,433,1.737,434,2.35,435,3.769,436,2.444,437,2.547,438,2.57,443,4.591,445,3.365,446,2.547,447,2.263,449,2.602,450,3.681,451,2.66,479,4.081,480,3.089,499,3.515,887,4.168,1308,3.504,1319,3.788,1334,4.168,1335,4.168,2902,5.914,2976,4.168,2977,4.168,2978,4.168,2979,5.914,2980,4.746,2981,4.746,2982,4.746,2983,4.746,2984,6.271,2985,4.746,2986,4.746,2987,4.746,2988,6.271,2989,4.746]],["title/components/SidebarComponent.html",[175,0.652,316,1.424]],["body/components/SidebarComponent.html",[3,0.127,4,0.102,5,0.077,7,0.384,21,0.01,56,0.127,57,0.006,58,0.008,59,0.006,60,0.006,67,4.118,77,1.059,84,1.521,86,0.732,88,1.611,91,2.001,93,0.662,112,0.782,140,0.292,175,1.085,176,1.565,177,2.315,178,1.76,179,1.996,180,1.76,181,1.611,185,1.891,186,3.25,187,1.521,188,2.626,189,2.626,190,2.992,191,3.251,193,2.626,195,2.626,207,3.453,221,1.56,244,1.996,245,0.576,285,1.36,286,2.387,287,2.315,288,1.398,289,2.834,290,1.815,291,1.611,292,2.668,293,1.565,294,1.815,295,1.815,296,1.565,297,1.815,298,1.611,299,1.815,300,1.565,301,1.815,302,1.565,303,1.815,304,1.565,305,1.219,306,1.815,307,1.611,308,2.387,309,1.708,310,1.565,311,1.815,312,1.565,313,1.815,314,1.565,315,1.815,316,2.515,317,2.387,318,1.708,319,1.565,320,1.219,321,1.565,322,1.815,323,1.611,324,2.387,325,1.708,326,1.611,327,1.253,328,1.565,329,2.368,330,1.565,331,1.565,332,1.815,333,1.565,334,1.815,335,1.565,336,1.815,337,1.659,338,1.76,339,1.815,551,3.713,670,4.671,698,3.902,1077,3.546,2429,3.713,2990,4.225,2991,7.069,2992,6.326,2993,4.81,2994,4.81,2995,6.326]],["title/components/SidebarStubComponent.html",[175,0.652,318,1.51]],["body/components/SidebarStubComponent.html",[3,0.135,4,0.108,5,0.082,21,0.01,56,0.192,57,0.006,58,0.008,59,0.006,60,0.009,88,1.711,91,2.081,93,0.681,140,0.31,175,1.01,176,1.663,177,2.408,178,2.664,180,1.87,181,1.711,187,1.616,190,3.001,191,3.276,245,0.611,285,1.445,286,2.483,287,2.408,288,1.485,289,2.9,290,1.928,291,1.711,292,2.746,293,1.663,294,1.928,295,1.928,296,1.663,297,1.928,298,1.711,299,1.928,300,1.663,301,1.928,302,1.663,303,1.928,304,1.663,305,1.295,306,1.928,307,1.711,308,2.483,309,2.337,310,1.663,311,1.928,312,1.663,313,1.928,314,1.663,315,1.928,316,1.711,317,2.483,318,2.73,319,1.663,320,1.295,321,1.663,322,1.928,323,1.711,324,2.483,325,2.337,326,1.711,327,1.331,328,1.663,329,1.711,330,1.663,331,1.663,332,1.928,333,1.663,334,1.928,335,1.663,336,1.928,337,1.762,338,1.87,339,1.928,431,1.367,516,2.864,698,4.058,1388,3.773,1394,3.773,1395,5.81,1396,3.773]],["title/interfaces/Signable.html",[0,1.107,2768,2.936]],["body/interfaces/Signable.html",[0,1.591,2,2.026,3,0.121,4,0.097,5,0.073,7,0.364,18,0.364,20,1.476,21,0.011,40,4.62,41,4.248,42,2.712,43,4.867,44,3.86,47,3.278,48,1.794,51,2.712,56,0.121,57,0.005,58,0.007,59,0.005,60,0.005,77,1.023,78,3.788,79,1.894,86,0.528,104,4.482,112,0.742,113,2.305,114,2.107,134,1.506,140,0.371,163,1.958,185,1.364,221,1.946,227,2.357,305,1.548,357,2.858,395,2.449,663,3.976,686,3.151,688,3.369,736,2.678,800,2.176,891,4.042,936,2.557,1011,2.913,1026,3.369,1038,2.35,2566,3.586,2568,4.219,2638,3.151,2639,2.678,2680,2.97,2682,4.219,2684,3.151,2685,3.151,2748,4.219,2749,2.97,2750,3.642,2751,3.642,2752,3.642,2753,4.876,2756,3.642,2758,3.642,2767,4.876,2768,5.295,2771,4.876,2773,4.876,2775,3.642,2776,3.369,2777,3.642,2778,3.642,2779,4.876,2780,3.642,2781,3.642,2782,3.642,2783,3.642,2784,3.642,2785,3.642,2786,3.642,2787,4.876,2788,3.642,2789,3.642,2790,3.642,2791,4.876,2792,3.642,2793,4.876,2794,3.642,2795,3.642,2796,3.642,2797,3.642,2798,3.642,2799,3.642,2800,3.642,2801,3.642,2802,3.642,2803,3.642,2804,3.642,2805,3.642,2996,4.563]],["title/interfaces/Signature.html",[0,1.107,40,2.281]],["body/interfaces/Signature.html",[0,1.95,1,3.571,2,2.119,3,0.126,4,0.101,5,0.076,6,3.107,7,0.381,8,1.116,10,3.525,11,2.676,12,2.364,13,4.348,14,3.883,15,4.348,16,3.528,17,3.242,18,0.622,19,3.378,20,1.544,21,0.011,22,1.898,24,4.348,25,4.348,26,4.348,27,4.097,28,4.097,29,2.276,30,4.348,31,3.525,32,3.883,33,2.028,34,4.348,35,4.348,36,4.348,37,3.854,38,4.348,39,3.883,40,4.177,41,4.619,42,3.455,43,4.619,44,4.197,45,2.613,46,4.097,47,2.562,48,1.085,49,3.883,50,3.107,51,2.795,52,3.107,53,3.883,54,3.883,55,3.297,56,0.126,57,0.006,58,0.008,59,0.006]],["title/interfaces/Signer.html",[0,1.107,104,2.767]],["body/interfaces/Signer.html",[0,1.466,2,1.797,3,0.107,4,0.086,5,0.065,7,0.323,9,1.196,18,0.608,20,1.48,21,0.011,40,4.673,41,3.993,42,2.499,43,4.536,44,3.628,47,3.022,48,1.73,51,2.499,56,0.107,57,0.005,58,0.007,59,0.005,60,0.005,77,0.943,78,3.603,79,1.68,86,0.881,92,1.304,93,0.688,104,4.554,112,1.238,113,2.443,114,1.942,134,1.388,140,0.342,163,1.737,185,1.21,221,1.994,227,2.448,305,1.427,357,2.687,395,2.173,663,3.665,686,2.796,688,2.99,736,2.377,800,1.931,891,3.8,936,2.269,1011,2.685,1026,2.99,1038,2.085,2566,4.584,2568,3.889,2591,3.889,2638,2.796,2639,2.377,2680,2.635,2682,3.889,2684,2.796,2685,2.796,2748,3.889,2749,2.635,2750,3.232,2751,5.167,2752,5.167,2753,5.87,2754,4.946,2755,4.946,2756,3.232,2758,3.232,2767,5.167,2768,5.258,2770,3.232,2771,5.167,2773,5.167,2775,3.232,2776,2.99,2777,4.495,2778,4.495,2779,5.167,2780,3.232,2781,3.232,2782,3.232,2783,3.232,2784,3.232,2785,3.232,2786,3.232,2787,4.495,2788,3.232,2789,3.232,2790,3.232,2791,4.495,2792,3.232,2793,4.495,2794,3.232,2795,3.232,2796,3.232,2797,3.232,2798,3.232,2799,3.232,2800,3.232,2801,3.232,2802,3.232,2803,3.232,2804,3.232,2805,3.232,2997,4.049,2998,4.049,2999,4.049,3000,4.049,3001,4.049,3002,4.049]],["title/interfaces/Staff.html",[0,1.107,622,2.383]],["body/interfaces/Staff.html",[0,1.608,2,2.741,3,0.163,4,0.131,5,0.099,7,0.493,8,1.312,18,0.671,20,1.529,21,0.011,22,2.009,32,5.069,56,0.163,57,0.007,58,0.009,59,0.007,93,0.769,622,4.443,2934,7.22,3003,5.423,3004,8.219,3005,8.219]],["title/interfaces/Token.html",[0,1.107,320,1.077]],["body/interfaces/Token.html",[0,1.49,2,2.54,3,0.151,4,0.121,5,0.092,7,0.457,8,1.253,9,1.303,11,3.207,18,0.695,20,1.55,21,0.011,23,4.881,56,0.151,57,0.007,58,0.008,59,0.007,93,0.749,95,2.931,320,1.943,1179,3.819,2433,4.567,2434,5.531,2436,6.393,2438,6.393,2441,4.225,2443,6.393,2444,5.914,3006,5.026]],["title/components/TokenDetailsComponent.html",[175,0.652,319,1.383]],["body/components/TokenDetailsComponent.html",[3,0.109,4,0.087,5,0.066,7,0.329,8,1.01,9,0.67,18,0.455,21,0.011,56,0.109,57,0.005,58,0.007,59,0.005,60,0.005,77,0.954,84,1.226,86,0.756,88,1.379,91,1.801,92,0.73,93,0.716,95,2.085,112,0.67,140,0.449,175,1.002,176,1.339,177,2.085,178,1.507,179,1.709,180,1.507,181,1.379,185,1.702,186,3.003,187,1.302,188,2.364,189,2.364,190,2.958,191,3.208,193,2.364,195,2.364,207,3.24,221,1.405,244,1.709,245,0.493,249,2.038,250,1.462,253,1.751,272,2.679,281,2.82,285,1.164,286,2.149,287,2.085,288,1.197,289,2.659,290,1.553,291,1.379,292,2.464,293,1.339,294,1.553,295,1.553,296,1.339,297,1.553,298,1.379,299,1.553,300,1.339,301,1.553,302,1.339,303,1.553,304,1.339,305,1.043,306,1.553,307,1.379,308,2.149,309,1.462,310,1.339,311,1.553,312,1.339,313,1.553,314,1.339,315,1.553,316,1.379,317,2.149,318,1.462,319,2.293,320,2.172,321,1.339,322,1.553,323,1.379,324,2.149,325,1.462,326,1.379,327,1.072,328,1.339,329,1.379,330,1.339,331,1.339,332,1.553,333,1.339,334,1.553,335,1.339,336,1.553,337,1.42,338,1.507,339,1.553,391,2.307,392,2.038,429,3.707,515,3.192,530,5.003,586,3.286,623,5.204,1179,2.716,2280,4.547,2429,3.343,2431,4.206,2434,3.934,2441,4.206,2444,4.206,2553,4.547,3007,6.19,3008,5.204,3009,3.286,3010,5.736,3011,5.003,3012,4.117,3013,7.047,3014,5.418,3015,5.696,3016,4.117,3017,4.117,3018,4.117,3019,4.117,3020,6.19,3021,5.003,3022,5.696,3023,5.696,3024,5.696,3025,5.696,3026,5.696,3027,5.696,3028,5.696,3029,5.003,3030,5.696,3031,5.696]],["title/pipes/TokenRatioPipe.html",[1754,2.622,2979,2.936]],["body/pipes/TokenRatioPipe.html",[3,0.168,4,0.134,5,0.102,9,1.032,18,0.507,21,0.01,33,1.523,56,0.168,57,0.008,58,0.009,59,0.008,60,0.008,77,1.063,86,0.735,92,1.125,93,0.704,112,1.032,134,1.565,140,0.385,185,1.897,187,2.007,245,0.759,429,4.897,1610,4.383,1754,3.914,2903,5.066,2906,5.574,2908,7.045,2910,6.609,2979,5.196,3032,6.609,3033,5.574,3034,7.524,3035,6.346,3036,6.346,3037,6.346,3038,6.346]],["title/classes/TokenRegistry.html",[60,0.005,3039,2.936]],["body/classes/TokenRegistry.html",[0,0.84,3,0.085,4,0.068,5,0.052,7,0.258,8,0.847,9,0.927,18,0.563,20,1.405,21,0.011,22,2.047,45,1.338,48,1.295,53,1.989,54,5.029,56,0.085,57,0.004,58,0.006,59,0.004,60,0.004,62,1.255,64,3.245,65,2.68,66,5.535,68,4.999,69,4.199,70,4.199,71,6.581,72,3.53,73,4.15,74,3.757,75,6.191,76,6.722,77,0.8,78,3.941,79,3.319,84,0.694,85,4.199,86,0.844,88,1.601,89,4.207,90,6.84,91,2.369,92,1.01,93,0.63,94,5.371,95,3.093,96,2.574,105,5.626,109,5.626,110,6.191,112,1.285,113,2.66,131,4.653,134,1.554,135,1.217,139,6.191,140,0.29,141,3.886,142,2.227,143,1.08,144,1.383,145,1.661,146,2.574,147,3.302,148,2.574,150,2.574,151,2.574,152,1.556,153,2.381,154,2.832,155,3.382,156,4.199,157,2.832,158,2.832,159,4.199,160,2.832,163,2.444,320,2.232,1096,1.893,1235,4.101,1240,4.199,2429,4.571,3039,3.302,3040,5.981,3041,2.574,3042,4.781,3043,7.048,3044,4.781,3045,3.225,3046,3.225,3047,4.781,3048,3.225,3049,6.84,3050,6.301,3051,3.225,3052,3.225,3053,4.781,3054,4.781,3055,3.225,3056,7.787,3057,3.225,3058,4.781,3059,3.225,3060,2.832,3061,3.225,3062,3.225,3063,3.225,3064,3.225,3065,3.225,3066,3.225]],["title/injectables/TokenService.html",[871,1.344,3014,2.936]],["body/injectables/TokenService.html",[3,0.127,4,0.101,5,0.077,7,0.383,8,1.119,9,1.148,18,0.639,20,1.406,21,0.011,22,1.215,33,1.151,48,1.435,56,0.127,57,0.006,58,0.008,59,0.006,60,0.006,68,4.143,77,1.057,79,3.436,84,1.359,86,0.944,92,1.251,93,0.661,95,2.311,112,1.148,113,2.941,134,1.741,140,0.495,144,2.057,145,2.47,152,2.297,163,3.218,168,5.546,228,1.516,245,0.574,253,1.941,521,3.495,542,2.287,638,2.47,744,2.47,871,1.997,874,2.574,889,2.574,905,3.541,906,5.91,962,2.574,1069,5.31,1099,2.574,1101,3.828,1152,3.828,1179,2.287,2504,6.589,2506,5.546,2864,5.635,2873,3.828,2874,3.828,3014,4.361,3039,5.527,3067,4.212,3068,7.059,3069,6.314,3070,6.314,3071,6.314,3072,4.795,3073,6.314,3074,4.795,3075,4.795,3076,7.795,3077,4.795,3078,4.795,3079,4.212,3080,4.795,3081,4.212,3082,4.795,3083,4.795,3084,4.795,3085,4.795,3086,4.795,3087,4.795,3088,4.795,3089,4.795,3090,4.795,3091,4.795,3092,4.795,3093,4.795,3094,4.795]],["title/classes/TokenServiceStub.html",[60,0.005,3095,3.393]],["body/classes/TokenServiceStub.html",[3,0.169,4,0.135,5,0.102,7,0.511,9,1.041,18,0.511,20,1.387,21,0.011,56,0.169,57,0.008,58,0.009,59,0.008,60,0.008,62,2.49,77,1.266,86,0.74,92,1.134,93,0.707,112,1.041,134,1.577,516,3.585,844,3.743,1179,3.605,1599,4.723,2431,4.723,3095,6.034,3096,6.64,3097,7.56,3098,7.56,3099,6.397]],["title/components/TokensComponent.html",[175,0.652,321,1.383]],["body/components/TokensComponent.html",[3,0.095,4,0.076,5,0.058,7,0.287,8,0.918,9,0.987,18,0.603,20,1.046,21,0.011,33,1.243,56,0.16,57,0.004,58,0.006,59,0.004,60,0.004,77,0.867,79,3.04,84,1.115,86,0.925,88,1.205,91,1.638,92,1.076,93,0.748,95,2.429,112,1.08,113,2.505,135,2.505,140,0.478,152,1.171,163,2.603,175,0.931,176,1.171,177,1.896,178,1.317,179,1.493,180,1.317,181,1.205,185,1.548,186,2.79,187,1.138,188,2.15,189,2.15,190,2.924,191,3.166,192,3.194,193,2.15,195,2.15,207,3.052,218,4.051,221,1.637,228,1.138,244,1.493,245,0.431,248,1.782,249,1.782,250,1.278,253,1.865,281,2.564,285,1.017,286,1.954,287,1.896,288,1.046,289,2.505,290,1.358,291,1.205,292,2.29,293,1.171,294,1.358,295,1.358,296,1.171,297,1.358,298,1.205,299,1.358,300,1.171,301,1.358,302,1.171,303,1.358,304,1.171,305,0.912,306,1.358,307,1.205,308,1.954,309,1.278,310,1.171,311,1.358,312,1.171,313,1.358,314,1.171,315,1.358,316,1.205,317,1.954,318,1.278,319,1.171,320,1.538,321,2.16,322,1.358,323,1.205,324,1.954,325,1.278,326,1.205,327,0.937,328,1.171,329,1.205,330,1.171,331,1.171,332,1.358,333,1.171,334,1.358,335,1.171,336,1.358,337,1.241,338,1.317,339,1.358,345,4.191,349,4.191,350,4.191,351,3.577,352,4.584,357,3.133,359,3.577,370,4.191,380,4.191,381,3.371,382,3.577,384,4.191,385,3.577,386,2.485,387,1.853,388,1.931,389,1.931,390,2.219,405,2.657,407,2.657,408,2.485,409,2.657,410,2.485,412,2.657,413,2.485,423,3.577,429,3.371,586,2.872,1179,3.165,2429,4.688,2434,4.584,2553,4.134,3014,5.059,3020,4.549,3021,4.549,3029,4.549,3039,2.485,3100,3.161,3101,6.068,3102,5.179,3103,6.068,3104,5.179,3105,3.598,3106,5.179,3107,3.598,3108,3.598,3109,3.598,3110,5.179,3111,3.598,3112,3.598,3113,3.598,3114,3.598,3115,3.598,3116,3.598,3117,3.598,3118,5.179,3119,5.179,3120,3.598,3121,3.598,3122,3.598,3123,3.598]],["title/modules/TokensModule.html",[431,1.138,3124,3.139]],["body/modules/TokensModule.html",[3,0.139,4,0.112,5,0.084,21,0.011,56,0.139,57,0.006,58,0.008,59,0.006,60,0.006,140,0.538,143,2.25,245,0.632,285,1.492,319,2.672,321,2.672,387,2.718,388,2.833,389,2.833,431,1.413,433,1.932,434,2.613,435,3.966,436,2.718,437,2.833,438,1.932,443,4.229,445,3.605,446,2.833,447,2.517,449,2.788,450,3.943,451,2.958,453,3.098,455,3.255,458,3.645,465,4.373,466,4.64,467,4.961,468,3.897,469,4.64,470,4.144,471,3.255,472,4.373,473,3.435,474,3.255,475,4.144,476,3.255,477,4.144,478,3.255,479,4.373,480,3.435,486,4.64,487,3.435,3008,3.897,3124,6.421,3125,4.636,3126,4.636,3127,4.636,3128,5.672,3129,5.278,3130,5.278,3131,4.636,3132,4.636,3133,6.718,3134,6.718,3135,5.278,3136,6.718,3137,5.278]],["title/modules/TokensRoutingModule.html",[431,1.138,3128,2.936]],["body/modules/TokensRoutingModule.html",[3,0.165,4,0.132,5,0.1,21,0.011,45,2.588,48,1.417,56,0.165,57,0.007,58,0.009,59,0.007,60,0.007,140,0.5,143,2.088,175,1.142,245,0.746,250,2.214,319,2.423,321,2.423,433,2.282,438,2.282,449,3.09,458,4.306,497,3.66,498,3.66,499,4.173,500,4.37,504,3.845,3008,4.604,3128,5.142,3131,5.476,3132,5.476,3138,6.235]],["title/components/TopbarComponent.html",[175,0.652,323,1.424]],["body/components/TopbarComponent.html",[3,0.13,4,0.104,5,0.079,7,0.392,21,0.01,56,0.13,57,0.006,58,0.008,59,0.006,60,0.006,77,1.074,84,1.537,86,0.743,88,1.645,91,2.029,93,0.668,112,0.799,140,0.298,175,1.096,176,1.599,177,2.348,178,1.798,179,2.039,180,1.798,181,1.645,185,1.917,186,3.284,187,1.554,188,2.662,189,2.662,190,2.997,191,3.257,193,2.662,195,2.662,207,3.482,221,1.582,244,2.039,245,0.588,285,1.389,286,2.421,287,2.348,288,1.428,289,2.857,290,1.854,291,1.645,292,2.695,293,1.599,294,1.854,295,1.854,296,1.599,297,1.854,298,1.645,299,1.854,300,1.599,301,1.854,302,1.599,303,1.854,304,1.599,305,1.245,306,1.854,307,1.645,308,2.421,309,1.745,310,1.599,311,1.854,312,1.599,313,1.854,314,1.599,315,1.854,316,1.645,317,2.421,318,1.745,319,1.599,320,1.245,321,1.599,322,1.854,323,2.536,324,2.421,325,1.745,326,1.645,327,1.279,328,1.599,329,1.645,330,1.599,331,1.599,332,1.854,333,1.599,334,1.854,335,1.599,336,1.854,337,1.694,338,1.798,339,1.854,1396,4.737,3139,4.316,3140,7.143,3141,6.415,3142,4.913,3143,4.913]],["title/components/TopbarStubComponent.html",[175,0.652,325,1.51]],["body/components/TopbarStubComponent.html",[3,0.135,4,0.108,5,0.082,21,0.01,56,0.192,57,0.006,58,0.008,59,0.006,60,0.009,88,1.711,91,2.081,93,0.681,140,0.31,175,1.01,176,1.663,177,2.408,178,2.664,180,1.87,181,1.711,187,1.616,190,3.001,191,3.276,245,0.611,285,1.445,286,2.483,287,2.408,288,1.485,289,2.9,290,1.928,291,1.711,292,2.746,293,1.663,294,1.928,295,1.928,296,1.663,297,1.928,298,1.711,299,1.928,300,1.663,301,1.928,302,1.663,303,1.928,304,1.663,305,1.295,306,1.928,307,1.711,308,2.483,309,2.337,310,1.663,311,1.928,312,1.663,313,1.928,314,1.663,315,1.928,316,1.711,317,2.483,318,2.337,319,1.663,320,1.295,321,1.663,322,1.928,323,1.711,324,2.483,325,2.73,326,1.711,327,1.331,328,1.663,329,1.711,330,1.663,331,1.663,332,1.928,333,1.663,334,1.928,335,1.663,336,1.928,337,1.762,338,1.87,339,1.928,431,1.367,516,2.864,698,3.151,1388,3.773,1394,3.773,1395,5.81,1396,4.859]],["title/classes/Transaction.html",[60,0.005,327,1.107]],["body/classes/Transaction.html",[1,3.919,3,0.14,4,0.112,5,0.085,7,0.423,8,1.193,9,1.095,18,0.691,20,1.512,21,0.011,22,2.162,33,1.776,56,0.14,57,0.006,58,0.008,59,0.006,60,0.01,62,2.061,86,0.978,93,0.496,95,1.938,140,0.321,227,1.628,320,1.876,327,1.927,509,1.938,720,3.467,829,2.968,1082,4.579,1165,4.152,1166,3.447,1167,3.657,1168,3.657,1169,3.657,1170,3.657,1171,3.657,1177,3.657,1178,5.069,1179,2.525,1180,3.447,1181,3.447,1182,3.657,1183,3.657,1184,4.565,1185,4.345,1186,3.657,1187,3.657,1188,3.657,1189,3.447,1190,3.447,3144,5.296,3145,5.296,3146,5.296,3147,5.296,3148,5.296,3149,5.296,3150,5.296,3151,5.296]],["title/components/TransactionDetailsComponent.html",[175,0.652,326,1.424]],["body/components/TransactionDetailsComponent.html",[3,0.078,4,0.115,5,0.048,7,0.433,8,0.797,9,0.731,18,0.519,20,1.29,21,0.011,53,2.773,56,0.078,57,0.004,58,0.005,59,0.004,60,0.004,77,0.753,79,3.261,84,0.967,86,0.897,88,0.995,91,1.421,92,0.797,93,0.725,95,2.909,112,1.112,113,2.759,140,0.415,163,2.595,175,0.832,176,0.966,177,1.645,178,1.087,179,1.233,180,1.087,181,0.995,185,1.344,186,2.494,187,0.939,188,1.866,189,1.866,190,2.87,191,3.097,193,1.866,195,1.866,207,2.781,218,3.668,221,1.491,244,1.233,245,0.355,248,1.471,249,1.471,250,1.055,251,2.193,252,2.193,253,1.667,285,0.84,286,1.696,287,1.645,288,0.863,289,2.282,290,1.121,291,0.995,292,2.047,293,0.966,294,1.121,295,1.121,296,0.966,297,1.121,298,0.995,299,1.121,300,0.966,301,1.121,302,0.966,303,1.121,304,0.966,305,0.753,306,1.121,307,0.995,308,1.696,309,1.055,310,0.966,311,1.121,312,0.966,313,1.121,314,0.966,315,1.121,316,0.995,317,1.696,318,1.055,319,0.966,320,1.896,321,0.966,322,1.121,323,0.995,324,1.696,325,1.055,326,2.025,327,2.165,328,0.966,329,2.025,330,0.966,331,0.966,332,1.121,333,0.966,334,1.121,335,0.966,336,1.121,337,1.024,338,1.087,339,1.121,427,3.105,429,2.926,494,2.371,495,2.051,623,4.466,651,4.378,720,1.53,829,2.52,841,2.371,1179,3.259,1180,2.926,1181,2.926,1184,4.216,1185,4.012,1190,4.448,1262,2.926,1278,3.319,2520,2.609,3009,2.371,3010,4.764,3011,3.948,3152,6.902,3153,6.272,3154,5.424,3155,5.424,3156,5.424,3157,4.495,3158,6.048,3159,6.048,3160,6.048,3161,6.048,3162,5.424,3163,6.048,3164,4.495,3165,2.97,3166,4.495,3167,2.97,3168,2.97,3169,2.97,3170,2.97,3171,2.97,3172,2.97,3173,2.97,3174,2.97,3175,2.371,3176,2.97,3177,2.97,3178,5.424,3179,2.97,3180,2.97,3181,2.97,3182,2.97,3183,2.97,3184,2.97,3185,2.97,3186,2.97,3187,2.97,3188,2.97,3189,2.97,3190,2.97,3191,2.97,3192,2.97,3193,2.97,3194,2.609,3195,5.424,3196,2.97,3197,2.97,3198,6.048,3199,6.048,3200,4.495,3201,6.004,3202,4.495,3203,4.495,3204,6.835,3205,6.048,3206,3.948,3207,4.495,3208,4.495,3209,4.495,3210,3.948,3211,3.948,3212,4.495,3213,4.495,3214,6.048,3215,6.048,3216,6.048,3217,4.495,3218,4.495,3219,4.495,3220,6.048,3221,4.495,3222,4.495,3223,4.495,3224,4.495,3225,6.048,3226,4.495]],["title/injectables/TransactionService.html",[651,2.622,871,1.344]],["body/injectables/TransactionService.html",[3,0.075,4,0.06,5,0.046,7,0.227,8,0.771,9,1.173,18,0.613,19,1.526,20,1.384,21,0.011,22,2.115,33,1.678,37,1.408,42,1.93,48,1.878,49,3.647,56,0.075,57,0.006,58,0.005,59,0.003,60,0.003,68,3.099,77,0.728,79,3.068,84,0.936,86,0.93,91,0.899,92,1.278,93,0.675,95,1.933,112,1.173,113,2.536,134,1.571,140,0.501,141,4.313,144,1.22,145,1.464,147,1.964,152,2.073,163,2.883,217,4.313,221,1.458,228,1.67,245,0.34,251,2.1,252,2.1,253,2.217,305,1.338,327,1.659,329,1.768,357,2.902,391,1.594,392,1.408,393,1.851,394,3.211,509,1.041,521,3.155,542,1.356,638,1.464,650,4.313,651,2.682,720,2.24,744,1.464,810,2.1,871,1.375,874,1.526,889,1.526,905,2.1,906,4.962,928,3.82,936,1.594,962,2.334,1002,2.498,1038,1.464,1069,4.551,1072,4.721,1073,4.962,1082,2.334,1099,2.334,1101,2.27,1108,2.498,1152,3.471,1189,1.851,2679,2.27,2680,1.851,2681,2.27,2686,2.27,2864,4.215,2873,2.27,2874,2.27,2875,2.498,3079,2.498,3081,2.498,3206,2.498,3210,2.498,3211,2.498,3227,2.27,3228,5.28,3229,5.28,3230,5.28,3231,4.349,3232,4.349,3233,4.349,3234,3.82,3235,5.914,3236,3.82,3237,3.82,3238,4.349,3239,4.349,3240,4.349,3241,6.918,3242,2.843,3243,4.349,3244,2.843,3245,4.349,3246,2.843,3247,3.82,3248,2.843,3249,2.843,3250,3.82,3251,2.843,3252,3.82,3253,2.843,3254,4.349,3255,5.914,3256,5.914,3257,2.843,3258,4.349,3259,4.349,3260,2.843,3261,2.843,3262,4.349,3263,2.843,3264,2.843,3265,2.843,3266,2.843,3267,2.843,3268,2.843,3269,2.498,3270,2.843,3271,2.498,3272,2.843,3273,2.843,3274,2.843,3275,2.843,3276,2.843,3277,4.349,3278,2.843,3279,2.498,3280,2.27,3281,2.843,3282,2.843,3283,4.349,3284,4.349,3285,2.843,3286,2.498,3287,5.28,3288,2.843,3289,4.349,3290,5.28,3291,2.843,3292,4.349,3293,3.82,3294,2.843,3295,2.843,3296,2.843,3297,2.843,3298,2.843,3299,2.843,3300,2.843,3301,2.843,3302,4.349,3303,4.349,3304,2.843,3305,2.843,3306,4.349,3307,4.349,3308,2.498,3309,4.349,3310,2.843,3311,2.843,3312,2.843,3313,2.843,3314,2.843,3315,2.843,3316,2.843,3317,2.843,3318,2.843,3319,2.843,3320,2.843,3321,2.843,3322,2.843,3323,2.843,3324,2.843,3325,2.843,3326,2.843,3327,2.843,3328,2.843,3329,2.843,3330,2.843,3331,2.843,3332,2.843,3333,2.843,3334,2.843,3335,2.843,3336,2.843,3337,2.843,3338,2.843,3339,2.843,3340,2.843,3341,2.843,3342,2.843,3343,2.843,3344,2.843,3345,2.843,3346,2.843,3347,2.843,3348,2.843,3349,2.843,3350,2.843,3351,2.843,3352,2.843,3353,2.843,3354,2.843,3355,2.843,3356,2.843]],["title/classes/TransactionServiceStub.html",[60,0.005,3357,3.393]],["body/classes/TransactionServiceStub.html",[3,0.153,4,0.123,5,0.093,7,0.464,9,1.255,18,0.616,21,0.011,22,2.197,56,0.153,57,0.007,58,0.009,59,0.007,60,0.007,62,2.26,77,1.194,86,0.893,92,1.368,93,0.722,112,1.255,134,1.431,140,0.352,221,1.985,327,1.512,516,3.254,521,3.821,542,2.768,720,2.989,844,3.985,1072,4.634,1073,5.699,2895,5.099,3234,6.263,3236,6.263,3237,6.263,3241,6.779,3247,6.263,3250,6.263,3252,6.263,3357,5.692,3358,7.07,3359,5.805,3360,5.099,3361,5.805,3362,5.805]],["title/components/TransactionsComponent.html",[175,0.652,328,1.383]],["body/components/TransactionsComponent.html",[3,0.082,4,0.065,5,0.049,7,0.247,8,0.821,9,0.904,18,0.665,20,1.139,21,0.011,22,1.174,33,1.816,56,0.147,57,0.004,58,0.006,59,0.004,60,0.004,77,0.776,84,0.997,86,0.957,88,1.035,91,1.465,92,0.985,93,0.649,112,1.129,135,2.792,140,0.449,152,1.006,175,0.852,176,1.006,177,1.695,178,1.131,179,1.283,180,1.131,181,1.035,185,1.384,186,2.554,187,0.977,188,1.922,189,1.922,190,2.882,191,3.112,192,2.857,193,1.922,195,1.922,207,2.837,217,4.437,221,1.954,228,1.951,244,1.283,245,0.37,248,1.53,249,1.53,253,1.708,272,2.012,281,2.293,285,0.874,286,1.748,287,1.695,288,0.898,289,2.328,290,1.166,291,1.035,292,2.096,293,1.006,294,1.166,295,1.166,296,1.006,297,1.166,298,1.035,299,1.166,300,1.006,301,1.166,302,1.006,303,1.166,304,1.006,305,0.783,306,1.166,307,1.035,308,1.748,309,1.098,310,1.006,311,1.166,312,1.006,313,1.166,314,1.006,315,1.166,316,1.035,317,1.748,318,1.098,319,1.006,320,0.783,321,1.006,322,1.166,323,1.035,324,1.748,325,1.098,326,1.035,327,1.97,328,2.008,329,2.654,330,1.006,331,1.006,332,1.166,333,1.006,334,1.166,335,1.006,336,1.166,337,1.066,338,1.131,339,1.166,345,3.837,346,4.88,348,4.88,349,3.837,350,3.837,351,3.199,352,4.261,359,3.199,370,3.837,372,4.261,374,4.926,376,3.697,377,4.069,378,2.719,380,3.837,381,3.015,382,3.199,384,3.837,385,3.199,386,2.135,387,1.592,388,1.659,389,1.659,390,1.906,391,1.732,392,1.53,393,2.012,408,3.199,410,3.199,413,2.135,422,3.697,423,3.199,427,3.199,429,4.016,651,4.437,1059,5.124,1184,3.806,1185,3.622,2729,3.697,3286,2.715,3308,4.069,3363,2.715,3364,5.555,3365,5.555,3366,4.632,3367,5.555,3368,5.555,3369,5.555,3370,5.555,3371,6.17,3372,6.17,3373,4.632,3374,3.091,3375,4.632,3376,3.091,3377,3.091,3378,3.091,3379,3.091,3380,3.091,3381,4.632,3382,3.091,3383,3.091,3384,3.091,3385,3.091,3386,3.091,3387,3.091,3388,3.091,3389,3.091,3390,3.091,3391,3.091,3392,3.091,3393,4.632,3394,3.091,3395,3.091,3396,4.632,3397,4.632,3398,3.091,3399,3.091,3400,3.091,3401,3.091,3402,4.632,3403,4.632,3404,3.091,3405,3.091,3406,6.17,3407,4.632,3408,4.632,3409,4.632,3410,4.632,3411,4.632,3412,4.632,3413,4.632]],["title/modules/TransactionsModule.html",[431,1.138,444,2.936]],["body/modules/TransactionsModule.html",[3,0.136,4,0.109,5,0.082,21,0.011,56,0.136,57,0.006,58,0.008,59,0.006,60,0.006,140,0.538,143,2.211,245,0.614,285,1.452,326,2.901,328,2.653,387,2.644,388,2.755,389,2.755,431,1.374,433,1.879,434,2.542,435,3.915,436,2.644,437,2.755,438,2.67,443,4.199,444,6.011,445,3.542,446,2.755,447,2.448,449,2.739,450,3.874,451,2.878,453,3.014,455,3.167,458,3.546,459,5.269,460,2.755,461,3.791,465,4.296,466,4.558,467,4.874,468,3.791,469,4.558,470,4.071,471,3.167,472,4.296,473,3.342,474,3.167,475,4.071,476,3.167,477,4.071,478,3.167,479,4.296,480,3.342,481,4.558,482,3.546,486,4.558,487,3.342,493,5.798,494,4.098,495,3.546,3153,4.098,3414,4.51,3415,4.51,3416,4.51,3417,4.51,3418,5.631,3419,5.134,3420,5.134,3421,4.51,3422,5.134]],["title/modules/TransactionsRoutingModule.html",[431,1.138,3418,2.936]],["body/modules/TransactionsRoutingModule.html",[3,0.169,4,0.135,5,0.102,21,0.011,48,1.454,56,0.169,57,0.008,58,0.009,59,0.008,60,0.008,140,0.488,143,2.142,175,0.981,245,0.765,250,2.272,328,2.46,433,2.341,438,2.341,449,3.137,497,3.755,498,3.7,499,4.237,500,3.755,504,3.945,3418,5.221,3421,5.619,3423,6.397]],["title/classes/Tx.html",[60,0.005,1082,2.281]],["body/classes/Tx.html",[1,3.757,3,0.144,4,0.116,5,0.087,7,0.437,8,1.218,18,0.662,20,1.505,21,0.011,22,2.203,33,1.312,56,0.144,57,0.007,58,0.008,59,0.007,60,0.01,62,2.128,86,0.94,93,0.512,95,2.001,140,0.332,227,2.112,320,1.385,327,1.789,509,2.001,720,3.538,829,4.21,1082,4.514,1165,4.237,1166,3.559,1167,3.776,1168,3.776,1169,3.776,1170,3.776,1171,3.776,1177,3.776,1178,5.008,1179,2.607,1180,4.889,1181,4.889,1182,5.188,1183,5.188,1184,3.372,1185,3.209,1186,3.776,1187,3.776,1188,3.776,1189,3.559,1190,3.559,3424,5.468,3425,5.468,3426,5.468,3427,5.468,3428,5.468]],["title/classes/TxToken.html",[60,0.005,1178,2.622]],["body/classes/TxToken.html",[1,3.79,3,0.148,4,0.118,5,0.09,7,0.447,8,1.236,18,0.635,20,1.521,21,0.011,22,2.165,33,1.344,56,0.148,57,0.007,58,0.008,59,0.007,60,0.01,62,2.18,86,0.879,93,0.711,95,2.78,140,0.34,227,1.722,320,1.419,327,1.816,509,2.05,720,3.592,829,3.14,1082,4.474,1165,4.302,1166,3.646,1167,3.869,1168,3.869,1169,3.869,1170,3.869,1171,3.869,1177,3.869,1178,5.142,1179,3.621,1180,3.646,1181,3.646,1182,3.869,1183,3.869,1184,3.455,1185,3.288,1186,3.869,1187,3.869,1188,3.869,1189,3.646,1190,3.646,3429,5.602,3430,5.602,3431,5.602]],["title/classes/UserServiceStub.html",[60,0.005,3432,3.393]],["body/classes/UserServiceStub.html",[3,0.078,4,0.062,5,0.047,7,0.236,8,0.792,9,0.98,11,4.337,14,4.773,16,1.652,18,0.656,19,1.582,20,1.287,21,0.011,22,1.641,27,1.919,28,1.919,33,1.073,45,3.563,51,2.675,56,0.078,57,0.004,58,0.005,59,0.004,60,0.004,62,1.148,77,0.748,86,0.789,92,1.068,93,0.757,95,2.832,112,0.98,114,2.442,123,2.939,134,1.486,140,0.179,144,1.265,171,4.47,228,1.414,282,5.166,320,1.133,374,6.177,378,3.537,505,4.303,507,4.706,508,4.494,509,3.116,516,1.652,521,2.673,538,2.59,542,1.406,551,2.624,554,3.514,556,3.568,562,4.153,608,6.22,609,5.292,668,4.436,800,1.406,817,3.087,832,3.716,844,3.506,857,2.757,1096,4.001,1593,3.568,1595,3.568,1596,4.81,1597,6.078,1598,4.81,1599,5.386,1600,3.568,1601,3.568,1602,4.81,1603,3.568,1604,4.161,1605,3.568,1606,3.568,1607,3.568,1608,4.449,1609,3.568,1610,3.087,1611,3.568,1981,3.568,2076,3.568,2106,3.568,2263,2.353,2300,3.568,2368,2.353,2376,4.31,2427,5.652,2428,4.81,2491,3.926,2946,3.987,3360,2.59,3432,3.568,3433,6.22,3434,4.47,3435,4.47,3436,2.948,3437,5.399,3438,5.399,3439,5.399,3440,7.738,3441,5.399,3442,5.399,3443,7.738,3444,7.738,3445,4.47,3446,4.47,3447,4.47,3448,4.47,3449,4.47,3450,4.47,3451,4.47,3452,4.47,3453,4.47,3454,4.47,3455,4.47,3456,4.47,3457,4.47,3458,4.47,3459,4.47,3460,4.47,3461,4.47,3462,4.47,3463,4.47,3464,4.47,3465,4.47,3466,4.47,3467,2.948,3468,4.47,3469,2.948,3470,4.47,3471,2.948,3472,2.948,3473,4.47,3474,2.948,3475,2.948,3476,2.948,3477,2.948,3478,2.948,3479,2.948,3480,2.948,3481,2.948,3482,2.948,3483,2.59,3484,2.948]],["title/classes/W3.html",[60,0.005,2917,3.139]],["body/classes/W3.html",[3,0.166,4,0.133,5,0.1,7,0.501,8,1.324,18,0.597,21,0.011,44,4.631,56,0.166,57,0.007,58,0.009,59,0.007,60,0.009,62,2.441,68,3.681,86,0.865,273,5.16,1077,4.188,1247,5.706,2914,5.006,2915,6.563,2916,5.509,2917,6.232,2918,5.509,2923,5.509,3485,6.271,3486,6.271]],["title/coverage.html",[3487,4.648]],["body/coverage.html",[0,2.036,1,1.31,5,0.044,6,4.084,12,1.361,18,0.22,19,2.273,21,0.011,37,1.361,40,1.475,46,1.789,49,1.695,51,3.971,57,0.003,58,0.005,59,0.003,60,0.01,61,2.194,63,4.126,104,1.789,141,2.613,144,2.218,147,2.926,152,0.894,175,1.274,176,0.894,182,3.721,183,2.029,184,2.414,217,1.695,231,1.695,288,1.824,291,0.92,293,0.894,296,0.894,298,0.92,300,0.894,302,0.894,304,0.894,305,1.31,307,0.92,309,0.976,310,0.894,312,0.894,314,0.894,316,0.92,318,0.976,319,0.894,320,0.696,321,0.894,323,0.92,325,0.976,326,0.92,327,0.716,328,0.894,331,0.894,333,0.894,335,0.894,337,0.948,340,2.414,344,1.898,357,1.141,378,5.039,390,1.695,431,1.383,457,2.194,463,2.029,505,1.475,506,4.012,510,1.613,512,1.695,513,2.194,514,2.414,515,1.54,516,3.998,550,2.414,554,1.789,581,1.789,622,1.54,637,2.414,650,1.695,651,1.695,652,1.789,720,1.415,729,1.898,730,1.789,731,1.898,732,1.898,745,2.029,746,1.898,752,1.789,776,2.414,800,2.465,814,3.781,834,2.613,836,2.414,844,2.56,871,2.363,890,2.414,891,1.613,939,1.898,1059,2.029,1060,2.414,1061,2.414,1069,1.789,1077,1.54,1082,1.475,1165,1.695,1166,4.084,1178,1.695,1198,2.414,1199,2.414,1202,2.029,1203,2.029,1205,2.029,1207,2.029,1244,2.414,1245,2.414,1275,2.194,1276,2.414,1307,2.414,1308,2.029,1309,2.414,1323,2.414,1324,2.414,1342,2.414,1387,2.414,1394,3.817,1397,3.382,1398,3.382,1471,2.414,1472,2.414,1479,2.414,1495,2.414,1510,2.414,1550,3.382,1551,2.414,1564,3.382,1574,2.029,1575,5.966,1576,5.966,1754,2.613,1863,2.194,2362,2.194,2429,1.613,2461,2.194,2484,5.694,2566,4.055,2567,3.817,2639,1.613,2640,2.029,2714,2.414,2748,1.898,2749,3.781,2768,1.898,2806,2.414,2837,2.414,2855,2.414,2862,2.194,2876,2.194,2877,2.414,2891,2.414,2892,2.194,2902,1.898,2904,2.414,2914,3.382,2917,2.029,2924,2.414,2979,1.898,2990,2.414,3003,2.414,3006,2.414,3007,2.414,3008,2.029,3009,4.126,3014,1.898,3032,2.414,3033,2.414,3039,1.898,3040,4.126,3041,4.126,3049,2.414,3067,2.414,3095,2.194,3096,2.414,3100,2.414,3139,2.414,3152,2.414,3153,2.194,3175,2.194,3227,3.382,3357,2.194,3358,2.414,3363,2.414,3432,2.194,3433,2.414,3487,2.194,3488,2.748,3489,2.748,3490,2.748,3491,8.344,3492,8.344,3493,2.748,3494,5.809,3495,2.414,3496,2.414,3497,2.414,3498,2.414,3499,2.414,3500,4.236,3501,2.414,3502,4.637,3503,2.748,3504,2.414,3505,2.414,3506,4.126,3507,2.414,3508,2.414,3509,2.414,3510,3.721,3511,3.721,3512,2.414,3513,2.414,3514,7.982,3515,6.275,3516,6.275,3517,5.169,3518,7.819,3519,6.63,3520,5.169,3521,4.236,3522,4.236,3523,2.748,3524,4.236,3525,5.809,3526,4.236,3527,2.748,3528,4.236,3529,3.721,3530,2.748,3531,2.748,3532,2.748,3533,2.748,3534,4.236,3535,2.414,3536,2.414,3537,2.414,3538,2.414,3539,2.748,3540,2.748]],["title/dependencies.html",[434,2.534,3541,3.54]],["body/dependencies.html",[19,2.959,21,0.011,37,2.731,42,2.448,57,0.007,58,0.008,59,0.007,141,3.401,245,0.66,247,2.959,250,1.959,434,2.731,436,2.84,451,3.091,460,2.959,461,4.072,542,2.629,585,4.844,735,5.513,736,4.054,749,4.402,750,4.402,829,3.091,962,4.047,1099,3.707,2639,3.237,2823,4.844,2824,4.844,3269,4.844,3271,4.844,3280,4.402,3542,7.484,3543,5.515,3544,6.907,3545,5.515,3546,5.515,3547,5.515,3548,5.515,3549,5.515,3550,5.515,3551,5.515,3552,5.515,3553,5.515,3554,5.515,3555,5.515,3556,5.515,3557,5.515,3558,5.515,3559,5.515,3560,5.515,3561,6.907,3562,5.515,3563,6.907,3564,6.907,3565,5.515,3566,5.515,3567,5.515,3568,5.515,3569,5.515,3570,5.515,3571,5.515,3572,5.515,3573,5.515,3574,5.515,3575,5.515,3576,5.515,3577,5.515,3578,5.515,3579,5.515,3580,5.515,3581,5.515,3582,5.515,3583,5.515,3584,5.515,3585,5.515,3586,5.515,3587,5.515]],["title/miscellaneous/functions.html",[2513,4.086,3588,2.304]],["body/miscellaneous/functions.html",[5,0.118,7,0.364,9,1.311,18,0.612,19,3.947,21,0.011,22,1.156,42,3.578,57,0.005,58,0.007,59,0.005,64,4.151,65,3.424,74,3.146,86,0.707,92,1.429,93,0.766,105,4.876,106,4.008,109,4.876,112,1.349,113,2.305,114,1.573,115,4.008,125,4.876,135,3.162,171,2.678,221,1.698,227,1.403,390,3.768,438,1.67,539,3.151,545,5.366,668,3.976,864,3.369,953,5.497,1096,3.586,1262,2.97,1289,4.787,1440,3.369,1610,3.151,2513,3.642,2862,5.497,3175,4.876,3194,4.008,3495,4.008,3496,5.366,3497,5.366,3498,4.008,3499,5.366,3501,4.008,3502,6.121,3504,4.008,3505,5.366,3506,3.642,3507,5.366,3508,5.366,3510,4.008,3511,6.049,3512,5.366,3513,5.366,3588,2.97,3589,4.563,3590,4.563,3591,4.563,3592,4.563,3593,5.366,3594,6.109,3595,4.563,3596,6.109,3597,4.563,3598,4.563,3599,4.563,3600,4.563,3601,5.366,3602,6.887,3603,4.563,3604,6.109,3605,4.563,3606,4.008,3607,4.008,3608,4.563,3609,6.109,3610,6.887,3611,7.668,3612,6.46,3613,4.563,3614,4.563,3615,4.563,3616,4.563,3617,4.563,3618,4.563,3619,4.563,3620,4.563,3621,4.563,3622,4.563,3623,4.008,3624,4.563,3625,4.563,3626,4.563,3627,6.109,3628,4.563,3629,4.563,3630,4.563,3631,4.876,3632,4.563,3633,6.109,3634,7.355,3635,5.366,3636,6.109,3637,4.563]],["title/index.html",[7,0.283,3638,3.109,3639,3.109]],["body/index.html",[4,0.105,5,0.115,21,0.009,39,3.059,57,0.006,58,0.008,59,0.006,73,3.059,88,1.661,93,0.711,144,3.465,152,2.1,175,1.101,178,1.815,191,2.362,228,1.568,276,3.959,329,1.661,395,2.661,431,2.201,433,1.815,447,2.365,460,4.335,515,3.617,522,5.298,539,5.578,551,2.911,670,3.662,694,4.356,780,4.356,809,4.356,818,4.356,832,3.059,856,3.662,859,3.959,962,2.661,1099,2.661,1239,5.669,1367,3.228,1512,5.669,2010,5.727,2470,5.152,2946,3.662,3542,4.356,3623,6.302,3640,4.959,3641,4.959,3642,6.454,3643,4.959,3644,7.879,3645,7.471,3646,7.599,3647,5.669,3648,4.959,3649,4.959,3650,5.669,3651,4.959,3652,4.959,3653,4.959,3654,4.959,3655,4.356,3656,4.959,3657,4.356,3658,4.959,3659,7.879,3660,6.921,3661,4.959,3662,4.959,3663,4.356,3664,4.959,3665,7.599,3666,6.448,3667,6.454,3668,4.959,3669,4.959,3670,5.669,3671,4.959,3672,4.959,3673,4.959,3674,4.959,3675,4.959,3676,4.959,3677,5.669,3678,5.669,3679,6.454,3680,7.599,3681,4.959,3682,5.669,3683,4.959,3684,6.675,3685,4.959,3686,4.959,3687,4.959,3688,4.356,3689,4.959,3690,4.959,3691,4.959,3692,4.959,3693,4.959,3694,4.959,3695,4.356,3696,4.356,3697,3.959,3698,4.959,3699,4.959]],["title/license.html",[3638,3.109,3639,3.109,3700,3.109]],["body/license.html",[0,1.057,2,1.031,4,0.161,5,0.027,17,1.196,18,0.135,21,0.002,22,0.428,29,0.443,39,4.198,42,1.031,57,0.002,58,0.002,59,0.002,60,0.001,72,2.109,73,2.692,74,1.707,77,0.156,78,3.505,86,0.108,89,2.109,95,0.34,102,0.817,116,0.817,120,2.289,121,1.715,122,3.7,124,3.26,131,1.248,134,0.229,140,0.056,152,1.32,171,1.946,175,0.509,221,0.229,253,0.286,276,0.742,283,1.859,327,1.057,372,1.604,376,0.742,391,0.947,427,0.642,447,0.443,503,0.605,509,2.119,522,4.971,525,2.28,526,0.605,528,0.817,543,1.484,544,1.484,554,0.605,562,0.499,581,0.605,596,0.817,622,0.521,623,1.248,655,0.742,663,1.1,668,2.157,679,0.687,684,0.742,686,2.289,701,0.687,762,2.447,800,0.443,832,2.044,837,1.349,839,2.74,844,0.837,856,1.248,857,2.692,858,0.742,861,3.895,863,2.28,864,3.91,872,3.423,873,3.764,962,0.499,978,0.817,979,1.484,1012,0.817,1013,2.447,1015,0.817,1016,1.349,1017,1.349,1038,0.479,1073,1.248,1096,1.946,1099,0.499,1139,0.817,1141,1.484,1185,1.677,1235,1.511,1237,1.248,1241,0.687,1249,4.069,1263,1.248,1264,2.962,1267,1.484,1289,4.218,1290,1.484,1367,4.762,1368,0.742,1369,0.817,1377,1.349,1384,2.039,1416,2.28,1421,1.349,1432,3.483,1434,0.742,1436,1.853,1467,5.311,1542,1.484,1570,0.817,1580,2.509,1586,0.817,1604,1.604,1608,0.687,1749,0.742,1872,0.742,1892,0.742,1939,1.715,2030,0.742,2049,0.742,2078,0.742,2084,0.742,2093,0.742,2101,6.741,2103,3.895,2322,0.742,2323,2.962,2470,2.646,2473,1.484,2474,1.484,2509,0.817,2510,2.509,2512,2.039,2591,0.642,2653,1.349,2665,1.853,2666,1.349,2715,1.248,2729,0.742,2736,2.911,2741,0.817,2770,4.371,2812,1.853,2892,0.742,2939,2.039,2946,3.423,2955,0.817,3201,0.817,3293,1.484,3483,1.484,3487,1.349,3538,0.817,3601,4.953,3606,5.978,3607,1.484,3612,0.817,3631,0.742,3635,1.484,3645,3.833,3647,2.509,3650,0.817,3655,2.509,3657,2.509,3660,0.817,3663,0.817,3670,3.26,3678,2.039,3682,0.817,3684,0.817,3688,2.039,3695,3.833,3696,3.564,3700,7.462,3701,6.284,3702,0.93,3703,0.93,3704,2.322,3705,7.119,3706,4.364,3707,6.386,3708,6.942,3709,3.711,3710,0.93,3711,0.93,3712,1.689,3713,3.315,3714,3.315,3715,2.322,3716,2.322,3717,0.93,3718,0.93,3719,0.93,3720,1.689,3721,5.295,3722,3.711,3723,0.93,3724,3.711,3725,0.93,3726,0.93,3727,4.364,3728,0.93,3729,0.93,3730,0.93,3731,5.639,3732,7.789,3733,5.639,3734,2.322,3735,2.322,3736,1.689,3737,1.689,3738,4.058,3739,4.058,3740,5.639,3741,3.315,3742,0.93,3743,2.857,3744,4.364,3745,1.689,3746,4.364,3747,2.322,3748,0.93,3749,1.689,3750,0.93,3751,2.322,3752,6.284,3753,3.315,3754,1.689,3755,2.857,3756,0.93,3757,0.93,3758,1.689,3759,2.857,3760,5.295,3761,1.689,3762,6.481,3763,1.689,3764,2.857,3765,4.058,3766,3.315,3767,0.93,3768,4.364,3769,3.315,3770,7.222,3771,2.322,3772,4.058,3773,0.93,3774,0.93,3775,4.364,3776,1.689,3777,5.098,3778,4.879,3779,3.315,3780,1.689,3781,0.93,3782,0.93,3783,5.79,3784,1.689,3785,0.93,3786,5.475,3787,1.689,3788,0.93,3789,2.322,3790,0.93,3791,0.93,3792,0.93,3793,0.93,3794,0.93,3795,0.93,3796,0.93,3797,0.93,3798,0.93,3799,0.93,3800,1.689,3801,0.93,3802,0.93,3803,0.93,3804,1.689,3805,0.93,3806,0.93,3807,1.689,3808,1.689,3809,5.639,3810,0.93,3811,1.689,3812,1.689,3813,0.93,3814,0.93,3815,1.689,3816,2.322,3817,1.689,3818,2.322,3819,0.93,3820,0.93,3821,3.711,3822,0.93,3823,0.93,3824,3.315,3825,0.93,3826,0.93,3827,2.857,3828,0.93,3829,0.93,3830,1.689,3831,2.322,3832,0.93,3833,0.93,3834,4.636,3835,0.93,3836,5.639,3837,2.857,3838,3.315,3839,3.711,3840,2.322,3841,0.93,3842,2.322,3843,6.174,3844,1.689,3845,0.93,3846,0.93,3847,0.93,3848,2.322,3849,7.679,3850,4.879,3851,0.93,3852,0.93,3853,1.689,3854,1.689,3855,0.93,3856,4.879,3857,0.93,3858,2.857,3859,4.364,3860,0.93,3861,2.322,3862,2.322,3863,1.689,3864,3.711,3865,7.586,3866,2.322,3867,4.636,3868,2.857,3869,4.058,3870,1.689,3871,0.93,3872,1.689,3873,2.322,3874,4.636,3875,2.857,3876,0.93,3877,1.689,3878,1.689,3879,2.857,3880,2.857,3881,0.93,3882,2.322,3883,0.93,3884,6.876,3885,1.689,3886,0.93,3887,4.364,3888,0.93,3889,2.322,3890,5.79,3891,2.857,3892,1.689,3893,5.098,3894,3.711,3895,0.93,3896,0.93,3897,4.364,3898,0.93,3899,1.689,3900,5.475,3901,0.93,3902,1.689,3903,2.322,3904,0.93,3905,2.322,3906,0.93,3907,0.93,3908,0.93,3909,0.93,3910,2.322,3911,2.322,3912,0.93,3913,0.93,3914,0.93,3915,1.689,3916,0.93,3917,2.322,3918,2.322,3919,3.711,3920,2.322,3921,2.322,3922,0.93,3923,0.93,3924,3.315,3925,3.711,3926,0.93,3927,0.93,3928,0.93,3929,0.93,3930,2.322,3931,0.93,3932,0.93,3933,0.93,3934,0.93,3935,0.93,3936,1.689,3937,0.93,3938,6.654,3939,4.364,3940,0.93,3941,1.689,3942,0.93,3943,0.93,3944,1.689,3945,1.689,3946,0.93,3947,0.93,3948,0.93,3949,1.689,3950,2.322,3951,0.93,3952,1.689,3953,0.93,3954,0.93,3955,0.93,3956,0.93,3957,4.879,3958,4.058,3959,2.857,3960,0.93,3961,3.315,3962,0.93,3963,1.689,3964,0.93,3965,0.93,3966,2.322,3967,0.93,3968,0.93,3969,0.93,3970,2.322,3971,2.322,3972,0.93,3973,0.93,3974,1.689,3975,1.689,3976,1.689,3977,0.93,3978,1.689,3979,0.93,3980,0.93,3981,0.93,3982,0.93,3983,0.93,3984,0.93,3985,2.322,3986,0.93,3987,0.93,3988,5.79,3989,0.93,3990,0.93,3991,0.93,3992,3.315,3993,3.315,3994,0.93,3995,0.93,3996,2.322,3997,0.93,3998,0.93,3999,2.857,4000,0.93,4001,1.689,4002,0.93,4003,0.93,4004,0.93,4005,0.93,4006,0.93,4007,1.689,4008,1.689,4009,0.93,4010,2.322,4011,0.93,4012,0.93,4013,1.689,4014,0.93,4015,0.93,4016,0.93,4017,0.93,4018,1.689,4019,1.689,4020,3.711,4021,0.93,4022,0.93,4023,1.689,4024,2.322,4025,2.322,4026,2.857,4027,2.857,4028,2.322,4029,2.857,4030,1.689,4031,0.93,4032,3.315,4033,3.315,4034,0.93,4035,1.689,4036,1.689,4037,3.315,4038,1.689,4039,2.857,4040,2.857,4041,2.322,4042,5.639,4043,3.315,4044,0.93,4045,0.93,4046,0.93,4047,2.322,4048,1.689,4049,1.689,4050,0.93,4051,0.93,4052,0.93,4053,1.689,4054,0.93,4055,0.93,4056,0.93,4057,2.322,4058,0.93,4059,0.93,4060,2.322,4061,0.93,4062,1.689,4063,0.93,4064,0.93,4065,0.93,4066,1.689,4067,1.689,4068,3.711,4069,6.481,4070,2.322,4071,1.689,4072,1.689,4073,1.689,4074,1.689,4075,2.857,4076,1.689,4077,0.93,4078,0.93,4079,0.93,4080,0.93,4081,3.711,4082,1.689,4083,0.93,4084,0.93,4085,0.93,4086,0.93,4087,1.689,4088,0.93,4089,1.689,4090,0.93,4091,3.315,4092,0.93,4093,0.93,4094,0.93,4095,0.93,4096,0.93,4097,0.93,4098,0.93,4099,0.93,4100,0.93,4101,2.322,4102,3.315,4103,2.857,4104,2.857,4105,1.689,4106,0.93,4107,0.93,4108,0.93,4109,0.93,4110,0.93,4111,1.689,4112,0.93,4113,0.93,4114,2.857,4115,0.93,4116,1.689,4117,0.93,4118,1.689,4119,0.93,4120,0.93,4121,2.322,4122,0.93,4123,0.93,4124,0.93,4125,0.93,4126,0.93,4127,1.689,4128,0.93,4129,0.93,4130,0.93,4131,0.93,4132,2.322,4133,0.93,4134,0.93,4135,0.93,4136,0.93,4137,3.315,4138,0.93,4139,0.93,4140,2.857,4141,0.93,4142,0.93,4143,0.93,4144,0.93,4145,0.93,4146,0.93,4147,0.93,4148,2.322,4149,0.93,4150,0.93,4151,0.93,4152,2.322,4153,0.93,4154,0.93,4155,2.322,4156,0.93,4157,1.689,4158,0.93,4159,0.93,4160,0.93,4161,0.93,4162,0.93,4163,0.93,4164,0.93,4165,0.93,4166,0.93,4167,1.689,4168,0.93,4169,0.93,4170,0.93,4171,1.689,4172,1.689,4173,0.93,4174,0.93,4175,2.322,4176,0.93,4177,2.322,4178,1.689,4179,0.93,4180,1.689,4181,1.689,4182,0.93,4183,2.322,4184,4.058,4185,0.93,4186,1.689,4187,1.689,4188,0.93,4189,1.689,4190,0.93,4191,0.93,4192,0.93,4193,0.93,4194,0.93,4195,1.689,4196,0.93,4197,2.857,4198,0.93,4199,3.315,4200,0.93,4201,0.93,4202,0.93,4203,0.93,4204,0.93,4205,1.689,4206,1.689,4207,1.689,4208,2.322,4209,0.93,4210,1.689,4211,1.689,4212,0.93,4213,2.322,4214,0.93,4215,1.689,4216,0.93,4217,1.689,4218,0.93,4219,1.689,4220,0.93,4221,0.93,4222,1.689,4223,6.654,4224,1.689,4225,0.93,4226,3.315,4227,4.879,4228,2.322,4229,0.93,4230,0.93,4231,0.93,4232,2.857,4233,0.93,4234,0.93,4235,2.322,4236,1.689,4237,0.93,4238,0.93,4239,0.93,4240,0.93,4241,0.93,4242,0.93,4243,0.93,4244,0.93,4245,2.857,4246,1.689,4247,1.689,4248,0.93,4249,0.93,4250,2.322,4251,0.93,4252,1.689,4253,2.322,4254,1.689,4255,0.93,4256,0.93,4257,0.93,4258,0.93,4259,1.689,4260,2.322,4261,0.93,4262,0.93,4263,1.689,4264,0.93,4265,0.93,4266,0.93,4267,0.93,4268,0.93,4269,0.93,4270,2.322,4271,1.689,4272,0.93,4273,0.93,4274,2.857,4275,0.93,4276,2.322,4277,0.93,4278,0.93,4279,1.689,4280,0.93,4281,0.93,4282,0.93,4283,2.322,4284,1.689,4285,0.93,4286,4.058,4287,1.689,4288,2.322,4289,2.857,4290,0.93,4291,0.93,4292,1.689,4293,0.93,4294,2.322,4295,0.93,4296,1.689,4297,0.93,4298,0.93,4299,0.93,4300,0.93,4301,2.322,4302,0.93,4303,1.689,4304,2.322,4305,1.689,4306,0.93,4307,1.689,4308,0.93,4309,0.93,4310,1.689,4311,1.689,4312,0.93,4313,0.93,4314,1.689,4315,0.93,4316,0.93,4317,0.93,4318,0.93,4319,0.93,4320,0.93,4321,0.93,4322,0.93,4323,0.93,4324,0.93,4325,1.689,4326,2.322,4327,0.93,4328,0.93,4329,0.93,4330,0.93,4331,0.93,4332,1.689,4333,0.93,4334,0.93,4335,0.93,4336,0.93,4337,0.93,4338,0.93,4339,0.93,4340,0.93,4341,0.93,4342,0.93,4343,0.93,4344,0.93,4345,0.93,4346,2.857,4347,0.93,4348,1.689,4349,0.93,4350,0.93,4351,0.93,4352,0.93,4353,0.93,4354,0.93,4355,0.93,4356,0.93,4357,0.93,4358,0.93,4359,2.322,4360,0.93,4361,0.817,4362,0.93,4363,0.93,4364,1.689,4365,0.93,4366,0.93,4367,0.93,4368,0.93,4369,0.93,4370,1.689,4371,1.689,4372,2.322,4373,0.93,4374,1.689,4375,0.93,4376,0.93,4377,0.93,4378,0.93,4379,2.322,4380,1.689,4381,0.93,4382,1.689,4383,1.689,4384,1.689,4385,0.93,4386,0.93,4387,0.93,4388,0.93,4389,0.93,4390,0.93,4391,1.689,4392,0.93,4393,0.93,4394,1.689,4395,0.93,4396,2.322,4397,0.93,4398,0.93,4399,0.93,4400,0.93,4401,0.93,4402,0.93,4403,0.93,4404,0.93,4405,0.93,4406,0.93,4407,0.93,4408,0.93,4409,0.93,4410,0.93,4411,1.689,4412,0.93,4413,0.93,4414,0.93,4415,0.93,4416,0.93,4417,0.93,4418,0.93,4419,0.93,4420,0.93,4421,0.93,4422,0.93,4423,0.93,4424,0.93,4425,0.93,4426,0.93,4427,0.93,4428,2.322,4429,1.689,4430,0.93,4431,0.93,4432,0.93,4433,0.93,4434,0.93,4435,1.689,4436,0.93,4437,0.93,4438,1.689,4439,1.689,4440,0.93,4441,0.93,4442,0.93,4443,0.93,4444,0.93,4445,0.93,4446,0.93,4447,0.93,4448,0.93,4449,0.93,4450,0.93,4451,0.93,4452,0.93,4453,0.93,4454,0.93,4455,0.93,4456,0.93,4457,0.93,4458,0.93,4459,0.93,4460,0.93,4461,0.93,4462,0.93,4463,0.93,4464,0.93]],["title/modules.html",[433,2.131]],["body/modules.html",[21,0.009,57,0.007,58,0.009,59,0.007,122,6.907,432,4.423,433,2.192,442,4.137,443,3.085,444,4.137,628,4.423,632,4.137,722,4.423,728,4.137,736,5.115,878,4.423,882,4.137,2812,6.956,2814,4.423,2818,4.137,2962,4.423,2966,4.137,3124,4.423,3128,4.137,3418,4.137,4465,8.714,4466,8.954,4467,8.653]],["title/overview.html",[3697,4.648]],["body/overview.html",[2,1.723,21,0.011,57,0.005,58,0.007,59,0.005,62,1.511,176,2.059,177,1.421,285,1.098,291,2.119,293,2.059,296,2.059,298,2.585,300,2.059,302,2.059,304,2.059,307,2.585,310,2.059,312,2.059,314,2.059,316,2.585,319,2.059,321,2.059,323,2.585,326,2.585,328,2.059,330,1.263,331,2.511,333,2.059,335,2.059,372,2.681,431,1.039,432,6.281,433,1.421,434,1.922,435,2.083,436,1.999,437,2.083,438,1.421,439,3.41,440,3.41,441,3.41,442,4.37,443,4.555,444,5.723,445,2.934,446,2.083,447,1.851,498,1.785,628,5.819,629,3.41,630,3.41,631,3.41,632,4.37,722,6.31,723,3.41,724,3.41,725,3.41,726,3.41,727,3.41,728,4.37,729,4.37,730,4.119,731,4.37,732,4.37,835,3.099,878,5.819,879,3.41,880,3.41,881,3.41,882,4.37,889,2.083,1096,3.209,1604,2.681,2437,3.099,2814,5.819,2815,3.41,2816,3.41,2817,3.41,2818,4.37,2902,5.33,2903,3.099,2962,5.995,2963,3.41,2964,3.41,2965,3.41,2966,4.37,2976,3.41,2977,3.41,2978,3.41,2979,5.33,3124,5.995,3125,3.41,3126,3.41,3127,3.41,3128,4.37,3414,3.41,3415,3.41,3416,3.41,3417,3.41,3418,4.37,3697,3.099,4361,3.41,4468,3.882,4469,3.882,4470,3.882]],["title/routes.html",[498,2.677]],["body/routes.html",[21,0.01,57,0.008,58,0.01,59,0.008,498,3.218]],["title/miscellaneous/typealiases.html",[3588,2.304,4471,5.118]],["body/miscellaneous/typealiases.html",[7,0.546,18,0.628,21,0.009,23,4.72,40,4.216,57,0.008,58,0.009,59,0.008,2566,4.011,2749,5.113,3588,4.448,4472,6.834,4473,6.003]],["title/miscellaneous/variables.html",[3588,2.304,3666,4.086]],["body/miscellaneous/variables.html",[1,0.705,6,0.962,7,0.118,8,0.262,11,2.525,13,1.021,14,0.911,15,1.021,16,0.828,17,3.582,18,0.578,19,2.418,21,0.011,22,0.374,23,1.021,24,1.021,25,1.021,26,1.021,27,0.962,28,0.962,29,2.349,30,1.021,32,0.911,33,1.856,34,1.021,35,1.021,36,1.021,37,0.732,38,1.021,39,0.911,42,1.131,45,2.045,47,0.793,49,1.571,50,0.962,51,1.491,52,2.6,53,1.571,54,1.571,55,1.021,57,0.002,58,0.003,59,0.002,63,1.18,68,1.496,73,1.571,89,1.881,91,0.806,93,0.755,94,2.034,95,1.803,114,1.554,123,1.87,135,2.286,141,3.039,144,2.265,146,2.034,147,3.402,148,2.034,149,1.298,150,2.034,151,2.034,152,1.093,153,1.881,171,0.867,181,0.495,228,2.359,282,2.186,320,0.851,327,0.385,329,0.495,344,1.76,378,0.867,438,0.541,460,0.793,495,1.021,505,2.644,507,2.892,508,2.761,509,2.217,511,4.07,535,4.452,551,1.971,554,2.186,622,1.428,668,0.962,742,1.18,745,1.881,757,2.95,762,1.091,763,1.18,764,1.18,800,1.215,817,1.021,831,2.48,832,1.571,834,0.911,844,0.732,857,0.911,869,1.091,1013,2.48,1096,0.867,1127,2.034,1179,2.349,1202,1.881,1203,2.48,1205,2.48,1237,1.091,1241,1.881,1247,1.021,1263,1.091,1289,2.933,1366,1.021,1417,2.48,1574,1.881,1575,1.18,1576,4.835,1591,3.958,1592,1.298,1593,2.034,1594,1.298,1595,2.034,1596,1.18,1597,3.188,1598,1.18,1599,2.48,1600,1.18,1601,1.18,1602,2.034,1603,1.18,1604,1.021,1605,1.18,1606,1.18,1607,1.18,1608,1.091,1609,1.18,1610,1.021,1611,1.18,1612,2.238,1613,3.508,1614,1.298,1615,1.298,1616,1.298,1617,1.298,1618,1.298,1619,1.298,1620,1.298,1621,1.298,1622,1.298,1623,1.298,1624,1.298,1625,1.298,1626,1.298,1627,1.298,1628,1.298,1629,2.238,1630,1.298,1631,1.298,1632,2.238,1633,1.298,1634,1.298,1635,1.298,1636,2.95,1637,2.95,1638,1.298,1639,2.238,1640,1.298,1641,2.238,1642,2.238,1643,2.238,1644,1.298,1645,1.298,1646,1.298,1647,1.298,1648,1.298,1649,1.298,1650,1.298,1651,1.298,1652,1.298,1653,1.298,1654,1.298,1655,1.298,1656,1.298,1657,1.298,1658,1.298,1659,1.298,1660,1.298,1661,1.298,1662,1.298,1663,1.298,1664,1.298,1665,1.298,1666,1.298,1667,1.298,1668,1.298,1669,1.298,1670,1.298,1671,1.298,1672,1.298,1673,1.298,1674,1.298,1675,1.298,1676,1.298,1677,2.238,1678,1.298,1679,1.298,1680,1.298,1681,1.298,1682,1.298,1683,1.298,1684,1.298,1685,1.298,1686,1.298,1687,1.298,1688,1.298,1689,1.298,1690,2.238,1691,1.298,1692,1.298,1693,1.298,1694,2.238,1695,1.298,1696,1.298,1697,1.298,1698,1.298,1699,1.298,1700,1.298,1701,1.298,1702,1.298,1703,1.298,1704,1.298,1705,1.298,1706,1.298,1707,1.298,1708,1.298,1709,1.298,1710,1.298,1711,1.298,1712,1.298,1713,1.298,1714,1.298,1715,1.298,1716,1.298,1717,1.298,1718,1.298,1719,1.298,1720,1.298,1721,2.95,1722,1.298,1723,1.298,1724,1.298,1725,1.298,1726,1.298,1727,1.298,1728,1.298,1729,1.298,1730,1.298,1731,1.298,1732,1.298,1733,1.298,1734,1.298,1735,2.238,1736,1.298,1737,1.298,1738,1.298,1739,1.298,1740,1.298,1741,1.298,1742,1.298,1743,2.238,1744,1.298,1745,1.298,1746,1.298,1747,1.298,1748,1.298,1749,1.18,1750,1.298,1751,1.298,1752,1.298,1753,1.298,1754,0.911,1755,1.298,1756,1.298,1757,1.298,1758,1.298,1759,1.298,1760,1.298,1761,1.298,1762,2.238,1763,1.298,1764,1.298,1765,2.238,1766,1.298,1767,1.298,1768,1.298,1769,1.298,1770,1.298,1771,1.298,1772,1.298,1773,1.298,1774,1.298,1775,1.298,1776,1.298,1777,1.298,1778,1.298,1779,1.298,1780,1.298,1781,1.298,1782,2.95,1783,1.298,1784,1.298,1785,1.298,1786,1.298,1787,1.298,1788,1.298,1789,1.298,1790,1.298,1791,1.298,1792,1.298,1793,1.298,1794,1.298,1795,1.298,1796,1.298,1797,1.298,1798,1.298,1799,1.298,1800,1.298,1801,2.238,1802,1.298,1803,1.298,1804,1.298,1805,1.298,1806,1.298,1807,1.298,1808,1.298,1809,1.298,1810,1.298,1811,1.298,1812,1.298,1813,1.298,1814,1.298,1815,1.298,1816,1.298,1817,1.298,1818,1.298,1819,2.238,1820,2.95,1821,1.298,1822,1.298,1823,1.298,1824,1.298,1825,2.95,1826,2.95,1827,1.298,1828,2.238,1829,1.298,1830,1.298,1831,1.298,1832,1.298,1833,1.298,1834,1.298,1835,1.298,1836,1.298,1837,1.298,1838,1.298,1839,1.298,1840,1.298,1841,1.298,1842,1.298,1843,2.95,1844,1.298,1845,1.298,1846,1.298,1847,1.298,1848,1.298,1849,1.298,1850,1.298,1851,1.298,1852,1.298,1853,1.298,1854,1.298,1855,1.298,1856,1.298,1857,1.298,1858,1.298,1859,1.298,1860,1.298,1861,1.298,1862,2.034,1863,2.034,1864,2.238,1865,2.238,1866,2.238,1867,2.238,1868,1.298,1869,1.298,1870,1.298,1871,1.298,1872,1.18,1873,1.298,1874,1.298,1875,1.298,1876,1.298,1877,1.298,1878,1.298,1879,1.298,1880,1.298,1881,1.298,1882,1.298,1883,1.298,1884,1.298,1885,1.298,1886,1.298,1887,1.298,1888,1.298,1889,1.298,1890,1.298,1891,1.298,1892,1.18,1893,1.298,1894,1.298,1895,1.298,1896,1.298,1897,1.298,1898,1.298,1899,1.298,1900,1.298,1901,1.298,1902,1.298,1903,2.95,1904,1.298,1905,1.298,1906,1.298,1907,1.298,1908,1.298,1909,1.298,1910,2.238,1911,3.508,1912,1.298,1913,1.298,1914,1.298,1915,1.298,1916,1.298,1917,1.298,1918,1.298,1919,1.298,1920,1.298,1921,1.298,1922,1.298,1923,1.298,1924,1.298,1925,1.298,1926,1.298,1927,1.298,1928,1.298,1929,1.298,1930,1.298,1931,1.298,1932,1.298,1933,1.298,1934,1.298,1935,2.238,1936,1.298,1937,1.298,1938,1.298,1939,1.091,1940,1.298,1941,1.298,1942,1.298,1943,1.298,1944,1.298,1945,1.298,1946,1.298,1947,1.298,1948,1.298,1949,1.298,1950,1.298,1951,1.298,1952,1.298,1953,1.298,1954,1.298,1955,1.298,1956,1.298,1957,1.298,1958,1.298,1959,1.298,1960,1.298,1961,1.298,1962,1.298,1963,1.298,1964,1.298,1965,1.298,1966,1.298,1967,1.298,1968,1.298,1969,1.298,1970,2.238,1971,1.298,1972,1.298,1973,1.298,1974,1.298,1975,1.298,1976,1.298,1977,1.298,1978,1.298,1979,2.238,1980,1.298,1981,1.18,1982,1.298,1983,1.298,1984,1.298,1985,1.298,1986,1.298,1987,1.298,1988,1.298,1989,1.298,1990,1.298,1991,2.238,1992,1.298,1993,1.298,1994,1.298,1995,1.298,1996,1.298,1997,1.298,1998,1.298,1999,1.298,2000,1.298,2001,1.298,2002,1.298,2003,1.298,2004,1.298,2005,1.298,2006,1.298,2007,1.298,2008,1.298,2009,2.238,2010,2.034,2011,1.298,2012,1.298,2013,1.298,2014,1.298,2015,1.298,2016,1.298,2017,1.298,2018,1.298,2019,1.298,2020,1.298,2021,1.298,2022,1.298,2023,1.298,2024,1.298,2025,1.298,2026,1.298,2027,1.298,2028,1.298,2029,1.298,2030,1.18,2031,1.298,2032,1.298,2033,1.298,2034,1.298,2035,1.298,2036,1.298,2037,1.298,2038,1.298,2039,1.298,2040,1.298,2041,1.298,2042,1.298,2043,1.298,2044,1.298,2045,1.298,2046,1.298,2047,1.298,2048,1.298,2049,1.18,2050,1.298,2051,1.298,2052,1.298,2053,1.298,2054,1.298,2055,1.298,2056,1.298,2057,1.298,2058,1.298,2059,1.298,2060,1.298,2061,1.298,2062,1.298,2063,1.298,2064,1.298,2065,1.298,2066,1.298,2067,1.298,2068,2.238,2069,1.298,2070,1.298,2071,1.298,2072,1.298,2073,1.298,2074,1.298,2075,1.298,2076,1.18,2077,1.298,2078,1.18,2079,1.298,2080,1.298,2081,1.298,2082,1.298,2083,1.298,2084,1.18,2085,1.298,2086,1.298,2087,1.298,2088,1.298,2089,1.298,2090,1.298,2091,1.298,2092,1.298,2093,1.18,2094,1.298,2095,1.298,2096,1.298,2097,1.298,2098,1.298,2099,1.298,2100,1.298,2101,1.18,2102,1.298,2103,1.18,2104,1.298,2105,1.298,2106,2.034,2107,1.298,2108,1.298,2109,1.298,2110,1.298,2111,1.298,2112,1.298,2113,1.298,2114,1.298,2115,1.298,2116,1.298,2117,1.298,2118,1.298,2119,1.298,2120,1.298,2121,1.298,2122,1.298,2123,1.298,2124,1.298,2125,1.298,2126,1.298,2127,1.298,2128,1.298,2129,1.298,2130,1.298,2131,1.298,2132,1.298,2133,1.298,2134,1.298,2135,1.298,2136,1.298,2137,1.298,2138,1.298,2139,1.298,2140,1.298,2141,1.298,2142,1.298,2143,1.298,2144,1.298,2145,1.298,2146,1.298,2147,1.298,2148,1.298,2149,1.298,2150,1.298,2151,1.298,2152,1.298,2153,1.298,2154,2.238,2155,1.298,2156,1.298,2157,1.298,2158,1.298,2159,1.298,2160,1.298,2161,1.298,2162,1.298,2163,1.298,2164,1.298,2165,1.298,2166,1.298,2167,1.298,2168,1.298,2169,1.298,2170,1.298,2171,1.298,2172,2.95,2173,1.298,2174,1.298,2175,1.298,2176,1.298,2177,1.298,2178,1.298,2179,1.298,2180,1.298,2181,1.298,2182,1.298,2183,1.298,2184,1.298,2185,1.298,2186,1.298,2187,1.298,2188,1.298,2189,1.298,2190,1.298,2191,1.298,2192,1.298,2193,1.298,2194,1.298,2195,1.298,2196,1.298,2197,1.298,2198,1.298,2199,1.298,2200,1.298,2201,1.298,2202,1.298,2203,1.298,2204,1.298,2205,1.298,2206,1.298,2207,1.298,2208,1.298,2209,1.298,2210,1.298,2211,1.298,2212,1.298,2213,1.298,2214,1.298,2215,1.298,2216,1.298,2217,1.298,2218,1.298,2219,1.298,2220,1.298,2221,1.298,2222,1.298,2223,1.298,2224,1.298,2225,1.298,2226,1.298,2227,1.298,2228,1.298,2229,1.298,2230,1.298,2231,1.298,2232,1.298,2233,1.298,2234,1.298,2235,1.298,2236,1.298,2237,1.298,2238,1.298,2239,1.298,2240,1.298,2241,1.298,2242,1.298,2243,1.298,2244,1.298,2245,1.298,2246,1.298,2247,1.298,2248,1.298,2249,1.298,2250,1.298,2251,1.298,2252,1.298,2253,1.298,2254,1.298,2255,1.298,2256,1.298,2257,1.298,2258,1.298,2259,1.298,2260,1.298,2261,2.238,2262,1.298,2263,2.034,2264,1.298,2265,1.298,2266,1.298,2267,1.298,2268,1.298,2269,1.298,2270,1.298,2271,1.298,2272,1.298,2273,1.298,2274,1.298,2275,1.298,2276,1.298,2277,1.298,2278,1.298,2279,1.298,2280,1.18,2281,1.298,2282,1.298,2283,1.298,2284,1.298,2285,1.298,2286,1.298,2287,1.298,2288,1.298,2289,1.298,2290,1.298,2291,1.298,2292,2.238,2293,2.238,2294,1.298,2295,1.298,2296,1.298,2297,1.298,2298,1.298,2299,1.298,2300,2.034,2301,1.298,2302,1.298,2303,1.298,2304,1.298,2305,1.298,2306,1.298,2307,1.298,2308,1.298,2309,1.298,2310,1.298,2311,1.298,2312,1.298,2313,1.298,2314,1.298,2315,1.298,2316,1.298,2317,1.298,2318,1.298,2319,1.298,2320,1.298,2321,1.298,2322,1.18,2323,1.18,2324,1.298,2325,1.298,2326,1.298,2327,2.238,2328,1.298,2329,1.298,2330,1.298,2331,1.298,2332,1.298,2333,1.298,2334,1.298,2335,2.238,2336,1.298,2337,1.298,2338,1.298,2339,1.298,2340,1.298,2341,1.298,2342,1.298,2343,1.298,2344,1.298,2345,1.298,2346,1.298,2347,1.298,2348,1.298,2349,1.298,2350,1.298,2351,1.298,2352,1.298,2353,1.298,2354,1.298,2355,1.298,2356,1.298,2357,1.298,2358,1.298,2359,1.298,2360,1.298,2361,1.298,2362,1.18,2363,1.298,2364,1.298,2365,1.298,2366,1.298,2367,1.298,2368,2.034,2369,1.298,2370,1.298,2371,1.298,2372,1.298,2373,1.298,2374,1.298,2375,1.298,2376,1.18,2377,1.298,2378,1.298,2379,1.298,2380,1.298,2381,1.298,2382,1.298,2383,1.298,2384,1.298,2385,1.298,2386,1.298,2387,1.298,2388,1.298,2389,1.298,2390,1.298,2391,1.298,2392,1.298,2393,1.298,2394,1.298,2395,1.298,2396,1.298,2397,1.298,2398,1.298,2399,1.298,2400,1.298,2401,1.298,2402,1.298,2403,1.298,2404,1.298,2405,1.298,2406,1.298,2407,1.298,2408,1.298,2409,1.298,2410,1.298,2411,1.298,2412,1.298,2413,1.298,2414,1.298,2415,1.298,2416,1.298,2417,1.298,2418,1.298,2419,1.298,2420,1.298,2421,1.298,2422,1.298,2423,1.298,2424,1.298,2425,1.298,2426,1.298,2427,1.18,2428,1.18,2429,1.971,2430,1.298,2431,1.091,2432,1.298,2433,3.933,2434,3.402,2435,1.298,2436,3.933,2437,3.933,2438,3.933,2439,1.298,2440,2.238,2441,3.327,2442,5.321,2443,3.597,2444,3.327,2445,3.958,2446,2.238,2447,1.298,2448,2.238,2449,1.298,2450,1.298,2451,1.298,2452,2.238,2453,1.298,2454,1.298,2455,1.298,2456,2.238,2457,1.298,2458,1.298,2459,1.298,2460,2.238,2461,2.034,2462,1.298,2463,1.298,2464,1.298,2465,1.298,2566,1.496,2567,1.881,2639,1.496,2640,1.881,2641,1.18,2749,1.658,2776,1.091,3040,1.18,3041,2.681,3060,1.298,3227,1.18,3279,2.238,3280,2.034,3502,2.034,3506,1.18,3509,2.238,3529,1.298,3535,1.298,3536,1.298,3537,1.298,3588,0.962,3593,1.298,3631,1.18,3666,1.18,3677,2.95,4473,2.238,4474,2.548,4475,2.548,4476,5.834,4477,1.478,4478,1.478,4479,1.478,4480,1.478,4481,1.478,4482,1.478,4483,3.359,4484,3.359,4485,3.359,4486,3.359,4487,3.359,4488,3.359,4489,3.359,4490,3.359,4491,3.359,4492,2.548,4493,2.548,4494,3.359,4495,3.359,4496,3.359,4497,2.548,4498,2.548,4499,3.359,4500,3.359,4501,3.359,4502,1.478,4503,3.359,4504,3.359,4505,1.478,4506,1.478,4507,1.478,4508,1.478,4509,1.478,4510,1.478,4511,1.478,4512,1.478]]],"invertedIndex":[["",{"_index":21,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"classes/W3.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"routes.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}}}],["0",{"_index":51,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signer.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["0.0",{"_index":602,"title":{},"body":{"components/AdminComponent.html":{}}}],["0.0.7",{"_index":3557,"title":{},"body":{"dependencies.html":{}}}],["0.1.0",{"_index":3572,"title":{},"body":{"dependencies.html":{}}}],["0.1.4",{"_index":3556,"title":{},"body":{"dependencies.html":{}}}],["0.10.2",{"_index":3587,"title":{},"body":{"dependencies.html":{}}}],["0.2",{"_index":603,"title":{},"body":{"components/AdminComponent.html":{}}}],["0.2.4",{"_index":3552,"title":{},"body":{"dependencies.html":{}}}],["0/1",{"_index":3518,"title":{},"body":{"coverage.html":{}}}],["0/10",{"_index":3527,"title":{},"body":{"coverage.html":{}}}],["0/11",{"_index":3515,"title":{},"body":{"coverage.html":{}}}],["0/12",{"_index":3534,"title":{},"body":{"coverage.html":{}}}],["0/14",{"_index":3523,"title":{},"body":{"coverage.html":{}}}],["0/15",{"_index":3533,"title":{},"body":{"coverage.html":{}}}],["0/16",{"_index":3528,"title":{},"body":{"coverage.html":{}}}],["0/17",{"_index":3532,"title":{},"body":{"coverage.html":{}}}],["0/18",{"_index":3526,"title":{},"body":{"coverage.html":{}}}],["0/2",{"_index":3524,"title":{},"body":{"coverage.html":{}}}],["0/26",{"_index":3522,"title":{},"body":{"coverage.html":{}}}],["0/3",{"_index":3514,"title":{},"body":{"coverage.html":{}}}],["0/33",{"_index":3530,"title":{},"body":{"coverage.html":{}}}],["0/4",{"_index":3516,"title":{},"body":{"coverage.html":{}}}],["0/43",{"_index":3531,"title":{},"body":{"coverage.html":{}}}],["0/5",{"_index":3517,"title":{},"body":{"coverage.html":{}}}],["0/6",{"_index":3519,"title":{},"body":{"coverage.html":{}}}],["0/7",{"_index":3525,"title":{},"body":{"coverage.html":{}}}],["0/8",{"_index":3521,"title":{},"body":{"coverage.html":{}}}],["0/9",{"_index":3520,"title":{},"body":{"coverage.html":{}}}],["04/02/2020",{"_index":3448,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["05/28/2020",{"_index":3459,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["08/16/2020",{"_index":3441,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["0px",{"_index":591,"title":{},"body":{"components/AdminComponent.html":{}}}],["0x3da99aad2d9ca01d131efc3b17444b832b31ff4a",{"_index":2445,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["0x4a6fa6bc3bfe4c9661bc692d9798425350c9e3d4",{"_index":2459,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["0x51d3c8e2e421604e2b644117a362d589c5434739",{"_index":3478,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["0x6ca3cb14aa6f761712e1c18646afba4d5ae249e8",{"_index":4509,"title":{},"body":{"miscellaneous/variables.html":{}}}],["0x8fa4101ef19d0a078239d035659e92b278bd083c",{"_index":2455,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["0x9ced86089f7abb5a97b40eb0e7521e7aa308d354",{"_index":2447,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["0x9d7c284907acbd4a0ce2ddd0aa69147a921a573d",{"_index":3479,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["0xa686005ce37dce7738436256982c3903f2e4ea8e",{"_index":2433,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"miscellaneous/variables.html":{}}}],["0xaf1b487491073c2d49136db3fd87e293302cf839",{"_index":4505,"title":{},"body":{"miscellaneous/variables.html":{}}}],["0xc0ffee254729296a45a3885639ac7e10f9d54979",{"_index":161,"title":{},"body":{"classes/AccountIndex.html":{}}}],["0xc63cfa91a3bff41ce31ff436f67d3acbc977db95",{"_index":2451,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["0xc80d6aff8194114c52aecd84c9f15fd5c8abb187",{"_index":2439,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["0xc86ff893ac40d3950b4d5f94a9b837258b0a9865",{"_index":3440,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["0xea6225212005e86a4490018ded4bf37f3e772161",{"_index":4502,"title":{},"body":{"miscellaneous/variables.html":{}}}],["0xeb3907ecad74a0013c259d5874ae7f22dcbcc95c",{"_index":4504,"title":{},"body":{"miscellaneous/variables.html":{}}}],["1",{"_index":171,"title":{},"body":{"classes/AccountIndex.html":{},"components/AdminComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["1.0.0",{"_index":3561,"title":{},"body":{"dependencies.html":{}}}],["1.10.22",{"_index":3564,"title":{},"body":{"dependencies.html":{}}}],["1.16.1",{"_index":3577,"title":{},"body":{"dependencies.html":{}}}],["1.3.0",{"_index":3585,"title":{},"body":{"dependencies.html":{}}}],["1/1",{"_index":3492,"title":{},"body":{"coverage.html":{}}}],["10",{"_index":372,"title":{},"body":{"components/AccountsComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"components/TransactionsComponent.html":{},"license.html":{},"overview.html":{}}}],["10.2.0",{"_index":3542,"title":{},"body":{"dependencies.html":{},"index.html":{}}}],["10.2.7",{"_index":3544,"title":{},"body":{"dependencies.html":{}}}],["10/10/2020",{"_index":3464,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["100",{"_index":378,"title":{},"body":{"components/AccountsComponent.html":{},"components/AppComponent.html":{},"injectables/BlockSyncService.html":{},"interceptors/MockBackendInterceptor.html":{},"components/TransactionsComponent.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["100)).subscribe(async",{"_index":271,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["1000",{"_index":1603,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["1000000",{"_index":2442,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["1000000000000000001014",{"_index":2448,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["1000000001000000000000000000",{"_index":2435,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["100990",{"_index":2460,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["11",{"_index":4001,"title":{},"body":{"license.html":{}}}],["11/16/2020",{"_index":3454,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["12987",{"_index":3442,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["13",{"_index":4361,"title":{},"body":{"license.html":{},"overview.html":{}}}],["15",{"_index":4186,"title":{},"body":{"license.html":{}}}],["151.002995",{"_index":3482,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["1595537208",{"_index":3476,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["16",{"_index":4187,"title":{},"body":{"license.html":{}}}],["17",{"_index":4468,"title":{},"body":{"overview.html":{}}}],["18",{"_index":2437,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["1996",{"_index":4006,"title":{},"body":{"license.html":{}}}],["2",{"_index":1096,"title":{},"body":{"injectables/BlockSyncService.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/TokenRegistry.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{},"license.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["2.0.0",{"_index":3581,"title":{},"body":{"dependencies.html":{}}}],["2.1.4",{"_index":3579,"title":{},"body":{"dependencies.html":{}}}],["2.10.0",{"_index":3584,"title":{},"body":{"dependencies.html":{}}}],["2.4.2",{"_index":3573,"title":{},"body":{"dependencies.html":{}}}],["2.5.4",{"_index":3549,"title":{},"body":{"dependencies.html":{}}}],["2.9.4",{"_index":3555,"title":{},"body":{"dependencies.html":{}}}],["2/2",{"_index":3500,"title":{},"body":{"coverage.html":{}}}],["20",{"_index":376,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionsComponent.html":{},"license.html":{}}}],["200",{"_index":817,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["2007",{"_index":3704,"title":{},"body":{"license.html":{}}}],["2020",{"_index":1393,"title":{},"body":{"components/FooterComponent.html":{}}}],["2021",{"_index":4435,"title":{},"body":{"license.html":{}}}],["21",{"_index":4469,"title":{},"body":{"overview.html":{}}}],["22.430670",{"_index":3481,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["25412341234",{"_index":3447,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["25412345678",{"_index":3439,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["25462518374",{"_index":3463,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["25498765432",{"_index":3453,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["25498769876",{"_index":3458,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["28",{"_index":4342,"title":{},"body":{"license.html":{}}}],["29",{"_index":3702,"title":{},"body":{"license.html":{}}}],["3",{"_index":668,"title":{},"body":{"components/AppComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["3.0",{"_index":55,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["3.5.1",{"_index":3568,"title":{},"body":{"dependencies.html":{}}}],["3/3",{"_index":3494,"title":{},"body":{"coverage.html":{}}}],["3/5",{"_index":3539,"title":{},"body":{"coverage.html":{}}}],["30",{"_index":4241,"title":{},"body":{"license.html":{}}}],["3000",{"_index":3197,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["300px",{"_index":1339,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["32",{"_index":3347,"title":{},"body":{"injectables/TransactionService.html":{}}}],["39;0xc0ffee254729296a45a3885639ac7e10f9d54979'",{"_index":108,"title":{},"body":{"classes/AccountIndex.html":{}}}],["39;2'",{"_index":3057,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["39;hello",{"_index":3603,"title":{},"body":{"miscellaneous/functions.html":{}}}],["39;sarafu'",{"_index":3051,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["4",{"_index":1604,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"license.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["4.10.10",{"_index":3575,"title":{},"body":{"dependencies.html":{}}}],["4.2.1",{"_index":3574,"title":{},"body":{"dependencies.html":{}}}],["4.5.3",{"_index":3553,"title":{},"body":{"dependencies.html":{}}}],["400",{"_index":2558,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["401",{"_index":966,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/ErrorInterceptor.html":{}}}],["401/403",{"_index":815,"title":{},"body":{"components/AuthComponent.html":{}}}],["403",{"_index":1009,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/ErrorInterceptor.html":{}}}],["450",{"_index":3455,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["5",{"_index":1608,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["5.0.31",{"_index":3566,"title":{},"body":{"dependencies.html":{}}}],["50",{"_index":377,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionsComponent.html":{}}}],["51",{"_index":4470,"title":{},"body":{"overview.html":{}}}],["56",{"_index":1748,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["5621",{"_index":3460,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["56281",{"_index":3449,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["6",{"_index":1610,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"pipes/TokenRatioPipe.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["6.6.0",{"_index":3578,"title":{},"body":{"dependencies.html":{}}}],["6/6",{"_index":3503,"title":{},"body":{"coverage.html":{}}}],["60",{"_index":3538,"title":{},"body":{"coverage.html":{},"license.html":{}}}],["6b",{"_index":4088,"title":{},"body":{"license.html":{}}}],["6d",{"_index":4109,"title":{},"body":{"license.html":{}}}],["6rem",{"_index":627,"title":{},"body":{"components/AdminComponent.html":{}}}],["7",{"_index":4030,"title":{},"body":{"license.html":{}}}],["768px",{"_index":666,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["8",{"_index":3321,"title":{},"body":{"injectables/TransactionService.html":{}}}],["8.2.1",{"_index":3570,"title":{},"body":{"dependencies.html":{}}}],["8/8",{"_index":3493,"title":{},"body":{"coverage.html":{}}}],["8000000",{"_index":3335,"title":{},"body":{"injectables/TransactionService.html":{}}}],["817",{"_index":3465,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["8996",{"_index":4484,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9.0.2",{"_index":3550,"title":{},"body":{"dependencies.html":{}}}],["9/9",{"_index":3490,"title":{},"body":{"coverage.html":{}}}],["99000",{"_index":2452,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["9981",{"_index":2456,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["99999999999999998976",{"_index":2440,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["_eth",{"_index":3116,"title":{},"body":{"components/TokensComponent.html":{}}}],["_key",{"_index":2654,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["_key.err",{"_index":2656,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["_models",{"_index":586,"title":{},"body":{"components/AdminComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{}}}],["abi",{"_index":147,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"injectables/TransactionService.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["abicoder",{"_index":3322,"title":{},"body":{"injectables/TransactionService.html":{}}}],["abicoder.encode(['address",{"_index":3324,"title":{},"body":{"injectables/TransactionService.html":{}}}],["ability",{"_index":4154,"title":{},"body":{"license.html":{}}}],["above",{"_index":2512,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["absence",{"_index":4031,"title":{},"body":{"license.html":{}}}],["absolute",{"_index":4417,"title":{},"body":{"license.html":{}}}],["absolutely",{"_index":4447,"title":{},"body":{"license.html":{}}}],["abstractcontrol",{"_index":1283,"title":{},"body":{"classes/CustomValidator.html":{}}}],["abuse",{"_index":3803,"title":{},"body":{"license.html":{}}}],["academy",{"_index":1897,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["accept",{"_index":4246,"title":{},"body":{"license.html":{}}}],["acceptable",{"_index":854,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["acceptance",{"_index":4245,"title":{},"body":{"license.html":{}}}],["accepted",{"_index":2881,"title":{},"body":{"guards/RoleGuard.html":{}}}],["acces",{"_index":2340,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["access",{"_index":839,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["accessible",{"_index":4313,"title":{},"body":{"license.html":{}}}],["accessors",{"_index":211,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["accompanied",{"_index":4070,"title":{},"body":{"license.html":{}}}],["accompanies",{"_index":4421,"title":{},"body":{"license.html":{}}}],["accord",{"_index":4029,"title":{},"body":{"license.html":{}}}],["according",{"_index":1434,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"license.html":{}}}],["accordingly",{"_index":1362,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["account",{"_index":91,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenRegistry.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"miscellaneous/variables.html":{}}}],["account'},{'name",{"_index":303,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["account.component",{"_index":464,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{}}}],["account.component.html",{"_index":1201,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.scss",{"_index":1200,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts",{"_index":1199,"title":{},"body":{"components/CreateAccountComponent.html":{},"coverage.html":{}}}],["account.component.ts:15",{"_index":1214,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:16",{"_index":1215,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:17",{"_index":1216,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:18",{"_index":1213,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:19",{"_index":1212,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:20",{"_index":1211,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:21",{"_index":1208,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:29",{"_index":1209,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:48",{"_index":1218,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:50",{"_index":1210,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.type",{"_index":418,"title":{},"body":{"components/AccountsComponent.html":{}}}],["account/create",{"_index":463,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"components/CreateAccountComponent.html":{},"coverage.html":{}}}],["accountant",{"_index":1983,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["accountdetails",{"_index":1,"title":{"interfaces/AccountDetails.html":{}},"body":{"interfaces/AccountDetails.html":{},"components/AccountsComponent.html":{},"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["accountdetailscomponent",{"_index":291,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["accountindex",{"_index":61,"title":{"classes/AccountIndex.html":{}},"body":{"classes/AccountIndex.html":{},"coverage.html":{}}}],["accountinfo",{"_index":3309,"title":{},"body":{"injectables/TransactionService.html":{}}}],["accountinfo.vcard",{"_index":3311,"title":{},"body":{"injectables/TransactionService.html":{}}}],["accounts",{"_index":67,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{},"modules/PagesRoutingModule.html":{},"components/SidebarComponent.html":{}}}],["accounts'},{'name",{"_index":294,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["accounts.component.html",{"_index":342,"title":{},"body":{"components/AccountsComponent.html":{}}}],["accounts.component.scss",{"_index":341,"title":{},"body":{"components/AccountsComponent.html":{}}}],["accounts.push(account",{"_index":173,"title":{},"body":{"classes/AccountIndex.html":{}}}],["accountscomponent",{"_index":293,"title":{"components/AccountsComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["accountsearchcomponent",{"_index":176,"title":{"components/AccountSearchComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["accountsmodule",{"_index":432,"title":{"modules/AccountsModule.html":{}},"body":{"modules/AccountsModule.html":{},"modules.html":{},"overview.html":{}}}],["accountsroutingmodule",{"_index":442,"title":{"modules/AccountsRoutingModule.html":{}},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["accountstype",{"_index":343,"title":{},"body":{"components/AccountsComponent.html":{}}}],["accounttype",{"_index":421,"title":{},"body":{"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{}}}],["accounttypes",{"_index":344,"title":{},"body":{"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["achieve",{"_index":4427,"title":{},"body":{"license.html":{}}}],["acknowledges",{"_index":3968,"title":{},"body":{"license.html":{}}}],["acquired",{"_index":4292,"title":{},"body":{"license.html":{}}}],["action",{"_index":505,"title":{"interfaces/Action.html":{}},"body":{"interfaces/Action.html":{},"components/AdminComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["action.action",{"_index":619,"title":{},"body":{"components/AdminComponent.html":{}}}],["action.approval",{"_index":624,"title":{},"body":{"components/AdminComponent.html":{}}}],["action.id",{"_index":2516,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["action.role",{"_index":618,"title":{},"body":{"components/AdminComponent.html":{}}}],["action.user",{"_index":617,"title":{},"body":{"components/AdminComponent.html":{}}}],["actions",{"_index":554,"title":{},"body":{"components/AdminComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["actions.find(action",{"_index":2515,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["activatedroute",{"_index":3013,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["activatedroutesnapshot",{"_index":851,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["activatedroutestub",{"_index":513,"title":{"classes/ActivatedRouteStub.html":{}},"body":{"classes/ActivatedRouteStub.html":{},"coverage.html":{}}}],["activateroute",{"_index":517,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["active",{"_index":868,"title":{},"body":{"guards/AuthGuard.html":{}}}],["activities",{"_index":3882,"title":{},"body":{"license.html":{}}}],["activity",{"_index":4338,"title":{},"body":{"license.html":{}}}],["actual",{"_index":4318,"title":{},"body":{"license.html":{}}}],["actual_component",{"_index":339,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["actually",{"_index":4131,"title":{},"body":{"license.html":{}}}],["adapt",{"_index":3855,"title":{},"body":{"license.html":{}}}],["add",{"_index":525,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"components/AuthComponent.html":{},"license.html":{}}}],["add0x",{"_index":3272,"title":{},"body":{"injectables/TransactionService.html":{}}}],["add0x(tohex(tx.serializerlp",{"_index":3352,"title":{},"body":{"injectables/TransactionService.html":{}}}],["added",{"_index":4028,"title":{},"body":{"license.html":{}}}],["additional",{"_index":4042,"title":{},"body":{"license.html":{}}}],["address",{"_index":95,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["addressed",{"_index":3852,"title":{},"body":{"license.html":{}}}],["addresses",{"_index":137,"title":{},"body":{"classes/AccountIndex.html":{}}}],["addressof",{"_index":3042,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["addressof('sarafu'",{"_index":3052,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["addressof('sarafu",{"_index":3061,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["addressof(identifier",{"_index":3047,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["addressreturned",{"_index":1118,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["addresssearchform",{"_index":197,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["addresssearchformstub",{"_index":214,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["addresssearchloading",{"_index":198,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["addresssearchsubmitted",{"_index":199,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["addtoaccountregistry",{"_index":80,"title":{},"body":{"classes/AccountIndex.html":{}}}],["addtoaccountregistry('0xc0ffee254729296a45a3885639ac7e10f9d54979'",{"_index":111,"title":{},"body":{"classes/AccountIndex.html":{}}}],["addtoaccountregistry('0xc0ffee254729296a45a3885639ac7e10f9d54979",{"_index":162,"title":{},"body":{"classes/AccountIndex.html":{}}}],["addtoaccountregistry(address",{"_index":99,"title":{},"body":{"classes/AccountIndex.html":{}}}],["addtransaction",{"_index":3231,"title":{},"body":{"injectables/TransactionService.html":{}}}],["addtransaction(transaction",{"_index":3240,"title":{},"body":{"injectables/TransactionService.html":{}}}],["admin",{"_index":551,"title":{},"body":{"components/AdminComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"modules/PagesRoutingModule.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"classes/UserServiceStub.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["admin'},{'name",{"_index":297,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["admin.component.html",{"_index":553,"title":{},"body":{"components/AdminComponent.html":{}}}],["admin.component.scss",{"_index":552,"title":{},"body":{"components/AdminComponent.html":{}}}],["admin_reserve",{"_index":2952,"title":{},"body":{"components/SettingsComponent.html":{}}}],["admincomponent",{"_index":296,"title":{"components/AdminComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["adminmodule",{"_index":628,"title":{"modules/AdminModule.html":{}},"body":{"modules/AdminModule.html":{},"modules.html":{},"overview.html":{}}}],["adminroutingmodule",{"_index":632,"title":{"modules/AdminRoutingModule.html":{}},"body":{"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["adopted",{"_index":4004,"title":{},"body":{"license.html":{}}}],["adversely",{"_index":4162,"title":{},"body":{"license.html":{}}}],["advised",{"_index":4408,"title":{},"body":{"license.html":{}}}],["affects",{"_index":4163,"title":{},"body":{"license.html":{}}}],["affero",{"_index":4359,"title":{},"body":{"license.html":{}}}],["affirmed",{"_index":4275,"title":{},"body":{"license.html":{}}}],["affirms",{"_index":3964,"title":{},"body":{"license.html":{}}}],["afterviewinit",{"_index":3364,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["again",{"_index":685,"title":{},"body":{"components/AppComponent.html":{}}}],["against",{"_index":3635,"title":{},"body":{"miscellaneous/functions.html":{},"license.html":{}}}],["age",{"_index":10,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{}}}],["agent",{"_index":1981,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["aggregate",{"_index":4057,"title":{},"body":{"license.html":{}}}],["agree",{"_index":4354,"title":{},"body":{"license.html":{}}}],["agreed",{"_index":4395,"title":{},"body":{"license.html":{}}}],["agreement",{"_index":4304,"title":{},"body":{"license.html":{}}}],["agrovet",{"_index":2264,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["aim",{"_index":3799,"title":{},"body":{"license.html":{}}}],["airtime",{"_index":2343,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["alert('access",{"_index":1382,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["alert('account",{"_index":275,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["alg",{"_index":1167,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["algo",{"_index":41,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signer.html":{}}}],["aliases",{"_index":4472,"title":{},"body":{"miscellaneous/typealiases.html":{}}}],["alleging",{"_index":4282,"title":{},"body":{"license.html":{}}}],["allow",{"_index":3822,"title":{},"body":{"license.html":{}}}],["allowed",{"_index":1384,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"license.html":{}}}],["allows",{"_index":69,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["along",{"_index":4033,"title":{},"body":{"license.html":{}}}],["alpha.3",{"_index":3562,"title":{},"body":{"dependencies.html":{}}}],["alpha.6",{"_index":3558,"title":{},"body":{"dependencies.html":{}}}],["already",{"_index":116,"title":{},"body":{"classes/AccountIndex.html":{},"license.html":{}}}],["alternative",{"_index":4084,"title":{},"body":{"license.html":{}}}],["although",{"_index":3795,"title":{},"body":{"license.html":{}}}],["amani",{"_index":1638,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["amount",{"_index":3204,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["ancillary",{"_index":4248,"title":{},"body":{"license.html":{}}}],["and/or",{"_index":3779,"title":{},"body":{"license.html":{}}}],["andshow",{"_index":4451,"title":{},"body":{"license.html":{}}}],["angular",{"_index":460,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AppModule.html":{},"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"modules/TransactionsModule.html":{},"dependencies.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["angular/animations",{"_index":585,"title":{},"body":{"components/AdminComponent.html":{},"dependencies.html":{}}}],["angular/cdk",{"_index":3543,"title":{},"body":{"dependencies.html":{}}}],["angular/cli",{"_index":3649,"title":{},"body":{"index.html":{}}}],["angular/common",{"_index":451,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{},"dependencies.html":{}}}],["angular/common/http",{"_index":744,"title":{},"body":{"modules/AppModule.html":{},"injectables/AuthService.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["angular/compiler",{"_index":3545,"title":{},"body":{"dependencies.html":{}}}],["angular/core",{"_index":245,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"dependencies.html":{}}}],["angular/forms",{"_index":247,"title":{},"body":{"components/AccountSearchComponent.html":{},"modules/AccountsModule.html":{},"components/AuthComponent.html":{},"modules/AuthModule.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/OrganizationComponent.html":{},"modules/SettingsModule.html":{},"dependencies.html":{}}}],["angular/material",{"_index":3546,"title":{},"body":{"dependencies.html":{}}}],["angular/material/button",{"_index":476,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/card",{"_index":478,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/checkbox",{"_index":468,"title":{},"body":{"modules/AccountsModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/core",{"_index":487,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"classes/CustomErrorStateMatcher.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/dialog",{"_index":1319,"title":{},"body":{"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"modules/SharedModule.html":{}}}],["angular/material/form",{"_index":473,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/icon",{"_index":480,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/input",{"_index":471,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/menu",{"_index":2974,"title":{},"body":{"modules/SettingsModule.html":{}}}],["angular/material/paginator",{"_index":388,"title":{},"body":{"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/progress",{"_index":489,"title":{},"body":{"modules/AccountsModule.html":{}}}],["angular/material/radio",{"_index":2972,"title":{},"body":{"modules/SettingsModule.html":{}}}],["angular/material/select",{"_index":482,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/sidenav",{"_index":3135,"title":{},"body":{"modules/TokensModule.html":{}}}],["angular/material/snack",{"_index":494,"title":{},"body":{"modules/AccountsModule.html":{},"components/TransactionDetailsComponent.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/sort",{"_index":389,"title":{},"body":{"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/table",{"_index":387,"title":{},"body":{"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/tabs",{"_index":485,"title":{},"body":{"modules/AccountsModule.html":{}}}],["angular/material/toolbar",{"_index":3137,"title":{},"body":{"modules/TokensModule.html":{}}}],["angular/platform",{"_index":735,"title":{},"body":{"modules/AppModule.html":{},"pipes/SafePipe.html":{},"dependencies.html":{}}}],["angular/router",{"_index":250,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsRoutingModule.html":{},"classes/ActivatedRouteStub.html":{},"modules/AdminRoutingModule.html":{},"modules/AppRoutingModule.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthRoutingModule.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"modules/PagesRoutingModule.html":{},"guards/RoleGuard.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"modules/TokensRoutingModule.html":{},"components/TransactionDetailsComponent.html":{},"modules/TransactionsRoutingModule.html":{},"dependencies.html":{}}}],["animate",{"_index":580,"title":{},"body":{"components/AdminComponent.html":{}}}],["animate('225ms",{"_index":599,"title":{},"body":{"components/AdminComponent.html":{}}}],["animations",{"_index":587,"title":{},"body":{"components/AdminComponent.html":{}}}],["anti",{"_index":3991,"title":{},"body":{"license.html":{}}}],["anyone",{"_index":4040,"title":{},"body":{"license.html":{}}}],["anything",{"_index":3868,"title":{},"body":{"license.html":{}}}],["api",{"_index":2471,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["app",{"_index":191,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"index.html":{}}}],["app.component.html",{"_index":640,"title":{},"body":{"components/AppComponent.html":{}}}],["app.component.scss",{"_index":639,"title":{},"body":{"components/AppComponent.html":{}}}],["app.module",{"_index":3664,"title":{},"body":{"index.html":{}}}],["app/_eth",{"_index":3080,"title":{},"body":{"injectables/TokenService.html":{}}}],["app/_guards",{"_index":747,"title":{},"body":{"modules/AppModule.html":{},"modules/AppRoutingModule.html":{}}}],["app/_helpers",{"_index":248,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"modules/AppModule.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{},"injectables/RegistryService.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["app/_helpers/global",{"_index":940,"title":{},"body":{"injectables/AuthService.html":{}}}],["app/_interceptors",{"_index":751,"title":{},"body":{"modules/AppModule.html":{}}}],["app/_models",{"_index":393,"title":{},"body":{"components/AccountsComponent.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["app/_models/account",{"_index":1177,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["app/_models/staff",{"_index":2938,"title":{},"body":{"components/SettingsComponent.html":{}}}],["app/_pgp",{"_index":753,"title":{},"body":{"modules/AppModule.html":{},"injectables/AuthService.html":{}}}],["app/_pgp/pgp",{"_index":2775,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["app/_services",{"_index":249,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"interceptors/ErrorInterceptor.html":{},"components/SettingsComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["app/_services/auth.service",{"_index":3278,"title":{},"body":{"injectables/TransactionService.html":{}}}],["app/_services/error",{"_index":937,"title":{},"body":{"injectables/AuthService.html":{}}}],["app/_services/logging.service",{"_index":936,"title":{},"body":{"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"injectables/TransactionService.html":{}}}],["app/_services/registry.service",{"_index":1101,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["app/_services/transaction.service",{"_index":1100,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["app/_services/user.service",{"_index":3267,"title":{},"body":{"injectables/TransactionService.html":{}}}],["app/app",{"_index":738,"title":{},"body":{"modules/AppModule.html":{}}}],["app/app.component",{"_index":739,"title":{},"body":{"modules/AppModule.html":{}}}],["app/auth/_directives/password",{"_index":886,"title":{},"body":{"modules/AuthModule.html":{}}}],["app/auth/auth",{"_index":884,"title":{},"body":{"modules/AuthModule.html":{}}}],["app/auth/auth.component",{"_index":885,"title":{},"body":{"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{}}}],["app/shared/_directives/menu",{"_index":2984,"title":{},"body":{"modules/SharedModule.html":{}}}],["app/shared/_pipes/safe.pipe",{"_index":2989,"title":{},"body":{"modules/SharedModule.html":{}}}],["app/shared/_pipes/token",{"_index":2986,"title":{},"body":{"modules/SharedModule.html":{}}}],["app/shared/error",{"_index":1334,"title":{},"body":{"injectables/ErrorDialogService.html":{},"modules/SharedModule.html":{}}}],["app/shared/footer/footer.component",{"_index":2982,"title":{},"body":{"modules/SharedModule.html":{}}}],["app/shared/shared.module",{"_index":455,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["app/shared/sidebar/sidebar.component",{"_index":2983,"title":{},"body":{"modules/SharedModule.html":{}}}],["app/shared/topbar/topbar.component",{"_index":2981,"title":{},"body":{"modules/SharedModule.html":{}}}],["appcomponent",{"_index":298,"title":{"components/AppComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["applicable",{"_index":3874,"title":{},"body":{"license.html":{}}}],["application",{"_index":142,"title":{},"body":{"classes/AccountIndex.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/TokenRegistry.html":{}}}],["application/json",{"_index":960,"title":{},"body":{"injectables/AuthService.html":{}}}],["applications",{"_index":4460,"title":{},"body":{"license.html":{}}}],["applied",{"_index":3829,"title":{},"body":{"license.html":{}}}],["applies",{"_index":3736,"title":{},"body":{"license.html":{}}}],["apply",{"_index":3740,"title":{},"body":{"license.html":{}}}],["appmenuselection",{"_index":1552,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["appmenuselection]'},{'name",{"_index":332,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["appmenutoggle",{"_index":1565,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["appmenutoggle]'},{'name",{"_index":334,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["appmodule",{"_index":722,"title":{"modules/AppModule.html":{}},"body":{"modules/AppModule.html":{},"modules.html":{},"overview.html":{}}}],["apppasswordtoggle",{"_index":2838,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["apppasswordtoggle]'},{'name",{"_index":336,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["appropriate",{"_index":1432,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"license.html":{}}}],["appropriately",{"_index":4022,"title":{},"body":{"license.html":{}}}],["approutingmodule",{"_index":728,"title":{"modules/AppRoutingModule.html":{}},"body":{"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["approval",{"_index":507,"title":{},"body":{"interfaces/Action.html":{},"components/AdminComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["approvalstatus",{"_index":555,"title":{},"body":{"components/AdminComponent.html":{}}}],["approvalstatus(action.approval",{"_index":620,"title":{},"body":{"components/AdminComponent.html":{}}}],["approvalstatus(status",{"_index":560,"title":{},"body":{"components/AdminComponent.html":{}}}],["approve",{"_index":577,"title":{},"body":{"components/AdminComponent.html":{}}}],["approveaction",{"_index":556,"title":{},"body":{"components/AdminComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{}}}],["approveaction(action",{"_index":563,"title":{},"body":{"components/AdminComponent.html":{}}}],["approveaction(id",{"_index":3466,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["approved",{"_index":608,"title":{},"body":{"components/AdminComponent.html":{},"classes/UserServiceStub.html":{}}}],["approximates",{"_index":4416,"title":{},"body":{"license.html":{}}}],["area",{"_index":29,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"components/CreateAccountComponent.html":{},"injectables/LocationService.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/Signature.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["area_name",{"_index":30,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["area_type",{"_index":31,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{}}}],["areaname",{"_index":510,"title":{"interfaces/AreaName.html":{}},"body":{"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{}}}],["areaname.locations.includes(stringfromurl",{"_index":2531,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areaname.name",{"_index":2527,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areanamelist",{"_index":2525,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areanames",{"_index":1202,"title":{},"body":{"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["areanames.find(areaname",{"_index":2530,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areanames.map(areaname",{"_index":2526,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areatype",{"_index":512,"title":{"interfaces/AreaType.html":{}},"body":{"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{}}}],["areatype.area.includes(stringfromurl",{"_index":2539,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areatype.name",{"_index":2535,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areatypelist",{"_index":2533,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areatypes",{"_index":1863,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["areatypes.find(areatype",{"_index":2538,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areatypes.map(areatype",{"_index":2534,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["args",{"_index":2908,"title":{},"body":{"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{}}}],["arguments",{"_index":654,"title":{},"body":{"components/AppComponent.html":{}}}],["arise",{"_index":3810,"title":{},"body":{"license.html":{}}}],["arising",{"_index":4399,"title":{},"body":{"license.html":{}}}],["arr",{"_index":3597,"title":{},"body":{"miscellaneous/functions.html":{}}}],["arrange",{"_index":4314,"title":{},"body":{"license.html":{}}}],["arrangement",{"_index":4326,"title":{},"body":{"license.html":{}}}],["array",{"_index":135,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountsComponent.html":{},"interfaces/Action.html":{},"components/AdminComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"injectables/AuthService.html":{},"interfaces/Category.html":{},"components/CreateAccountComponent.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/SettingsComponent.html":{},"classes/TokenRegistry.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["array.from({length",{"_index":3088,"title":{},"body":{"injectables/TokenService.html":{}}}],["arraybuffer",{"_index":988,"title":{},"body":{"injectables/AuthService.html":{}}}],["arraydata",{"_index":3614,"title":{},"body":{"miscellaneous/functions.html":{}}}],["arraysum",{"_index":3497,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["arraysum(arr",{"_index":3595,"title":{},"body":{"miscellaneous/functions.html":{}}}],["article",{"_index":4000,"title":{},"body":{"license.html":{}}}],["artifacts",{"_index":3672,"title":{},"body":{"index.html":{}}}],["artisan",{"_index":2091,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["artist",{"_index":1980,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["askari",{"_index":1982,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["asking",{"_index":3757,"title":{},"body":{"license.html":{}}}],["assert",{"_index":3774,"title":{},"body":{"license.html":{}}}],["assets",{"_index":4265,"title":{},"body":{"license.html":{}}}],["assets/js/block",{"_index":2868,"title":{},"body":{"injectables/RegistryService.html":{}}}],["assigned",{"_index":3053,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["associated",{"_index":858,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["assume",{"_index":4390,"title":{},"body":{"license.html":{}}}],["assumption",{"_index":4420,"title":{},"body":{"license.html":{}}}],["assumptions",{"_index":4207,"title":{},"body":{"license.html":{}}}],["assures",{"_index":3832,"title":{},"body":{"license.html":{}}}],["async",{"_index":79,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["atomic",{"_index":945,"title":{},"body":{"injectables/AuthService.html":{}}}],["attach",{"_index":4429,"title":{},"body":{"license.html":{}}}],["attempt",{"_index":4221,"title":{},"body":{"license.html":{}}}],["attributed",{"_index":3790,"title":{},"body":{"license.html":{}}}],["attributions",{"_index":4190,"title":{},"body":{"license.html":{}}}],["auth",{"_index":767,"title":{},"body":{"modules/AppRoutingModule.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{}}}],["auth'},{'name",{"_index":301,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["auth.component.html",{"_index":778,"title":{},"body":{"components/AuthComponent.html":{}}}],["auth.component.scss",{"_index":777,"title":{},"body":{"components/AuthComponent.html":{}}}],["authcomponent",{"_index":300,"title":{"components/AuthComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["authenticate",{"_index":992,"title":{},"body":{"injectables/AuthService.html":{}}}],["authentication",{"_index":840,"title":{},"body":{"guards/AuthGuard.html":{},"components/SettingsComponent.html":{}}}],["authguard",{"_index":746,"title":{"guards/AuthGuard.html":{}},"body":{"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"guards/AuthGuard.html":{},"coverage.html":{}}}],["authheader",{"_index":990,"title":{},"body":{"injectables/AuthService.html":{}}}],["authmodule",{"_index":878,"title":{"modules/AuthModule.html":{}},"body":{"modules/AuthModule.html":{},"modules.html":{},"overview.html":{}}}],["author",{"_index":4189,"title":{},"body":{"license.html":{}}}],["authorization",{"_index":4142,"title":{},"body":{"license.html":{}}}],["authorized",{"_index":1012,"title":{},"body":{"injectables/AuthService.html":{},"license.html":{}}}],["authorizes",{"_index":4287,"title":{},"body":{"license.html":{}}}],["authorizing",{"_index":4330,"title":{},"body":{"license.html":{}}}],["authors",{"_index":3739,"title":{},"body":{"license.html":{}}}],["authroutingmodule",{"_index":882,"title":{"modules/AuthRoutingModule.html":{}},"body":{"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["authservice",{"_index":650,"title":{"injectables/AuthService.html":{}},"body":{"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"components/SettingsComponent.html":{},"injectables/TransactionService.html":{},"coverage.html":{}}}],["automatic",{"_index":4257,"title":{},"body":{"license.html":{}}}],["automatically",{"_index":3655,"title":{},"body":{"index.html":{},"license.html":{}}}],["automerge",{"_index":963,"title":{},"body":{"injectables/AuthService.html":{}}}],["availability",{"_index":103,"title":{},"body":{"classes/AccountIndex.html":{}}}],["available",{"_index":122,"title":{},"body":{"classes/AccountIndex.html":{},"license.html":{},"modules.html":{}}}],["avenue",{"_index":3620,"title":{},"body":{"miscellaneous/functions.html":{}}}],["avocado",{"_index":2107,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["avoid",{"_index":3826,"title":{},"body":{"license.html":{}}}],["await",{"_index":163,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["away",{"_index":3726,"title":{},"body":{"license.html":{}}}],["b",{"_index":3925,"title":{},"body":{"license.html":{}}}],["baby",{"_index":1886,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["babycare",{"_index":1885,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["backend",{"_index":1364,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["backend.ts",{"_index":1576,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["backend.ts:268",{"_index":1582,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["bag",{"_index":2301,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bajia",{"_index":2109,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["baker",{"_index":1984,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["balance",{"_index":11,"title":{},"body":{"interfaces/AccountDetails.html":{},"components/AccountsComponent.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/Signature.html":{},"interfaces/Token.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["bamburi",{"_index":1802,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["banana",{"_index":2114,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bananas",{"_index":2115,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bangla",{"_index":1784,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bangladesh",{"_index":1785,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bar",{"_index":495,"title":{},"body":{"modules/AccountsModule.html":{},"interceptors/MockBackendInterceptor.html":{},"components/TransactionDetailsComponent.html":{},"modules/TransactionsModule.html":{},"miscellaneous/variables.html":{}}}],["barafu",{"_index":2259,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["barakoa",{"_index":2266,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["barber",{"_index":1987,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["based",{"_index":3864,"title":{},"body":{"license.html":{}}}],["basic",{"_index":3956,"title":{},"body":{"license.html":{}}}],["bead",{"_index":2302,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["beadwork",{"_index":1985,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["beans",{"_index":2111,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bearer",{"_index":958,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/HttpConfigInterceptor.html":{}}}],["beautician",{"_index":2098,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["beauty",{"_index":1986,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["beba",{"_index":2370,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bebabeba",{"_index":2371,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bed",{"_index":2306,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bedding",{"_index":2304,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["behalf",{"_index":3979,"title":{},"body":{"license.html":{}}}],["behave",{"_index":1251,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["behaviorsubject",{"_index":3079,"title":{},"body":{"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["behaviorsubject(this.transactions",{"_index":3259,"title":{},"body":{"injectables/TransactionService.html":{}}}],["being",{"_index":1290,"title":{},"body":{"classes/CustomValidator.html":{},"license.html":{}}}],["believe",{"_index":4323,"title":{},"body":{"license.html":{}}}],["below",{"_index":3986,"title":{},"body":{"license.html":{}}}],["belt",{"_index":2303,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["benefit",{"_index":4317,"title":{},"body":{"license.html":{}}}],["best",{"_index":4426,"title":{},"body":{"license.html":{}}}],["between",{"_index":3954,"title":{},"body":{"license.html":{}}}],["beyond",{"_index":4059,"title":{},"body":{"license.html":{}}}],["bezier(0.4",{"_index":601,"title":{},"body":{"components/AdminComponent.html":{}}}],["bhajia",{"_index":2108,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["biashara",{"_index":2027,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bicycle",{"_index":2373,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bike",{"_index":2372,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["binding",{"_index":1268,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["bio",{"_index":3444,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["biogas",{"_index":2402,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["biringanya",{"_index":2113,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["biscuits",{"_index":2112,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bit",{"_index":1086,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["block",{"_index":829,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{},"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"dependencies.html":{}}}],["blockchain",{"_index":151,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["blockfilter",{"_index":1168,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["blockfilterbinstr",{"_index":1147,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["blockfilterbinstr.charcodeat(i",{"_index":1154,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["blocksbloom",{"_index":1165,"title":{"classes/BlocksBloom.html":{}},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"coverage.html":{}}}],["blocksync",{"_index":1062,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["blocksync(address",{"_index":1071,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["blocksyncservice",{"_index":1059,"title":{"injectables/BlockSyncService.html":{}},"body":{"injectables/BlockSyncService.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["blocktxfilter",{"_index":1169,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["blocktxfilterbinstr",{"_index":1155,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["blocktxfilterbinstr.charcodeat(i",{"_index":1160,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["bloomblockbytes",{"_index":1091,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["bloomblocktxbytes",{"_index":1093,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["bloomrounds",{"_index":1094,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["bloxberg:8996",{"_index":25,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["bloxbergchainid",{"_index":4483,"title":{},"body":{"miscellaneous/variables.html":{}}}],["boda",{"_index":2375,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bodaboda",{"_index":2376,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["body",{"_index":1368,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["body.approval",{"_index":2519,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["bofu",{"_index":1639,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bombolulu",{"_index":1806,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bomet",{"_index":1848,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bone",{"_index":1149,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["bone.map((e",{"_index":1151,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["book",{"_index":1868,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["boolean",{"_index":227,"title":{},"body":{"components/AccountSearchComponent.html":{},"interfaces/Action.html":{},"components/AdminComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"injectables/LoggingService.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"guards/RoleGuard.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"miscellaneous/functions.html":{}}}],["bootstrap",{"_index":436,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{},"dependencies.html":{},"overview.html":{}}}],["both",{"_index":3784,"title":{},"body":{"license.html":{}}}],["botique",{"_index":2308,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["boutique",{"_index":2309,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["box",{"_index":4454,"title":{},"body":{"license.html":{}}}],["bread",{"_index":2199,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["break",{"_index":1380,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["brewer",{"_index":2105,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bricks",{"_index":2081,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["browse",{"_index":4466,"title":{},"body":{"modules.html":{}}}],["browser",{"_index":736,"title":{},"body":{"modules/AppModule.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"pipes/SafePipe.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"dependencies.html":{},"modules.html":{}}}],["browser/animations",{"_index":741,"title":{},"body":{"modules/AppModule.html":{}}}],["browseranimationsmodule",{"_index":740,"title":{},"body":{"modules/AppModule.html":{}}}],["browsermodule",{"_index":734,"title":{},"body":{"modules/AppModule.html":{}}}],["btwo",{"_index":1157,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["btwo.map((e",{"_index":1159,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["buck",{"_index":3446,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["build",{"_index":3665,"title":{},"body":{"index.html":{}}}],["build:dev",{"_index":3671,"title":{},"body":{"index.html":{}}}],["build:prod",{"_index":3675,"title":{},"body":{"index.html":{}}}],["bungoma",{"_index":1850,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["buru",{"_index":1762,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["busaa",{"_index":2186,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["busia",{"_index":1829,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["business",{"_index":1241,"title":{},"body":{"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["businesscategory",{"_index":1225,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["butcher",{"_index":2139,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["butchery",{"_index":2140,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["button",{"_index":625,"title":{},"body":{"components/AdminComponent.html":{},"injectables/AuthService.html":{}}}],["c",{"_index":3706,"title":{},"body":{"license.html":{}}}],["cabbages",{"_index":2188,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cachedtx.tx.txhash",{"_index":3284,"title":{},"body":{"injectables/TransactionService.html":{}}}],["cachesize",{"_index":3241,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["cafe",{"_index":2318,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cake",{"_index":2126,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["call",{"_index":2472,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["called",{"_index":3862,"title":{},"body":{"license.html":{}}}],["calls",{"_index":3624,"title":{},"body":{"miscellaneous/functions.html":{}}}],["can't",{"_index":2652,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["can\\'t",{"_index":682,"title":{},"body":{"components/AppComponent.html":{}}}],["canactivate",{"_index":773,"title":{},"body":{"modules/AppRoutingModule.html":{},"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["canactivate(route",{"_index":850,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["candebug",{"_index":1511,"title":{},"body":{"injectables/LoggingService.html":{}}}],["candy",{"_index":2314,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["capabilities",{"_index":849,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"guards/RoleGuard.html":{}}}],["capenter",{"_index":1993,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["car",{"_index":1991,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["card",{"_index":2737,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["care",{"_index":1887,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["caretaker",{"_index":1990,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["carpenter",{"_index":2003,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["carrier",{"_index":2378,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["carry",{"_index":4035,"title":{},"body":{"license.html":{}}}],["cart",{"_index":2377,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["carwash",{"_index":1999,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["case",{"_index":1377,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["cases",{"_index":4127,"title":{},"body":{"license.html":{}}}],["cashier",{"_index":1592,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cassava",{"_index":2125,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["casual",{"_index":1988,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["catch",{"_index":399,"title":{},"body":{"components/AccountsComponent.html":{},"components/AppComponent.html":{},"injectables/AuthService.html":{}}}],["catch((e",{"_index":2804,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["catcherror",{"_index":673,"title":{},"body":{"components/AppComponent.html":{},"interceptors/ErrorInterceptor.html":{}}}],["catcherror((err",{"_index":1356,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["categories",{"_index":1203,"title":{},"body":{"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["categories.find(category",{"_index":2546,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["categories.map(category",{"_index":2542,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["category",{"_index":12,"title":{"interfaces/Category.html":{}},"body":{"interfaces/AccountDetails.html":{},"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"components/CreateAccountComponent.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/Signature.html":{},"coverage.html":{}}}],["category.name",{"_index":2543,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["category.products.includes(stringfromurl",{"_index":2547,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["categorylist",{"_index":2541,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["catering",{"_index":1996,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cause",{"_index":4062,"title":{},"body":{"license.html":{}}}],["cease",{"_index":4225,"title":{},"body":{"license.html":{}}}],["cement",{"_index":2307,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["centralized",{"_index":1400,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["cereal",{"_index":2120,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cereals",{"_index":2127,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["certain",{"_index":1580,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["cessation",{"_index":4237,"title":{},"body":{"license.html":{}}}],["chai",{"_index":2123,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chakula",{"_index":2117,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["challenge",{"_index":976,"title":{},"body":{"injectables/AuthService.html":{}}}],["chama",{"_index":2294,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["changamwe",{"_index":1796,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["change",{"_index":832,"title":{},"body":{"components/AuthComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"components/SettingsComponent.html":{},"classes/UserServiceStub.html":{},"index.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["changed",{"_index":3788,"title":{},"body":{"license.html":{}}}],["changedetection",{"_index":188,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["changedetectionstrategy",{"_index":244,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["changedetectionstrategy.onpush",{"_index":189,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["changing",{"_index":3717,"title":{},"body":{"license.html":{}}}],["chapati",{"_index":2119,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chapo",{"_index":2122,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["characterized",{"_index":4151,"title":{},"body":{"license.html":{}}}],["charcoal",{"_index":2404,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["charcol",{"_index":2403,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["charge",{"_index":3744,"title":{},"body":{"license.html":{}}}],["charging",{"_index":2051,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chart.js",{"_index":3554,"title":{},"body":{"dependencies.html":{}}}],["charts",{"_index":2824,"title":{},"body":{"modules/PagesModule.html":{},"dependencies.html":{}}}],["chartsmodule",{"_index":2822,"title":{},"body":{"modules/PagesModule.html":{}}}],["check",{"_index":809,"title":{},"body":{"components/AuthComponent.html":{},"index.html":{}}}],["checks",{"_index":119,"title":{},"body":{"classes/AccountIndex.html":{},"guards/AuthGuard.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"guards/RoleGuard.html":{}}}],["chef",{"_index":1995,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chemicals",{"_index":2268,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chemist",{"_index":2267,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chibuga",{"_index":1640,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chicken",{"_index":2131,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chidzivuni",{"_index":1652,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chidzuvini",{"_index":1651,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chief",{"_index":1937,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chigale",{"_index":1646,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chigato",{"_index":1645,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chigojoni",{"_index":1643,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chikole",{"_index":1647,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chikomani",{"_index":1641,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chikomeni",{"_index":1650,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chikuyu",{"_index":1653,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["children",{"_index":1907,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chilongoni",{"_index":1642,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chilumani",{"_index":1648,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chinguluni",{"_index":1644,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chipo",{"_index":2121,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chips",{"_index":2124,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chizingo",{"_index":1654,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chizini",{"_index":1649,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["choma",{"_index":2182,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["choo",{"_index":1951,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["choose",{"_index":4374,"title":{},"body":{"license.html":{}}}],["choosing",{"_index":4378,"title":{},"body":{"license.html":{}}}],["christine",{"_index":1600,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["chumvi",{"_index":2187,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["church",{"_index":1931,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chv",{"_index":2269,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cic",{"_index":962,"title":{},"body":{"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"dependencies.html":{},"index.html":{},"license.html":{}}}],["cicada",{"_index":670,"title":{},"body":{"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/SidebarComponent.html":{},"index.html":{}}}],["ciccacheurl",{"_index":4494,"title":{},"body":{"miscellaneous/variables.html":{}}}],["cicconvert(event",{"_index":719,"title":{},"body":{"components/AppComponent.html":{}}}],["cicmetaurl",{"_index":4489,"title":{},"body":{"miscellaneous/variables.html":{}}}],["cicregistry",{"_index":2864,"title":{},"body":{"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["cicregistry(this.web3",{"_index":2865,"title":{},"body":{"injectables/RegistryService.html":{}}}],["cictransfer(event",{"_index":715,"title":{},"body":{"components/AppComponent.html":{}}}],["cicussdurl",{"_index":4499,"title":{},"body":{"miscellaneous/variables.html":{}}}],["circumstances",{"_index":3984,"title":{},"body":{"license.html":{}}}],["circumvention",{"_index":3992,"title":{},"body":{"license.html":{}}}],["civil",{"_index":4419,"title":{},"body":{"license.html":{}}}],["claim",{"_index":4279,"title":{},"body":{"license.html":{}}}],["claims",{"_index":4289,"title":{},"body":{"license.html":{}}}],["class",{"_index":60,"title":{"classes/AccountIndex.html":{},"classes/ActivatedRouteStub.html":{},"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"classes/HttpError.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"classes/Settings.html":{},"classes/TokenRegistry.html":{},"classes/TokenServiceStub.html":{},"classes/Transaction.html":{},"classes/TransactionServiceStub.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"classes/W3.html":{}},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"classes/W3.html":{},"coverage.html":{},"license.html":{}}}],["classes",{"_index":62,"title":{},"body":{"classes/AccountIndex.html":{},"classes/ActivatedRouteStub.html":{},"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"classes/HttpError.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"classes/Settings.html":{},"classes/TokenRegistry.html":{},"classes/TokenServiceStub.html":{},"classes/Transaction.html":{},"classes/TransactionServiceStub.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"classes/W3.html":{},"overview.html":{}}}],["cleaner",{"_index":1964,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cleaning",{"_index":1957,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["clear",{"_index":4095,"title":{},"body":{"license.html":{}}}],["clearkeysinkeyring",{"_index":2569,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["clearly",{"_index":3781,"title":{},"body":{"license.html":{}}}],["cles",{"_index":3457,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["cli",{"_index":3644,"title":{},"body":{"index.html":{}}}],["click",{"_index":1561,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{}}}],["client",{"_index":1099,"title":{},"body":{"injectables/BlockSyncService.html":{},"interceptors/ErrorInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"dependencies.html":{},"index.html":{},"license.html":{}}}],["clinic",{"_index":2281,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["clinical",{"_index":2282,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["clipboard",{"_index":3602,"title":{},"body":{"miscellaneous/functions.html":{}}}],["close",{"_index":3195,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["closely",{"_index":4415,"title":{},"body":{"license.html":{}}}],["cloth",{"_index":2315,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["club",{"_index":2363,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["clues",{"_index":1370,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["cluster_accountsmodule",{"_index":439,"title":{},"body":{"modules/AccountsModule.html":{},"overview.html":{}}}],["cluster_accountsmodule_declarations",{"_index":440,"title":{},"body":{"modules/AccountsModule.html":{},"overview.html":{}}}],["cluster_accountsmodule_imports",{"_index":441,"title":{},"body":{"modules/AccountsModule.html":{},"overview.html":{}}}],["cluster_adminmodule",{"_index":629,"title":{},"body":{"modules/AdminModule.html":{},"overview.html":{}}}],["cluster_adminmodule_declarations",{"_index":630,"title":{},"body":{"modules/AdminModule.html":{},"overview.html":{}}}],["cluster_adminmodule_imports",{"_index":631,"title":{},"body":{"modules/AdminModule.html":{},"overview.html":{}}}],["cluster_appmodule",{"_index":723,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_bootstrap",{"_index":727,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_declarations",{"_index":726,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_imports",{"_index":724,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_providers",{"_index":725,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_authmodule",{"_index":879,"title":{},"body":{"modules/AuthModule.html":{},"overview.html":{}}}],["cluster_authmodule_declarations",{"_index":881,"title":{},"body":{"modules/AuthModule.html":{},"overview.html":{}}}],["cluster_authmodule_imports",{"_index":880,"title":{},"body":{"modules/AuthModule.html":{},"overview.html":{}}}],["cluster_pagesmodule",{"_index":2815,"title":{},"body":{"modules/PagesModule.html":{},"overview.html":{}}}],["cluster_pagesmodule_declarations",{"_index":2816,"title":{},"body":{"modules/PagesModule.html":{},"overview.html":{}}}],["cluster_pagesmodule_imports",{"_index":2817,"title":{},"body":{"modules/PagesModule.html":{},"overview.html":{}}}],["cluster_settingsmodule",{"_index":2963,"title":{},"body":{"modules/SettingsModule.html":{},"overview.html":{}}}],["cluster_settingsmodule_declarations",{"_index":2965,"title":{},"body":{"modules/SettingsModule.html":{},"overview.html":{}}}],["cluster_settingsmodule_imports",{"_index":2964,"title":{},"body":{"modules/SettingsModule.html":{},"overview.html":{}}}],["cluster_sharedmodule",{"_index":2976,"title":{},"body":{"modules/SharedModule.html":{},"overview.html":{}}}],["cluster_sharedmodule_declarations",{"_index":2978,"title":{},"body":{"modules/SharedModule.html":{},"overview.html":{}}}],["cluster_sharedmodule_exports",{"_index":2977,"title":{},"body":{"modules/SharedModule.html":{},"overview.html":{}}}],["cluster_tokensmodule",{"_index":3125,"title":{},"body":{"modules/TokensModule.html":{},"overview.html":{}}}],["cluster_tokensmodule_declarations",{"_index":3127,"title":{},"body":{"modules/TokensModule.html":{},"overview.html":{}}}],["cluster_tokensmodule_imports",{"_index":3126,"title":{},"body":{"modules/TokensModule.html":{},"overview.html":{}}}],["cluster_transactionsmodule",{"_index":3414,"title":{},"body":{"modules/TransactionsModule.html":{},"overview.html":{}}}],["cluster_transactionsmodule_declarations",{"_index":3417,"title":{},"body":{"modules/TransactionsModule.html":{},"overview.html":{}}}],["cluster_transactionsmodule_exports",{"_index":3416,"title":{},"body":{"modules/TransactionsModule.html":{},"overview.html":{}}}],["cluster_transactionsmodule_imports",{"_index":3415,"title":{},"body":{"modules/TransactionsModule.html":{},"overview.html":{}}}],["coach",{"_index":1869,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cobbler",{"_index":1998,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cobler",{"_index":1997,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["coconut",{"_index":2118,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["code",{"_index":1367,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"components/OrganizationComponent.html":{},"index.html":{},"license.html":{}}}],["coffee",{"_index":2130,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["collapsed",{"_index":598,"title":{},"body":{"components/AdminComponent.html":{}}}],["collect",{"_index":4356,"title":{},"body":{"license.html":{}}}],["collection",{"_index":1966,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["college",{"_index":1879,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["columnstodisplay",{"_index":3103,"title":{},"body":{"components/TokensComponent.html":{}}}],["combination",{"_index":4363,"title":{},"body":{"license.html":{}}}],["combine",{"_index":4360,"title":{},"body":{"license.html":{}}}],["combined",{"_index":4053,"title":{},"body":{"license.html":{}}}],["comes",{"_index":2666,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"license.html":{}}}],["command",{"_index":3698,"title":{},"body":{"index.html":{}}}],["commands",{"_index":3903,"title":{},"body":{"license.html":{}}}],["commas",{"_index":3619,"title":{},"body":{"miscellaneous/functions.html":{}}}],["comment",{"_index":3004,"title":{},"body":{"interfaces/Staff.html":{}}}],["commercial",{"_index":4136,"title":{},"body":{"license.html":{}}}],["commitment",{"_index":4305,"title":{},"body":{"license.html":{}}}],["common",{"_index":4130,"title":{},"body":{"license.html":{}}}],["commonmodule",{"_index":450,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["communication",{"_index":3952,"title":{},"body":{"license.html":{}}}],["community",{"_index":2280,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"components/TokenDetailsComponent.html":{},"miscellaneous/variables.html":{}}}],["compilation",{"_index":4049,"title":{},"body":{"license.html":{}}}],["compilation's",{"_index":4058,"title":{},"body":{"license.html":{}}}],["compilations",{"_index":4340,"title":{},"body":{"license.html":{}}}],["compiler",{"_index":3935,"title":{},"body":{"license.html":{}}}],["complete",{"_index":1606,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["compliance",{"_index":4262,"title":{},"body":{"license.html":{}}}],["comply",{"_index":3977,"title":{},"body":{"license.html":{}}}],["component",{"_index":175,"title":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsRoutingModule.html":{},"components/AdminComponent.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthRoutingModule.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"modules/PagesRoutingModule.html":{},"guards/RoleGuard.html":{},"components/SettingsComponent.html":{},"modules/SettingsRoutingModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsRoutingModule.html":{},"coverage.html":{},"index.html":{},"license.html":{}}}],["component({selector",{"_index":1395,"title":{},"body":{"components/FooterStubComponent.html":{},"components/SidebarStubComponent.html":{},"components/TopbarStubComponent.html":{}}}],["component_template",{"_index":290,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["components",{"_index":177,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"overview.html":{}}}],["computer",{"_index":3877,"title":{},"body":{"license.html":{}}}],["computers",{"_index":3825,"title":{},"body":{"license.html":{}}}],["concerning",{"_index":4362,"title":{},"body":{"license.html":{}}}],["concerns",{"_index":4368,"title":{},"body":{"license.html":{}}}],["conditioned",{"_index":4335,"title":{},"body":{"license.html":{}}}],["conditions",{"_index":3836,"title":{},"body":{"license.html":{}}}],["conductor",{"_index":2383,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["config.interceptor.ts",{"_index":1472,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{},"coverage.html":{}}}],["config.interceptor.ts:11",{"_index":1473,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{}}}],["config.interceptor.ts:15",{"_index":1474,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{}}}],["confirm",{"_index":1287,"title":{},"body":{"classes/CustomValidator.html":{}}}],["confirm('approve",{"_index":610,"title":{},"body":{"components/AdminComponent.html":{}}}],["confirm('create",{"_index":1234,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["confirm('disapprove",{"_index":613,"title":{},"body":{"components/AdminComponent.html":{}}}],["confirm('set",{"_index":2733,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["confirmpassword",{"_index":1301,"title":{},"body":{"classes/CustomValidator.html":{}}}],["congo",{"_index":1732,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["connection",{"_index":89,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["consequence",{"_index":4250,"title":{},"body":{"license.html":{}}}],["consequential",{"_index":4398,"title":{},"body":{"license.html":{}}}],["conservation",{"_index":1949,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["consider",{"_index":4458,"title":{},"body":{"license.html":{}}}],["considered",{"_index":4209,"title":{},"body":{"license.html":{}}}],["consistent",{"_index":4296,"title":{},"body":{"license.html":{}}}],["console.log('here",{"_index":3474,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["console.log(arraysum([1",{"_index":3599,"title":{},"body":{"miscellaneous/functions.html":{}}}],["console.log(await",{"_index":110,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["console.log(copytoclipboard('hello",{"_index":3605,"title":{},"body":{"miscellaneous/functions.html":{}}}],["conspicuously",{"_index":4021,"title":{},"body":{"license.html":{}}}],["const",{"_index":48,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"modules/AccountsRoutingModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppRoutingModule.html":{},"components/AuthComponent.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"guards/RoleGuard.html":{},"components/SettingsComponent.html":{},"modules/SettingsRoutingModule.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signer.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"modules/TokensRoutingModule.html":{},"injectables/TransactionService.html":{},"modules/TransactionsRoutingModule.html":{}}}],["constantly",{"_index":3820,"title":{},"body":{"license.html":{}}}],["constitutes",{"_index":3967,"title":{},"body":{"license.html":{}}}],["construction",{"_index":1994,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["constructor",{"_index":84,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["constructor(@inject(mat_dialog_data",{"_index":1320,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["constructor(authservice",{"_index":649,"title":{},"body":{"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/SettingsComponent.html":{}}}],["constructor(blocksyncservice",{"_index":3374,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["constructor(contractaddress",{"_index":85,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["constructor(data",{"_index":1313,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["constructor(dialog",{"_index":1327,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["constructor(elementref",{"_index":1554,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["constructor(errordialogservice",{"_index":1344,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["constructor(formbuilder",{"_index":215,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["constructor(httpclient",{"_index":905,"title":{},"body":{"injectables/AuthService.html":{},"injectables/LocationService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["constructor(initialparams",{"_index":529,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["constructor(keystore",{"_index":2756,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["constructor(logger",{"_index":1520,"title":{},"body":{"injectables/LoggingService.html":{}}}],["constructor(loggingservice",{"_index":1408,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"interceptors/LoggingInterceptor.html":{}}}],["constructor(message",{"_index":1443,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["constructor(private",{"_index":875,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/LoggingService.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{}}}],["constructor(route",{"_index":3012,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["constructor(router",{"_index":841,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"components/TransactionDetailsComponent.html":{}}}],["constructor(scanfilter",{"_index":2918,"title":{},"body":{"classes/Settings.html":{},"classes/W3.html":{}}}],["constructor(tokenservice",{"_index":3105,"title":{},"body":{"components/TokensComponent.html":{}}}],["constructor(transactionservice",{"_index":1068,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["constructor(userservice",{"_index":356,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{}}}],["construed",{"_index":4344,"title":{},"body":{"license.html":{}}}],["consult",{"_index":1878,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["consultant",{"_index":1877,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["consumer",{"_index":4114,"title":{},"body":{"license.html":{}}}],["contact",{"_index":4440,"title":{},"body":{"license.html":{}}}],["contain",{"_index":1369,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"license.html":{}}}],["contained",{"_index":3687,"title":{},"body":{"index.html":{}}}],["containing",{"_index":4192,"title":{},"body":{"license.html":{}}}],["contains",{"_index":856,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"index.html":{},"license.html":{}}}],["content",{"_index":701,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"license.html":{}}}],["content?.classlist.add('active",{"_index":711,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["content?.classlist.contains('active",{"_index":710,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["content?.classlist.remove('active",{"_index":713,"title":{},"body":{"components/AppComponent.html":{}}}],["content?.classlist.toggle('active",{"_index":1572,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["contents",{"_index":4300,"title":{},"body":{"license.html":{}}}],["context",{"_index":3929,"title":{},"body":{"license.html":{}}}],["continue",{"_index":4157,"title":{},"body":{"license.html":{}}}],["continued",{"_index":4144,"title":{},"body":{"license.html":{}}}],["contract",{"_index":54,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["contract's",{"_index":94,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["contractaddress",{"_index":75,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["contracts",{"_index":1120,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["contractual",{"_index":4206,"title":{},"body":{"license.html":{}}}],["contradict",{"_index":4350,"title":{},"body":{"license.html":{}}}],["contrast",{"_index":3728,"title":{},"body":{"license.html":{}}}],["contributor",{"_index":4286,"title":{},"body":{"license.html":{}}}],["contributor's",{"_index":4288,"title":{},"body":{"license.html":{}}}],["control",{"_index":1264,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"license.html":{}}}],["control.dirty",{"_index":1273,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["control.get('confirmpassword').seterrors",{"_index":1303,"title":{},"body":{"classes/CustomValidator.html":{}}}],["control.get('confirmpassword').value",{"_index":1302,"title":{},"body":{"classes/CustomValidator.html":{}}}],["control.get('password').value",{"_index":1300,"title":{},"body":{"classes/CustomValidator.html":{}}}],["control.invalid",{"_index":1272,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["control.touched",{"_index":1274,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["control.value",{"_index":1305,"title":{},"body":{"classes/CustomValidator.html":{}}}],["controlled",{"_index":4291,"title":{},"body":{"license.html":{}}}],["controls",{"_index":1250,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["convenient",{"_index":3895,"title":{},"body":{"license.html":{}}}],["conversion",{"_index":720,"title":{"classes/Conversion.html":{}},"body":{"components/AppComponent.html":{},"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"coverage.html":{}}}],["conversion.fromvalue",{"_index":3297,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversion.recipient",{"_index":3303,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversion.sender",{"_index":3302,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversion.tovalue",{"_index":3299,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversion.tx.txhash",{"_index":3295,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversion.type",{"_index":3296,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversions",{"_index":2462,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["converted",{"_index":3615,"title":{},"body":{"miscellaneous/functions.html":{}}}],["converting",{"_index":3617,"title":{},"body":{"miscellaneous/functions.html":{}}}],["converts",{"_index":3630,"title":{},"body":{"miscellaneous/functions.html":{}}}],["converttoparammap",{"_index":541,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["convey",{"_index":3884,"title":{},"body":{"license.html":{}}}],["conveyance",{"_index":4328,"title":{},"body":{"license.html":{}}}],["conveyed",{"_index":4152,"title":{},"body":{"license.html":{}}}],["conveying",{"_index":3890,"title":{},"body":{"license.html":{}}}],["conveys",{"_index":4205,"title":{},"body":{"license.html":{}}}],["cook",{"_index":2128,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["copied",{"_index":3194,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"miscellaneous/functions.html":{}}}],["copies",{"_index":3601,"title":{},"body":{"miscellaneous/functions.html":{},"license.html":{}}}],["copy",{"_index":3606,"title":{},"body":{"miscellaneous/functions.html":{},"license.html":{}}}],["copy.ts",{"_index":3499,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["copyaddress",{"_index":3157,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["copyaddress(address",{"_index":3166,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["copying",{"_index":3837,"title":{},"body":{"license.html":{}}}],["copyleft",{"_index":3719,"title":{},"body":{"license.html":{}}}],["copyright",{"_index":3705,"title":{},"body":{"license.html":{}}}],["copyrightable",{"_index":3847,"title":{},"body":{"license.html":{}}}],["copyrighted",{"_index":3981,"title":{},"body":{"license.html":{}}}],["copytoclipboard",{"_index":3175,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"coverage.html":{},"miscellaneous/functions.html":{}}}],["copytoclipboard(address",{"_index":3192,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["copytoclipboard(text",{"_index":3600,"title":{},"body":{"miscellaneous/functions.html":{}}}],["corn",{"_index":2129,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["correction",{"_index":4393,"title":{},"body":{"license.html":{}}}],["corresponding",{"_index":3938,"title":{},"body":{"license.html":{}}}],["cosmetics",{"_index":2288,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cost",{"_index":4082,"title":{},"body":{"license.html":{}}}],["counsellor",{"_index":1911,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["count",{"_index":168,"title":{},"body":{"classes/AccountIndex.html":{},"injectables/TokenService.html":{}}}],["counterclaim",{"_index":4280,"title":{},"body":{"license.html":{}}}],["counties",{"_index":1844,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["countries",{"_index":3881,"title":{},"body":{"license.html":{}}}],["country",{"_index":1939,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"components/OrganizationComponent.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["countrycode",{"_index":2730,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["county",{"_index":1940,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["course",{"_index":4452,"title":{},"body":{"license.html":{}}}],["court",{"_index":4349,"title":{},"body":{"license.html":{}}}],["courts",{"_index":4414,"title":{},"body":{"license.html":{}}}],["covenant",{"_index":4308,"title":{},"body":{"license.html":{}}}],["coverage",{"_index":3487,"title":{"coverage.html":{}},"body":{"coverage.html":{},"license.html":{}}}],["covered",{"_index":3865,"title":{},"body":{"license.html":{}}}],["create",{"_index":88,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsRoutingModule.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenRegistry.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"index.html":{}}}],["createaccountcomponent",{"_index":302,"title":{"components/CreateAccountComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["created",{"_index":374,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionsComponent.html":{},"classes/UserServiceStub.html":{}}}],["createform",{"_index":1204,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["createformstub",{"_index":1206,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["credentials",{"_index":2950,"title":{},"body":{"components/SettingsComponent.html":{}}}],["credit",{"_index":2298,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["crisps",{"_index":2116,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["criterion",{"_index":3908,"title":{},"body":{"license.html":{}}}],["cross",{"_index":1892,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["csv",{"_index":3611,"title":{},"body":{"miscellaneous/functions.html":{}}}],["csv.ts",{"_index":3502,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["cubic",{"_index":600,"title":{},"body":{"components/AdminComponent.html":{}}}],["curated",{"_index":1591,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cure",{"_index":4240,"title":{},"body":{"license.html":{}}}],["currency",{"_index":3023,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["currentuser",{"_index":2883,"title":{},"body":{"guards/RoleGuard.html":{}}}],["custom",{"_index":1246,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{}}}],["customarily",{"_index":4073,"title":{},"body":{"license.html":{}}}],["customer",{"_index":4078,"title":{},"body":{"license.html":{}}}],["customerrorstatematcher",{"_index":231,"title":{"classes/CustomErrorStateMatcher.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"components/OrganizationComponent.html":{},"coverage.html":{}}}],["customevent",{"_index":657,"title":{},"body":{"components/AppComponent.html":{}}}],["customevent('cic_convert",{"_index":1140,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["customevent('cic_transfer",{"_index":1138,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["customvalidator",{"_index":1275,"title":{"classes/CustomValidator.html":{}},"body":{"classes/CustomValidator.html":{},"coverage.html":{}}}],["cyber",{"_index":1900,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["d",{"_index":2939,"title":{},"body":{"components/SettingsComponent.html":{},"license.html":{}}}],["d.getdate()}/${d.getmonth()}/${d.getfullyear",{"_index":2941,"title":{},"body":{"components/SettingsComponent.html":{}}}],["dagaa",{"_index":2132,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dagoreti",{"_index":1736,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dagoretti",{"_index":1778,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["daktari",{"_index":2271,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["damages",{"_index":4396,"title":{},"body":{"license.html":{}}}],["dandora",{"_index":1737,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["danger",{"_index":3828,"title":{},"body":{"license.html":{}}}],["danish",{"_index":1918,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dashboard",{"_index":2995,"title":{},"body":{"components/SidebarComponent.html":{}}}],["data",{"_index":42,"title":{},"body":{"interfaces/AccountDetails.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signer.html":{},"injectables/TransactionService.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["data.message",{"_index":1321,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["data?.status",{"_index":1322,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["datafile",{"_index":4511,"title":{},"body":{"miscellaneous/variables.html":{}}}],["datasource",{"_index":345,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["datasource.filter",{"_index":3401,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["datatables",{"_index":461,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AppModule.html":{},"modules/TransactionsModule.html":{},"dependencies.html":{}}}],["datatables.net",{"_index":3563,"title":{},"body":{"dependencies.html":{}}}],["datatablesmodule",{"_index":459,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AppModule.html":{},"modules/TransactionsModule.html":{}}}],["date",{"_index":427,"title":{},"body":{"components/AccountsComponent.html":{},"components/SettingsComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"license.html":{}}}],["date.now",{"_index":50,"title":{},"body":{"interfaces/AccountDetails.html":{},"interceptors/LoggingInterceptor.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["date_registered",{"_index":13,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["dateregistered",{"_index":3475,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["dawa",{"_index":2272,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["daycare",{"_index":1884,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["days",{"_index":4236,"title":{},"body":{"license.html":{}}}],["debug",{"_index":1541,"title":{},"body":{"injectables/LoggingService.html":{}}}],["december",{"_index":4005,"title":{},"body":{"license.html":{}}}],["decide",{"_index":4376,"title":{},"body":{"license.html":{}}}],["decimals",{"_index":2436,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"miscellaneous/variables.html":{}}}],["declarations",{"_index":435,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{},"overview.html":{}}}],["declining",{"_index":4198,"title":{},"body":{"license.html":{}}}],["decorators",{"_index":381,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/ErrorDialogComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["deemed",{"_index":3994,"title":{},"body":{"license.html":{}}}],["default",{"_index":228,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/MockBackendInterceptor.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"injectables/RegistryService.html":{},"directives/RouterLinkDirectiveStub.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"classes/UserServiceStub.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["defaultaccount",{"_index":49,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"injectables/TransactionService.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["defaultpagesize",{"_index":346,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionsComponent.html":{}}}],["defaults",{"_index":3618,"title":{},"body":{"miscellaneous/functions.html":{}}}],["defective",{"_index":4389,"title":{},"body":{"license.html":{}}}],["defenses",{"_index":4347,"title":{},"body":{"license.html":{}}}],["define",{"_index":1020,"title":{},"body":{"injectables/AuthService.html":{}}}],["defined",{"_index":86,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"classes/W3.html":{},"miscellaneous/functions.html":{},"license.html":{}}}],["defines",{"_index":1248,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{}}}],["defining",{"_index":4512,"title":{},"body":{"miscellaneous/variables.html":{}}}],["definition",{"_index":3945,"title":{},"body":{"license.html":{}}}],["definitions",{"_index":3841,"title":{},"body":{"license.html":{}}}],["delay",{"_index":1587,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["delayed",{"_index":2468,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["delimiter",{"_index":3610,"title":{},"body":{"miscellaneous/functions.html":{}}}],["dematerialize",{"_index":1588,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["demo",{"_index":1903,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["denied",{"_index":4159,"title":{},"body":{"license.html":{}}}],["denominated",{"_index":4306,"title":{},"body":{"license.html":{}}}],["denote",{"_index":1437,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["deny",{"_index":3793,"title":{},"body":{"license.html":{}}}],["denying",{"_index":3756,"title":{},"body":{"license.html":{}}}],["dependencies",{"_index":434,"title":{"dependencies.html":{}},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{},"dependencies.html":{},"overview.html":{}}}],["depending",{"_index":127,"title":{},"body":{"classes/AccountIndex.html":{},"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["deployed",{"_index":90,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["deprive",{"_index":4315,"title":{},"body":{"license.html":{}}}],["dera",{"_index":2331,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dereva",{"_index":2382,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["description",{"_index":64,"title":{},"body":{"classes/AccountIndex.html":{},"classes/ActivatedRouteStub.html":{},"guards/AuthGuard.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"classes/TokenRegistry.html":{},"miscellaneous/functions.html":{}}}],["design",{"_index":2002,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["designated",{"_index":4090,"title":{},"body":{"license.html":{}}}],["designed",{"_index":3724,"title":{},"body":{"license.html":{}}}],["destination",{"_index":3222,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["destinationtoken",{"_index":1186,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["detached",{"_index":2685,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["detail",{"_index":1139,"title":{},"body":{"injectables/BlockSyncService.html":{},"license.html":{}}}],["details",{"_index":623,"title":{},"body":{"components/AdminComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{},"license.html":{}}}],["details'},{'name",{"_index":292,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["details.component",{"_index":458,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsModule.html":{}}}],["details.component.html",{"_index":3011,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{}}}],["details.component.scss",{"_index":3010,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{}}}],["details.component.ts",{"_index":3009,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{},"coverage.html":{}}}],["details.component.ts:14",{"_index":3015,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["details.component.ts:15",{"_index":3165,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:16",{"_index":3174,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:17",{"_index":3173,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:18",{"_index":3164,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:26",{"_index":3168,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:27",{"_index":3016,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["details.component.ts:35",{"_index":3171,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:39",{"_index":3170,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:43",{"_index":3172,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:47",{"_index":3169,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:56",{"_index":3167,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.the",{"_index":4449,"title":{},"body":{"license.html":{}}}],["details/account",{"_index":457,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"coverage.html":{}}}],["details/token",{"_index":3008,"title":{},"body":{"components/TokenDetailsComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"coverage.html":{}}}],["details/transaction",{"_index":3153,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"modules/TransactionsModule.html":{},"coverage.html":{}}}],["detergent",{"_index":2329,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["detergents",{"_index":2330,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["determining",{"_index":4125,"title":{},"body":{"license.html":{}}}],["dev",{"_index":3652,"title":{},"body":{"index.html":{}}}],["develop",{"_index":4423,"title":{},"body":{"license.html":{}}}],["developers",{"_index":3771,"title":{},"body":{"license.html":{}}}],["development",{"_index":3650,"title":{},"body":{"index.html":{},"license.html":{}}}],["devices",{"_index":3792,"title":{},"body":{"license.html":{}}}],["dgst",{"_index":2750,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["dhobi",{"_index":2000,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dialog",{"_index":1310,"title":{},"body":{"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{}}}],["dialog'},{'name",{"_index":306,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["dialog.component",{"_index":1335,"title":{},"body":{"injectables/ErrorDialogService.html":{},"modules/SharedModule.html":{}}}],["dialog.component.html",{"_index":1312,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["dialog.component.scss",{"_index":1311,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["dialog.component.ts",{"_index":1309,"title":{},"body":{"components/ErrorDialogComponent.html":{},"coverage.html":{}}}],["dialog.component.ts:10",{"_index":1314,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["dialog.component.ts:12",{"_index":1316,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["dialog.service",{"_index":938,"title":{},"body":{"injectables/AuthService.html":{}}}],["dialog.service.ts",{"_index":1324,"title":{},"body":{"injectables/ErrorDialogService.html":{},"coverage.html":{}}}],["dialog.service.ts:12",{"_index":1332,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["dialog.service.ts:15",{"_index":1331,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["dialog.service.ts:9",{"_index":1329,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["dialog/error",{"_index":1308,"title":{},"body":{"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"modules/SharedModule.html":{},"coverage.html":{}}}],["dialogref",{"_index":1337,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["dialogref.afterclosed().subscribe",{"_index":1340,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["diani",{"_index":1800,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dictates",{"_index":838,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["diesel",{"_index":2426,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["differ",{"_index":4367,"title":{},"body":{"license.html":{}}}],["different",{"_index":1416,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"license.html":{}}}],["differently",{"_index":4185,"title":{},"body":{"license.html":{}}}],["digest",{"_index":43,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signer.html":{}}}],["direction",{"_index":3980,"title":{},"body":{"license.html":{}}}],["directions",{"_index":4096,"title":{},"body":{"license.html":{}}}],["directive",{"_index":288,"title":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["directives",{"_index":330,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"overview.html":{}}}],["directive|pipe|service|class|guard|interface|enum|module",{"_index":3661,"title":{},"body":{"index.html":{}}}],["directly",{"_index":3870,"title":{},"body":{"license.html":{}}}],["directory",{"_index":1239,"title":{},"body":{"components/CreateAccountComponent.html":{},"index.html":{}}}],["directoryentry",{"_index":1223,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["disableconsolelogging",{"_index":761,"title":{},"body":{"modules/AppModule.html":{}}}],["disapprove",{"_index":621,"title":{},"body":{"components/AdminComponent.html":{}}}],["disapproveaction",{"_index":557,"title":{},"body":{"components/AdminComponent.html":{}}}],["disapproveaction(action",{"_index":565,"title":{},"body":{"components/AdminComponent.html":{}}}],["disburse",{"_index":1598,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["disbursement",{"_index":2728,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["disbursements",{"_index":2463,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["disclaim",{"_index":4016,"title":{},"body":{"license.html":{}}}],["disclaimer",{"_index":4379,"title":{},"body":{"license.html":{}}}],["disclaiming",{"_index":4182,"title":{},"body":{"license.html":{}}}],["discriminatory",{"_index":4332,"title":{},"body":{"license.html":{}}}],["dispatcher",{"_index":1585,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["dispensary",{"_index":2265,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["display",{"_index":4048,"title":{},"body":{"license.html":{}}}],["displayed",{"_index":4191,"title":{},"body":{"license.html":{}}}],["displayedcolumns",{"_index":347,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{}}}],["displaying",{"_index":1253,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["displays",{"_index":3892,"title":{},"body":{"license.html":{}}}],["dist",{"_index":3674,"title":{},"body":{"index.html":{}}}],["distinguishing",{"_index":4369,"title":{},"body":{"license.html":{}}}],["distribute",{"_index":3714,"title":{},"body":{"license.html":{}}}],["distributed",{"_index":4436,"title":{},"body":{"license.html":{}}}],["distributing",{"_index":4336,"title":{},"body":{"license.html":{}}}],["distribution",{"_index":3838,"title":{},"body":{"license.html":{}}}],["divone",{"_index":822,"title":{},"body":{"components/AuthComponent.html":{}}}],["divtwo",{"_index":824,"title":{},"body":{"components/AuthComponent.html":{}}}],["doctor",{"_index":2270,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["document",{"_index":3716,"title":{},"body":{"license.html":{}}}],["document.getelementbyid('content",{"_index":702,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{}}}],["document.getelementbyid('one",{"_index":823,"title":{},"body":{"components/AuthComponent.html":{}}}],["document.getelementbyid('one').style.display",{"_index":1024,"title":{},"body":{"injectables/AuthService.html":{}}}],["document.getelementbyid('sidebar",{"_index":700,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{}}}],["document.getelementbyid('sidebarcollapse",{"_index":704,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{}}}],["document.getelementbyid('state').innerhtml",{"_index":949,"title":{},"body":{"injectables/AuthService.html":{}}}],["document.getelementbyid('two",{"_index":825,"title":{},"body":{"components/AuthComponent.html":{}}}],["document.getelementbyid('two').style.display",{"_index":1025,"title":{},"body":{"injectables/AuthService.html":{}}}],["document.getelementbyid(this.iconid",{"_index":2847,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["document.getelementbyid(this.id",{"_index":2845,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["documentation",{"_index":3488,"title":{},"body":{"coverage.html":{}}}],["documented",{"_index":4168,"title":{},"body":{"license.html":{}}}],["doe",{"_index":3438,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["doesn\\'t",{"_index":1037,"title":{},"body":{"injectables/AuthService.html":{}}}],["dofilter",{"_index":351,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["dofilter(value",{"_index":359,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["doing",{"_index":2667,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["dom",{"_index":180,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["domains",{"_index":3812,"title":{},"body":{"license.html":{}}}],["domsanitizer",{"_index":2911,"title":{},"body":{"pipes/SafePipe.html":{}}}],["don't",{"_index":3669,"title":{},"body":{"index.html":{}}}],["donald",{"_index":3452,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["donholm",{"_index":1735,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["donhom",{"_index":1739,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["donor",{"_index":1934,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["donut",{"_index":2133,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["doti",{"_index":1655,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["double",{"_index":519,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["doubtful",{"_index":4126,"title":{},"body":{"license.html":{}}}],["dough",{"_index":2134,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["download",{"_index":3613,"title":{},"body":{"miscellaneous/functions.html":{}}}],["downloadcsv",{"_index":352,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["downloaded",{"_index":3616,"title":{},"body":{"miscellaneous/functions.html":{}}}],["downstream",{"_index":4259,"title":{},"body":{"license.html":{}}}],["driver",{"_index":2381,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dt",{"_index":3565,"title":{},"body":{"dependencies.html":{}}}],["duka",{"_index":2321,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["durable",{"_index":4072,"title":{},"body":{"license.html":{}}}],["duration",{"_index":3196,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["dwelling",{"_index":4124,"title":{},"body":{"license.html":{}}}],["dynamic",{"_index":3547,"title":{},"body":{"dependencies.html":{}}}],["dynamically",{"_index":3947,"title":{},"body":{"license.html":{}}}],["dzivani",{"_index":1657,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dzovuni",{"_index":1658,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dzugwe",{"_index":1656,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["e",{"_index":663,"title":{},"body":{"components/AppComponent.html":{},"injectables/AuthService.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"license.html":{}}}],["e.matches",{"_index":707,"title":{},"body":{"components/AppComponent.html":{}}}],["e2e",{"_index":3685,"title":{},"body":{"index.html":{}}}],["each",{"_index":3850,"title":{},"body":{"license.html":{}}}],["earlier",{"_index":3863,"title":{},"body":{"license.html":{}}}],["east",{"_index":1772,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["economics",{"_index":1017,"title":{},"body":{"injectables/AuthService.html":{},"components/FooterComponent.html":{},"license.html":{}}}],["education",{"_index":1867,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["educator",{"_index":1909,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["effect",{"_index":4412,"title":{},"body":{"license.html":{}}}],["effected",{"_index":4014,"title":{},"body":{"license.html":{}}}],["effective",{"_index":3995,"title":{},"body":{"license.html":{}}}],["effectively",{"_index":3830,"title":{},"body":{"license.html":{}}}],["efforts",{"_index":4273,"title":{},"body":{"license.html":{}}}],["egg",{"_index":2224,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["eimu",{"_index":1889,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["elapsedtime",{"_index":1505,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["elder",{"_index":1936,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["eldoret",{"_index":1851,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["electrian",{"_index":1989,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["electricals",{"_index":2316,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["electrician",{"_index":2079,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["electronic",{"_index":4441,"title":{},"body":{"license.html":{}}}],["electronics",{"_index":2076,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["element",{"_index":287,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["element.style.display",{"_index":830,"title":{},"body":{"components/AuthComponent.html":{}}}],["elementref",{"_index":1555,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["elim",{"_index":1888,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["email",{"_index":32,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"components/SettingsComponent.html":{},"interfaces/Signature.html":{},"interfaces/Staff.html":{},"miscellaneous/variables.html":{}}}],["embakasi",{"_index":1770,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["embakassi",{"_index":1769,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["embodied",{"_index":4067,"title":{},"body":{"license.html":{}}}],["emergency",{"_index":2292,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["employer",{"_index":4455,"title":{},"body":{"license.html":{}}}],["enable",{"_index":3927,"title":{},"body":{"license.html":{}}}],["enables",{"_index":3886,"title":{},"body":{"license.html":{}}}],["end",{"_index":3684,"title":{},"body":{"index.html":{},"license.html":{}}}],["endpoint",{"_index":681,"title":{},"body":{"components/AppComponent.html":{}}}],["enforce",{"_index":4307,"title":{},"body":{"license.html":{}}}],["enforcing",{"_index":4018,"title":{},"body":{"license.html":{}}}],["engine",{"_index":44,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"classes/PGPSigner.html":{},"classes/Settings.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signer.html":{},"classes/W3.html":{}}}],["engineer",{"_index":2036,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["enroller",{"_index":1597,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["ensure",{"_index":2473,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["enter",{"_index":833,"title":{},"body":{"components/AuthComponent.html":{}}}],["entered",{"_index":4341,"title":{},"body":{"license.html":{}}}],["entire",{"_index":4039,"title":{},"body":{"license.html":{}}}],["entirely",{"_index":4358,"title":{},"body":{"license.html":{}}}],["entity",{"_index":4263,"title":{},"body":{"license.html":{}}}],["entry",{"_index":1240,"title":{},"body":{"components/CreateAccountComponent.html":{},"classes/TokenRegistry.html":{}}}],["entry(2",{"_index":3058,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["entry(serial",{"_index":3054,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["env",{"_index":1512,"title":{},"body":{"injectables/LoggingService.html":{},"index.html":{}}}],["env.example",{"_index":3689,"title":{},"body":{"index.html":{}}}],["env.ts",{"_index":3667,"title":{},"body":{"index.html":{}}}],["envelope",{"_index":3266,"title":{},"body":{"injectables/TransactionService.html":{}}}],["envelope.fromjson(json.stringify(account)).unwrap().m.data",{"_index":3310,"title":{},"body":{"injectables/TransactionService.html":{}}}],["environment",{"_index":144,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AppModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"injectables/LocationService.html":{},"interceptors/MockBackendInterceptor.html":{},"injectables/RegistryService.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["environment.cicmetaurl",{"_index":955,"title":{},"body":{"injectables/AuthService.html":{}}}],["environment.loggingurl}/api/logs",{"_index":760,"title":{},"body":{"modules/AppModule.html":{}}}],["environment.loglevel",{"_index":756,"title":{},"body":{"modules/AppModule.html":{}}}],["environment.prod.ts",{"_index":3694,"title":{},"body":{"index.html":{}}}],["environment.registryaddress",{"_index":2866,"title":{},"body":{"injectables/RegistryService.html":{}}}],["environment.serverloglevel",{"_index":758,"title":{},"body":{"modules/AppModule.html":{}}}],["environment.ts",{"_index":3693,"title":{},"body":{"index.html":{}}}],["environment.web3provider",{"_index":1106,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["equivalent",{"_index":3970,"title":{},"body":{"license.html":{}}}],["err",{"_index":1041,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/ErrorInterceptor.html":{}}}],["err.error",{"_index":1358,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["err.error.message",{"_index":1363,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["err.message",{"_index":1043,"title":{},"body":{"injectables/AuthService.html":{}}}],["err.status",{"_index":1373,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["err.statustext",{"_index":1044,"title":{},"body":{"injectables/AuthService.html":{}}}],["erroneously",{"_index":3791,"title":{},"body":{"license.html":{}}}],["error",{"_index":305,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"interceptors/MockBackendInterceptor.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["error's",{"_index":1441,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["error('login",{"_index":968,"title":{},"body":{"injectables/AuthService.html":{}}}],["error('the",{"_index":1031,"title":{},"body":{"injectables/AuthService.html":{}}}],["error(`${res.statustext",{"_index":1055,"title":{},"body":{"injectables/AuthService.html":{}}}],["error(message",{"_index":1451,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["error.message",{"_index":1449,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["error.stack",{"_index":1453,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["error.status",{"_index":1008,"title":{},"body":{"injectables/AuthService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["error.tostring",{"_index":1450,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["errordialogcomponent",{"_index":304,"title":{"components/ErrorDialogComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["errordialogservice",{"_index":652,"title":{"injectables/ErrorDialogService.html":{}},"body":{"components/AppComponent.html":{},"injectables/AuthService.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"coverage.html":{}}}],["errorevent",{"_index":1359,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["errorhandler",{"_index":737,"title":{},"body":{"modules/AppModule.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["errorinterceptor",{"_index":729,"title":{"interceptors/ErrorInterceptor.html":{}},"body":{"modules/AppModule.html":{},"interceptors/ErrorInterceptor.html":{},"coverage.html":{},"overview.html":{}}}],["errormessage",{"_index":1357,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["errors",{"_index":1286,"title":{},"body":{"classes/CustomValidator.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["errorstatematcher",{"_index":1255,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["errortracestring",{"_index":1425,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["errortracestring.includes('/src/app",{"_index":1457,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["errortracestring.includes(whitelistsentence",{"_index":1459,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["essential",{"_index":3930,"title":{},"body":{"license.html":{}}}],["establish",{"_index":150,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["eth",{"_index":2742,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["ethereum",{"_index":3477,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["ethers",{"_index":3271,"title":{},"body":{"injectables/TransactionService.html":{},"dependencies.html":{}}}],["ethiopia",{"_index":2743,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["even",{"_index":2474,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["event",{"_index":655,"title":{},"body":{"components/AppComponent.html":{},"interceptors/LoggingInterceptor.html":{},"license.html":{}}}],["event.detail.tx",{"_index":716,"title":{},"body":{"components/AppComponent.html":{}}}],["eventemitter",{"_index":3076,"title":{},"body":{"injectables/TokenService.html":{}}}],["everyone",{"_index":3712,"title":{},"body":{"license.html":{}}}],["evm",{"_index":24,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["exact",{"_index":3860,"title":{},"body":{"license.html":{}}}],["example",{"_index":74,"title":{},"body":{"classes/AccountIndex.html":{},"guards/AuthGuard.html":{},"classes/CustomErrorStateMatcher.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/MutablePgpKeyStore.html":{},"guards/RoleGuard.html":{},"classes/TokenRegistry.html":{},"miscellaneous/functions.html":{},"license.html":{}}}],["except",{"_index":3875,"title":{},"body":{"license.html":{}}}],["exception",{"_index":1401,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["exceptions",{"_index":4172,"title":{},"body":{"license.html":{}}}],["exchange",{"_index":3198,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["excluded",{"_index":4113,"title":{},"body":{"license.html":{}}}],["excluding",{"_index":4345,"title":{},"body":{"license.html":{}}}],["exclusion",{"_index":4432,"title":{},"body":{"license.html":{}}}],["exclusive",{"_index":4297,"title":{},"body":{"license.html":{}}}],["exclusively",{"_index":3975,"title":{},"body":{"license.html":{}}}],["excuse",{"_index":4351,"title":{},"body":{"license.html":{}}}],["executable",{"_index":3918,"title":{},"body":{"license.html":{}}}],["execute",{"_index":3682,"title":{},"body":{"index.html":{},"license.html":{}}}],["executing",{"_index":3876,"title":{},"body":{"license.html":{}}}],["exercise",{"_index":4274,"title":{},"body":{"license.html":{}}}],["exercising",{"_index":4015,"title":{},"body":{"license.html":{}}}],["existing",{"_index":1269,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["expand",{"_index":576,"title":{},"body":{"components/AdminComponent.html":{}}}],["expandcollapse",{"_index":558,"title":{},"body":{"components/AdminComponent.html":{}}}],["expandcollapse(row",{"_index":569,"title":{},"body":{"components/AdminComponent.html":{}}}],["expected",{"_index":4134,"title":{},"body":{"license.html":{}}}],["expects",{"_index":4133,"title":{},"body":{"license.html":{}}}],["expert",{"_index":1904,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["explains",{"_index":3782,"title":{},"body":{"license.html":{}}}],["explicitly",{"_index":3963,"title":{},"body":{"license.html":{}}}],["export",{"_index":56,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"classes/W3.html":{}}}],["exportcsv",{"_index":390,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"miscellaneous/functions.html":{}}}],["exportcsv(arraydata",{"_index":3608,"title":{},"body":{"miscellaneous/functions.html":{}}}],["exportcsv(this.accounts",{"_index":420,"title":{},"body":{"components/AccountsComponent.html":{}}}],["exportcsv(this.actions",{"_index":616,"title":{},"body":{"components/AdminComponent.html":{}}}],["exportcsv(this.tokens",{"_index":3123,"title":{},"body":{"components/TokensComponent.html":{}}}],["exportcsv(this.transactions",{"_index":3405,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["exportcsv(this.trustedusers",{"_index":2945,"title":{},"body":{"components/SettingsComponent.html":{}}}],["exports",{"_index":438,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"interceptors/MockBackendInterceptor.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"miscellaneous/functions.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["express",{"_index":4303,"title":{},"body":{"license.html":{}}}],["expressed",{"_index":4381,"title":{},"body":{"license.html":{}}}],["expression",{"_index":1296,"title":{},"body":{"classes/CustomValidator.html":{}}}],["expressly",{"_index":4220,"title":{},"body":{"license.html":{}}}],["extend",{"_index":3815,"title":{},"body":{"license.html":{}}}],["extended",{"_index":4331,"title":{},"body":{"license.html":{}}}],["extends",{"_index":1403,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["extensions",{"_index":4052,"title":{},"body":{"license.html":{}}}],["extent",{"_index":3894,"title":{},"body":{"license.html":{}}}],["external",{"_index":3480,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["eye",{"_index":2852,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["f",{"_index":4203,"title":{},"body":{"license.html":{}}}],["facilitator",{"_index":1920,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["facilities",{"_index":3976,"title":{},"body":{"license.html":{}}}],["facing",{"_index":1385,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["fagio",{"_index":1953,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["failed",{"_index":997,"title":{},"body":{"injectables/AuthService.html":{},"classes/CustomValidator.html":{},"interceptors/LoggingInterceptor.html":{}}}],["failedpinattempts",{"_index":3443,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["fails",{"_index":4233,"title":{},"body":{"license.html":{}}}],["failure",{"_index":4406,"title":{},"body":{"license.html":{}}}],["fair",{"_index":3969,"title":{},"body":{"license.html":{}}}],["faith",{"_index":1923,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["false",{"_index":123,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"modules/AppModule.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"components/CreateAccountComponent.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"guards/RoleGuard.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["family",{"_index":4119,"title":{},"body":{"license.html":{}}}],["family/surname",{"_index":1238,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["farm",{"_index":1971,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["farmer",{"_index":1972,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["farming",{"_index":1970,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fashion",{"_index":3857,"title":{},"body":{"license.html":{}}}],["favor",{"_index":4128,"title":{},"body":{"license.html":{}}}],["feature",{"_index":3663,"title":{},"body":{"index.html":{},"license.html":{}}}],["fee",{"_index":3764,"title":{},"body":{"license.html":{}}}],["feels",{"_index":396,"title":{},"body":{"components/AccountsComponent.html":{}}}],["female",{"_index":2428,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["fetch",{"_index":146,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["fetch(environment.publickeysurl",{"_index":1051,"title":{},"body":{"injectables/AuthService.html":{}}}],["fetched",{"_index":3050,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["fetcher",{"_index":1063,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["fetcher(settings",{"_index":1076,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["fetching",{"_index":3621,"title":{},"body":{"miscellaneous/functions.html":{}}}],["fia",{"_index":3462,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["field",{"_index":474,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"classes/CustomValidator.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["file",{"_index":5,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"classes/W3.html":{},"coverage.html":{},"miscellaneous/functions.html":{},"index.html":{},"license.html":{}}}],["filegetter",{"_index":2856,"title":{},"body":{"injectables/RegistryService.html":{}}}],["filename",{"_index":3609,"title":{},"body":{"miscellaneous/functions.html":{}}}],["files",{"_index":3657,"title":{},"body":{"index.html":{},"license.html":{}}}],["filter",{"_index":423,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["filter_rounds",{"_index":1146,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["filteraccounts",{"_index":353,"title":{},"body":{"components/AccountsComponent.html":{}}}],["filterrounds",{"_index":1170,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["filters",{"_index":1145,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["filtertransactions",{"_index":3371,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["finalize",{"_index":1499,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["finally",{"_index":3293,"title":{},"body":{"injectables/TransactionService.html":{},"license.html":{}}}],["finance",{"_index":2299,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["find",{"_index":2653,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"license.html":{}}}],["fingerprint",{"_index":2753,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["fire",{"_index":2413,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["firewood",{"_index":2414,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["firm",{"_index":2104,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["first",{"_index":391,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"injectables/LocationService.html":{},"components/TokenDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"license.html":{}}}],["fish",{"_index":2143,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fitness",{"_index":4384,"title":{},"body":{"license.html":{}}}],["fix",{"_index":2802,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["fixed",{"_index":4071,"title":{},"body":{"license.html":{}}}],["flag",{"_index":2779,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["flow",{"_index":3953,"title":{},"body":{"license.html":{}}}],["flowers",{"_index":2356,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fn",{"_index":34,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["follow",{"_index":3840,"title":{},"body":{"license.html":{}}}],["following",{"_index":4301,"title":{},"body":{"license.html":{}}}],["foo",{"_index":2446,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["food",{"_index":2106,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["footballer",{"_index":2056,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["footer",{"_index":1388,"title":{},"body":{"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/SidebarStubComponent.html":{},"components/TopbarStubComponent.html":{}}}],["footer'},{'name",{"_index":308,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["footer.component.html",{"_index":1390,"title":{},"body":{"components/FooterComponent.html":{}}}],["footer.component.scss",{"_index":1389,"title":{},"body":{"components/FooterComponent.html":{}}}],["footercomponent",{"_index":307,"title":{"components/FooterComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["footerstubcomponent",{"_index":309,"title":{"components/FooterStubComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["forbid",{"_index":4013,"title":{},"body":{"license.html":{}}}],["forbidden",{"_index":1381,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["force",{"_index":3972,"title":{},"body":{"license.html":{}}}],["form",{"_index":1249,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"license.html":{}}}],["form.submitted",{"_index":1271,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["format",{"_index":3612,"title":{},"body":{"miscellaneous/functions.html":{},"license.html":{}}}],["formbuilder",{"_index":216,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["formcontrol",{"_index":1258,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["formgroup",{"_index":225,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"components/OrganizationComponent.html":{}}}],["formgroupdirective",{"_index":1259,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["forms",{"_index":4063,"title":{},"body":{"license.html":{}}}],["forward",{"_index":2480,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["found",{"_index":276,"title":{},"body":{"components/AccountSearchComponent.html":{},"index.html":{},"license.html":{}}}],["foundation",{"_index":3709,"title":{},"body":{"license.html":{}}}],["free",{"_index":3707,"title":{},"body":{"license.html":{}}}],["freedom",{"_index":3727,"title":{},"body":{"license.html":{}}}],["freedoms",{"_index":3767,"title":{},"body":{"license.html":{}}}],["freelance",{"_index":2074,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fromhex",{"_index":3273,"title":{},"body":{"injectables/TransactionService.html":{}}}],["fromhex(methodsignature",{"_index":3326,"title":{},"body":{"injectables/TransactionService.html":{}}}],["fromhex(strip0x(transferauthaddress",{"_index":3337,"title":{},"body":{"injectables/TransactionService.html":{}}}],["fromvalue",{"_index":1187,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["fruit",{"_index":2141,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fruits",{"_index":2142,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fua",{"_index":2025,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fuata",{"_index":1766,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fuel",{"_index":2407,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fuel/energy",{"_index":2399,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fulfilling",{"_index":3998,"title":{},"body":{"license.html":{}}}],["full",{"_index":503,"title":{},"body":{"modules/AccountsRoutingModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsRoutingModule.html":{},"license.html":{}}}],["function",{"_index":2484,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/PGPSigner.html":{},"coverage.html":{}}}],["functioning",{"_index":4145,"title":{},"body":{"license.html":{}}}],["functions",{"_index":2513,"title":{"miscellaneous/functions.html":{}},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/functions.html":{}}}],["fundamentally",{"_index":3797,"title":{},"body":{"license.html":{}}}],["fundi",{"_index":2004,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["furniture",{"_index":2365,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["further",{"_index":3695,"title":{},"body":{"index.html":{},"license.html":{}}}],["future",{"_index":3817,"title":{},"body":{"license.html":{}}}],["g",{"_index":3648,"title":{},"body":{"index.html":{}}}],["g.e",{"_index":1821,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gandini",{"_index":1673,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["garage",{"_index":2042,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["garbage",{"_index":1952,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gardener",{"_index":1958,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gari",{"_index":2396,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gas",{"_index":2418,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gatina",{"_index":1747,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ge",{"_index":1822,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gender",{"_index":14,"title":{},"body":{"interfaces/AccountDetails.html":{},"components/CreateAccountComponent.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["genders",{"_index":1205,"title":{},"body":{"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["general",{"_index":1467,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"license.html":{}}}],["generalized",{"_index":1439,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["generally",{"_index":3943,"title":{},"body":{"license.html":{}}}],["generate",{"_index":3660,"title":{},"body":{"index.html":{},"license.html":{}}}],["generated",{"_index":3643,"title":{},"body":{"index.html":{}}}],["ger",{"_index":2744,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["germany",{"_index":2745,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["getaccountinfo",{"_index":3232,"title":{},"body":{"injectables/TransactionService.html":{}}}],["getaccountinfo(account",{"_index":3243,"title":{},"body":{"injectables/TransactionService.html":{}}}],["getaccounttypes",{"_index":2487,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["getactionbyid",{"_index":2491,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{}}}],["getactionbyid(id",{"_index":3468,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["getactions",{"_index":2489,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["getaddresssearchformstub",{"_index":242,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["getaddresstransactions",{"_index":3233,"title":{},"body":{"injectables/TransactionService.html":{}}}],["getaddresstransactions(address",{"_index":3245,"title":{},"body":{"injectables/TransactionService.html":{}}}],["getalltransactions",{"_index":3234,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["getalltransactions(offset",{"_index":3247,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["getareanamebylocation",{"_index":1480,"title":{},"body":{"injectables/LocationService.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["getareanamebylocation(location",{"_index":1485,"title":{},"body":{"injectables/LocationService.html":{}}}],["getareanames",{"_index":1481,"title":{},"body":{"injectables/LocationService.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["getareatypebyarea",{"_index":1482,"title":{},"body":{"injectables/LocationService.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["getareatypebyarea(area",{"_index":1488,"title":{},"body":{"injectables/LocationService.html":{}}}],["getareatypes",{"_index":1483,"title":{},"body":{"injectables/LocationService.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["getbysymbol",{"_index":3097,"title":{},"body":{"classes/TokenServiceStub.html":{}}}],["getbysymbol(symbol",{"_index":3098,"title":{},"body":{"classes/TokenServiceStub.html":{}}}],["getcategories",{"_index":2498,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["getcategorybyproduct",{"_index":2500,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["getchallenge",{"_index":894,"title":{},"body":{"injectables/AuthService.html":{}}}],["getcreateformstub",{"_index":1217,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["getencryptkeys",{"_index":2570,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getfingerprint",{"_index":2571,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getgenders",{"_index":2502,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["getkeyformstub",{"_index":797,"title":{},"body":{"components/AuthComponent.html":{}}}],["getkeyid",{"_index":2572,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getkeyid(key",{"_index":2595,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getkeysforid",{"_index":2573,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getkeysforid(keyid",{"_index":2597,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getnamesearchformstub",{"_index":238,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["getorganizationformstub",{"_index":2725,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["getphonesearchformstub",{"_index":240,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["getprivatekey",{"_index":895,"title":{},"body":{"injectables/AuthService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getprivatekeyforid",{"_index":2574,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getprivatekeyforid(keyid",{"_index":2601,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getprivatekeyid",{"_index":2575,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getprivatekeys",{"_index":2576,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeyforid",{"_index":2577,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeyforid(keyid",{"_index":2605,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeyforsubkeyid",{"_index":2578,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeyforsubkeyid(subkeyid",{"_index":2607,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeys",{"_index":896,"title":{},"body":{"injectables/AuthService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeysforaddress",{"_index":2579,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeysforaddress(address",{"_index":2611,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getregistry",{"_index":2857,"title":{},"body":{"injectables/RegistryService.html":{}}}],["getter.ts",{"_index":3505,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["getting",{"_index":3638,"title":{"index.html":{},"license.html":{}},"body":{}}],["gettokenbalance",{"_index":3069,"title":{},"body":{"injectables/TokenService.html":{}}}],["gettokenbalance(address",{"_index":3071,"title":{},"body":{"injectables/TokenService.html":{}}}],["gettokenbysymbol",{"_index":2506,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"injectables/TokenService.html":{}}}],["gettokenbysymbol(symbol",{"_index":3073,"title":{},"body":{"injectables/TokenService.html":{}}}],["gettokens",{"_index":2504,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"injectables/TokenService.html":{}}}],["gettransactiontypes",{"_index":2508,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["gettrustedactivekeys",{"_index":2580,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["gettrustedkeys",{"_index":2581,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["gettrustedusers",{"_index":897,"title":{},"body":{"injectables/AuthService.html":{}}}],["getuser",{"_index":3434,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["getuser(userkey",{"_index":3470,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["getuserbyid",{"_index":3435,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["getuserbyid(id",{"_index":3473,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["getweb3",{"_index":2858,"title":{},"body":{"injectables/RegistryService.html":{}}}],["getwithtoken",{"_index":898,"title":{},"body":{"injectables/AuthService.html":{}}}],["giftable",{"_index":2430,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["githeri",{"_index":2144,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["githurai",{"_index":1773,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["give",{"_index":4032,"title":{},"body":{"license.html":{}}}],["given",{"_index":1235,"title":{},"body":{"components/CreateAccountComponent.html":{},"classes/CustomValidator.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"classes/TokenRegistry.html":{},"license.html":{}}}],["givenname",{"_index":1221,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["gives",{"_index":4045,"title":{},"body":{"license.html":{}}}],["giving",{"_index":3776,"title":{},"body":{"license.html":{}}}],["global",{"_index":1411,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["globalerrorhandler",{"_index":730,"title":{"injectables/GlobalErrorHandler.html":{}},"body":{"modules/AppModule.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"coverage.html":{},"overview.html":{}}}],["gnu",{"_index":3701,"title":{},"body":{"license.html":{}}}],["go",{"_index":818,"title":{},"body":{"components/AuthComponent.html":{},"index.html":{}}}],["goats",{"_index":2149,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gona",{"_index":1671,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["good",{"_index":2228,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["governed",{"_index":4175,"title":{},"body":{"license.html":{}}}],["government",{"_index":1935,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gpl",{"_index":3772,"title":{},"body":{"license.html":{}}}],["grant",{"_index":4199,"title":{},"body":{"license.html":{}}}],["granted",{"_index":3958,"title":{},"body":{"license.html":{}}}],["grants",{"_index":4253,"title":{},"body":{"license.html":{}}}],["graph",{"_index":4467,"title":{},"body":{"modules.html":{}}}],["grassroots",{"_index":1016,"title":{},"body":{"injectables/AuthService.html":{},"components/FooterComponent.html":{},"license.html":{}}}],["gratis",{"_index":3763,"title":{},"body":{"license.html":{}}}],["greatest",{"_index":4424,"title":{},"body":{"license.html":{}}}],["grocer",{"_index":2146,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["groceries",{"_index":3450,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["grocery",{"_index":2145,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["groundnuts",{"_index":2135,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["group",{"_index":1595,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["grz",{"_index":2432,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["guarantee",{"_index":3730,"title":{},"body":{"license.html":{}}}],["guard",{"_index":834,"title":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}},"body":{"guards/AuthGuard.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["guards",{"_index":835,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"overview.html":{}}}],["gui",{"_index":4453,"title":{},"body":{"license.html":{}}}],["guitarist",{"_index":2090,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["guro",{"_index":1672,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hair",{"_index":2031,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["halt",{"_index":691,"title":{},"body":{"components/AppComponent.html":{}}}],["handle",{"_index":816,"title":{},"body":{"components/AuthComponent.html":{},"interceptors/ErrorInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["handled",{"_index":2511,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["handleerror",{"_index":1405,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handleerror(error",{"_index":1413,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["handler",{"_index":397,"title":{},"body":{"components/AccountsComponent.html":{},"injectables/AuthService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["handler.ts",{"_index":1398,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"coverage.html":{}}}],["handler.ts:109",{"_index":1430,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handler.ts:16",{"_index":1478,"title":{},"body":{"classes/HttpError.html":{}}}],["handler.ts:42",{"_index":1409,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handler.ts:62",{"_index":1414,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handler.ts:89",{"_index":1423,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handleroute",{"_index":2485,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["handlers",{"_index":2483,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["handles",{"_index":1415,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["handling",{"_index":1402,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["hanje",{"_index":1659,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["happened",{"_index":1470,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["hardware",{"_index":2328,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hash",{"_index":3210,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["hash.tostring('hex').substring(0",{"_index":3320,"title":{},"body":{"injectables/TransactionService.html":{}}}],["hashfunction",{"_index":3315,"title":{},"body":{"injectables/TransactionService.html":{}}}],["hashfunction.digest",{"_index":3318,"title":{},"body":{"injectables/TransactionService.html":{}}}],["hashfunction.update('createrequest(address,address,address,uint256",{"_index":3317,"title":{},"body":{"injectables/TransactionService.html":{}}}],["haveaccount",{"_index":81,"title":{},"body":{"classes/AccountIndex.html":{}}}],["haveaccount('0xc0ffee254729296a45a3885639ac7e10f9d54979'",{"_index":128,"title":{},"body":{"classes/AccountIndex.html":{}}}],["haveaccount('0xc0ffee254729296a45a3885639ac7e10f9d54979",{"_index":166,"title":{},"body":{"classes/AccountIndex.html":{}}}],["haveaccount(address",{"_index":117,"title":{},"body":{"classes/AccountIndex.html":{}}}],["having",{"_index":3974,"title":{},"body":{"license.html":{}}}],["hawinga",{"_index":1835,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hawker",{"_index":2006,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hawking",{"_index":2005,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hazina",{"_index":1618,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["headers",{"_index":2466,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["headmaster",{"_index":1908,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["headmistress",{"_index":1898,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["headteacher",{"_index":1899,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["health",{"_index":2263,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["heath",{"_index":2279,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["help",{"_index":2010,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["helper",{"_index":2557,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["hera",{"_index":3456,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["herbalist",{"_index":2274,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hereafter",{"_index":4293,"title":{},"body":{"license.html":{}}}],["hi",{"_index":1090,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["hidden",{"_index":594,"title":{},"body":{"components/AdminComponent.html":{}}}],["hoba",{"_index":982,"title":{},"body":{"injectables/AuthService.html":{}}}],["hobaparsechallengeheader",{"_index":931,"title":{},"body":{"injectables/AuthService.html":{}}}],["hobaparsechallengeheader(authheader",{"_index":993,"title":{},"body":{"injectables/AuthService.html":{}}}],["hobaresponseencoded",{"_index":922,"title":{},"body":{"injectables/AuthService.html":{}}}],["holder",{"_index":4227,"title":{},"body":{"license.html":{}}}],["holders",{"_index":4181,"title":{},"body":{"license.html":{}}}],["holel",{"_index":2137,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["homabay",{"_index":1839,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["homaboy",{"_index":1840,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["home",{"_index":281,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"modules/PagesRoutingModule.html":{},"components/SettingsComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["hook",{"_index":1399,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["hope",{"_index":4437,"title":{},"body":{"license.html":{}}}],["hospital",{"_index":2273,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hostlistener",{"_index":672,"title":{},"body":{"components/AppComponent.html":{},"directives/RouterLinkDirectiveStub.html":{}}}],["hostlistener('click",{"_index":2898,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["hostlistener('window:cic_convert",{"_index":718,"title":{},"body":{"components/AppComponent.html":{}}}],["hostlistener('window:cic_transfer",{"_index":714,"title":{},"body":{"components/AppComponent.html":{}}}],["hostlisteners",{"_index":646,"title":{},"body":{"components/AppComponent.html":{},"directives/RouterLinkDirectiveStub.html":{}}}],["hosts",{"_index":4098,"title":{},"body":{"license.html":{}}}],["hotel",{"_index":2136,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hoteli",{"_index":2138,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["house",{"_index":2009,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["housegirl",{"_index":2011,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["househelp",{"_index":2007,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["household",{"_index":4120,"title":{},"body":{"license.html":{}}}],["hsehelp",{"_index":2008,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["html",{"_index":286,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["htmlelement",{"_index":699,"title":{},"body":{"components/AppComponent.html":{},"components/AuthComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["http",{"_index":1440,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/functions.html":{}}}],["http://localhost:4200",{"_index":3654,"title":{},"body":{"index.html":{}}}],["http://localhost:8000",{"_index":4506,"title":{},"body":{"miscellaneous/variables.html":{}}}],["http://localhost:8000/keys.asc",{"_index":4507,"title":{},"body":{"miscellaneous/variables.html":{}}}],["http_interceptors",{"_index":742,"title":{},"body":{"modules/AppModule.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["httpclient",{"_index":906,"title":{},"body":{"injectables/AuthService.html":{},"injectables/LocationService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["httpclientmodule",{"_index":743,"title":{},"body":{"modules/AppModule.html":{}}}],["httpconfiginterceptor",{"_index":731,"title":{"interceptors/HttpConfigInterceptor.html":{}},"body":{"modules/AppModule.html":{},"interceptors/HttpConfigInterceptor.html":{},"coverage.html":{},"overview.html":{}}}],["httperror",{"_index":939,"title":{"classes/HttpError.html":{}},"body":{"injectables/AuthService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"coverage.html":{}}}],["httperror(xhr.statustext",{"_index":983,"title":{},"body":{"injectables/AuthService.html":{}}}],["httperrorresponse",{"_index":1353,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["httperrorresponse).status",{"_index":1463,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["httpevent",{"_index":1351,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["httpgetter",{"_index":2862,"title":{},"body":{"injectables/RegistryService.html":{},"coverage.html":{},"miscellaneous/functions.html":{}}}],["httphandler",{"_index":1348,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["httpinterceptor",{"_index":1352,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["httprequest",{"_index":1347,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["httpresponse",{"_index":1498,"title":{},"body":{"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["https://blockexplorer.bloxberg.org/address",{"_index":3178,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["https://cache.dev.grassrootseconomics.net",{"_index":4495,"title":{},"body":{"miscellaneous/variables.html":{}}}],["https://dashboard.sarafu.network",{"_index":2811,"title":{},"body":{"components/PagesComponent.html":{}}}],["https://dev.grassrootseconomics.net/.well",{"_index":4492,"title":{},"body":{"miscellaneous/variables.html":{}}}],["https://fsf.org",{"_index":3711,"title":{},"body":{"license.html":{}}}],["https://meta.dev.grassrootseconomics.net",{"_index":4490,"title":{},"body":{"miscellaneous/variables.html":{}}}],["https://ussd.dev.grassrootseconomics.net",{"_index":4500,"title":{},"body":{"miscellaneous/variables.html":{}}}],["https://www.gnu.org/licenses",{"_index":4439,"title":{},"body":{"license.html":{}}}],["https://www.gnu.org/licenses/why",{"_index":4463,"title":{},"body":{"license.html":{}}}],["huruma",{"_index":1740,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hustler",{"_index":2026,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hypothetical",{"_index":4450,"title":{},"body":{"license.html":{}}}],["icon",{"_index":2846,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["icon.classlist.add('fa",{"_index":2853,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["icon.classlist.remove('fa",{"_index":2851,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["iconid",{"_index":2840,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["id",{"_index":45,"title":{},"body":{"interfaces/AccountDetails.html":{},"modules/AccountsRoutingModule.html":{},"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"components/CreateAccountComponent.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"directives/PasswordToggleDirective.html":{},"components/SettingsComponent.html":{},"interfaces/Signature.html":{},"classes/TokenRegistry.html":{},"modules/TokensRoutingModule.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["identifiable",{"_index":4321,"title":{},"body":{"license.html":{}}}],["identifier",{"_index":3049,"title":{},"body":{"classes/TokenRegistry.html":{},"coverage.html":{}}}],["identities",{"_index":15,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["idfromurl",{"_index":2517,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["idnumber",{"_index":1220,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["iframes",{"_index":2813,"title":{},"body":{"components/PagesComponent.html":{}}}],["ignore",{"_index":2849,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["imam",{"_index":1925,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["immagration",{"_index":1947,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["immigration",{"_index":1948,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["implement",{"_index":3928,"title":{},"body":{"license.html":{}}}],["implementation",{"_index":837,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["implements",{"_index":185,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["implied",{"_index":4346,"title":{},"body":{"license.html":{}}}],["import",{"_index":140,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"license.html":{}}}],["import('@app/auth/auth.module').then(m",{"_index":769,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["import('@pages/accounts/accounts.module').then(m",{"_index":2831,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["import('@pages/admin/admin.module').then(m",{"_index":2835,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["import('@pages/pages.module').then(m",{"_index":771,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["import('@pages/settings/settings.module').then(m",{"_index":2829,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["import('@pages/tokens/tokens.module').then(m",{"_index":2833,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["import('@pages/transactions/transactions.module').then(m",{"_index":2827,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["imported",{"_index":2657,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["imported.keys",{"_index":2659,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["importing",{"_index":4285,"title":{},"body":{"license.html":{}}}],["importkeypair",{"_index":2582,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["importkeypair(publickey",{"_index":2615,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["importprivatekey",{"_index":2583,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["importprivatekey(privatekey",{"_index":2618,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["importpublickey",{"_index":2584,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["importpublickey(publickey",{"_index":2620,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["imports",{"_index":143,"title":{},"body":{"classes/AccountIndex.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"guards/RoleGuard.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"classes/TokenRegistry.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{}}}],["impose",{"_index":4208,"title":{},"body":{"license.html":{}}}],["imposed",{"_index":4348,"title":{},"body":{"license.html":{}}}],["inability",{"_index":4400,"title":{},"body":{"license.html":{}}}],["inaccurate",{"_index":4403,"title":{},"body":{"license.html":{}}}],["inc",{"_index":3710,"title":{},"body":{"license.html":{}}}],["incidental",{"_index":4397,"title":{},"body":{"license.html":{}}}],["include",{"_index":3919,"title":{},"body":{"license.html":{}}}],["included",{"_index":3921,"title":{},"body":{"license.html":{}}}],["includes",{"_index":3880,"title":{},"body":{"license.html":{}}}],["including",{"_index":3939,"title":{},"body":{"license.html":{}}}],["inclusion",{"_index":4061,"title":{},"body":{"license.html":{}}}],["inclusive",{"_index":3022,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["income",{"_index":3027,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["incompatible",{"_index":3798,"title":{},"body":{"license.html":{}}}],["incorporating",{"_index":4456,"title":{},"body":{"license.html":{}}}],["incorporation",{"_index":4123,"title":{},"body":{"license.html":{}}}],["incorrect",{"_index":1021,"title":{},"body":{"injectables/AuthService.html":{}}}],["indemnification",{"_index":4204,"title":{},"body":{"license.html":{}}}],["independent",{"_index":4050,"title":{},"body":{"license.html":{}}}],["index",{"_index":7,"title":{"index.html":{}},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"classes/W3.html":{},"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}}}],["indicate",{"_index":4256,"title":{},"body":{"license.html":{}}}],["indicating",{"_index":4218,"title":{},"body":{"license.html":{}}}],["individual",{"_index":1267,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"license.html":{}}}],["individuals",{"_index":3804,"title":{},"body":{"license.html":{}}}],["industrial",{"_index":1749,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["info",{"_index":3,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"classes/W3.html":{}}}],["inform",{"_index":4106,"title":{},"body":{"license.html":{}}}],["information",{"_index":857,"title":{},"body":{"guards/AuthGuard.html":{},"interceptors/MockBackendInterceptor.html":{},"components/OrganizationComponent.html":{},"guards/RoleGuard.html":{},"classes/UserServiceStub.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["infringe",{"_index":4254,"title":{},"body":{"license.html":{}}}],["infringed",{"_index":4283,"title":{},"body":{"license.html":{}}}],["infringement",{"_index":3873,"title":{},"body":{"license.html":{}}}],["init",{"_index":899,"title":{},"body":{"injectables/AuthService.html":{}}}],["initialization",{"_index":1410,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["initialize",{"_index":1442,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["initialparams",{"_index":532,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["initiate",{"_index":4277,"title":{},"body":{"license.html":{}}}],["inject",{"_index":1317,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["inject(mat_dialog_data",{"_index":1315,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["injectable",{"_index":871,"title":{"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"injectables/LocationService.html":{},"injectables/LoggingService.html":{},"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}},"body":{"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"interceptors/MockBackendInterceptor.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"coverage.html":{}}}],["injectables",{"_index":889,"title":{},"body":{"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"injectables/LocationService.html":{},"injectables/LoggingService.html":{},"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"overview.html":{}}}],["input",{"_index":1262,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/TransactionDetailsComponent.html":{},"miscellaneous/functions.html":{}}}],["input('routerlink",{"_index":2896,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["inputs",{"_index":1278,"title":{},"body":{"classes/CustomValidator.html":{},"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/TransactionDetailsComponent.html":{}}}],["inside",{"_index":3794,"title":{},"body":{"license.html":{}}}],["install",{"_index":3647,"title":{},"body":{"index.html":{},"license.html":{}}}],["installation",{"_index":4140,"title":{},"body":{"license.html":{}}}],["installed",{"_index":4155,"title":{},"body":{"license.html":{}}}],["instance",{"_index":66,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["instanceof",{"_index":1007,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{}}}],["instantiates",{"_index":843,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["instead",{"_index":4462,"title":{},"body":{"license.html":{}}}],["instructor",{"_index":1894,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["insurance",{"_index":2063,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["intact",{"_index":4025,"title":{},"body":{"license.html":{}}}],["intended",{"_index":3729,"title":{},"body":{"license.html":{}}}],["intention",{"_index":4017,"title":{},"body":{"license.html":{}}}],["interaction",{"_index":3889,"title":{},"body":{"license.html":{}}}],["interactive",{"_index":3891,"title":{},"body":{"license.html":{}}}],["intercept",{"_index":1343,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["intercept(request",{"_index":1346,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["interceptor",{"_index":814,"title":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}},"body":{"components/AuthComponent.html":{},"coverage.html":{}}}],["interceptors",{"_index":1341,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["intercepts",{"_index":1577,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["interchange",{"_index":4074,"title":{},"body":{"license.html":{}}}],["interest",{"_index":4271,"title":{},"body":{"license.html":{}}}],["interface",{"_index":0,"title":{"interfaces/AccountDetails.html":{},"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/MutableKeyStore.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{}},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"injectables/AuthService.html":{},"interfaces/Category.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"classes/TokenRegistry.html":{},"coverage.html":{},"license.html":{}}}],["interfaces",{"_index":2,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/MutableKeyStore.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"license.html":{},"overview.html":{}}}],["interfered",{"_index":4147,"title":{},"body":{"license.html":{}}}],["intern",{"_index":1915,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["internal",{"_index":2482,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["internally",{"_index":1579,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["interpretation",{"_index":4410,"title":{},"body":{"license.html":{}}}],["interpreter",{"_index":3937,"title":{},"body":{"license.html":{}}}],["intimate",{"_index":3951,"title":{},"body":{"license.html":{}}}],["invalid",{"_index":1032,"title":{},"body":{"injectables/AuthService.html":{},"classes/CustomErrorStateMatcher.html":{}}}],["invalidate",{"_index":4046,"title":{},"body":{"license.html":{}}}],["irrevocable",{"_index":3960,"title":{},"body":{"license.html":{}}}],["isdevmode",{"_index":1538,"title":{},"body":{"injectables/LoggingService.html":{}}}],["isdialogopen",{"_index":1325,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["isencryptedkeycheck",{"_index":1035,"title":{},"body":{"injectables/AuthService.html":{}}}],["isencryptedprivatekey",{"_index":2585,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["isencryptedprivatekey(privatekey",{"_index":2622,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["iserrorstate",{"_index":1256,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["iserrorstate(control",{"_index":1257,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["issubmitted",{"_index":1270,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["isvalidkey",{"_index":2586,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["isvalidkey(key",{"_index":2624,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["isvalidkeycheck",{"_index":1029,"title":{},"body":{"injectables/AuthService.html":{}}}],["iswarning",{"_index":1406,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["iswarning(errortracestring",{"_index":1422,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["it's",{"_index":1426,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["item",{"_index":3906,"title":{},"body":{"license.html":{}}}],["items",{"_index":1581,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["itself",{"_index":4160,"title":{},"body":{"license.html":{}}}],["jack",{"_index":1609,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["jane",{"_index":3445,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["jembe",{"_index":1977,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["jewel",{"_index":2361,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["jik",{"_index":2305,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["jogoo",{"_index":1757,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["john",{"_index":3437,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["jomvu",{"_index":1797,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["journalist",{"_index":1895,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["jquery",{"_index":3567,"title":{},"body":{"dependencies.html":{}}}],["js",{"_index":3583,"title":{},"body":{"dependencies.html":{}}}],["json.parse(localstorage.getitem(atob('cicada_user",{"_index":2884,"title":{},"body":{"guards/RoleGuard.html":{}}}],["json.stringify(err.error",{"_index":1374,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["jua",{"_index":2016,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["juacali",{"_index":2015,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["juakali",{"_index":2013,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["jualikali",{"_index":2014,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["juice",{"_index":2260,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["juja",{"_index":1755,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["junda",{"_index":1812,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["june",{"_index":3703,"title":{},"body":{"license.html":{}}}],["kabete",{"_index":1738,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kabiro",{"_index":1768,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kafuduni",{"_index":1666,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kahawa",{"_index":2177,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kaimati",{"_index":2174,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kajiado",{"_index":1854,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kakamega",{"_index":1852,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kakuma",{"_index":1825,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kalalani",{"_index":1665,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kali",{"_index":2017,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kaloleni",{"_index":1667,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kamba",{"_index":2172,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kambi",{"_index":1616,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kamongo",{"_index":1627,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kangemi",{"_index":1730,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kanisa",{"_index":1932,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kariobangi",{"_index":1750,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["karma",{"_index":3683,"title":{},"body":{"index.html":{}}}],["kasarani",{"_index":1751,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kasemeni",{"_index":1660,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["katundani",{"_index":1661,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kawangware",{"_index":1733,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kayaba",{"_index":1614,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kayba",{"_index":1615,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kayole",{"_index":1752,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kazi",{"_index":2022,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ke",{"_index":2738,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["kebeba",{"_index":2369,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["keccak",{"_index":3268,"title":{},"body":{"injectables/TransactionService.html":{}}}],["keccak(256",{"_index":3316,"title":{},"body":{"injectables/TransactionService.html":{}}}],["keep",{"_index":4024,"title":{},"body":{"license.html":{}}}],["keki",{"_index":2178,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kenya",{"_index":2739,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["kenyatta",{"_index":1744,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kericho",{"_index":1853,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kernel",{"_index":3931,"title":{},"body":{"license.html":{}}}],["kerosene",{"_index":2425,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kerosine",{"_index":2424,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["key",{"_index":800,"title":{},"body":{"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"classes/CustomValidator.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["key.getkeyid().tohex",{"_index":2664,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["key.isdecrypted",{"_index":2660,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyform",{"_index":779,"title":{},"body":{"components/AuthComponent.html":{}}}],["keyformstub",{"_index":786,"title":{},"body":{"components/AuthComponent.html":{}}}],["keyid",{"_index":2599,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring",{"_index":2640,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["keyring.clear",{"_index":2677,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.getkeysforid(keyid",{"_index":2669,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.load",{"_index":2642,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys",{"_index":2648,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.getforid(keyid",{"_index":2671,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.importkey(privatekey",{"_index":2645,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.keys",{"_index":2647,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.keys[0",{"_index":2649,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.keys[0].getkeyid().tohex",{"_index":2668,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.keys[0].keypacket",{"_index":2662,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.keys[0].keypacket.fingerprint",{"_index":2663,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.publickeys.getforaddress(address",{"_index":2673,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.publickeys.getforid(keyid",{"_index":2670,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.publickeys.getforid(subkeyid",{"_index":2672,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.publickeys.importkey(publickey",{"_index":2644,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.publickeys.keys",{"_index":2646,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.publickeys.removeforid(keyid",{"_index":2675,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.removekeysforid(keyid",{"_index":2674,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.store",{"_index":2643,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keys",{"_index":679,"title":{},"body":{"components/AppComponent.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"license.html":{}}}],["keystore",{"_index":2568,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["khaimati",{"_index":2173,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kiambu",{"_index":1858,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibanda",{"_index":2311,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibandaogo",{"_index":1662,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibandaongo",{"_index":1663,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibera",{"_index":1724,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibira",{"_index":1725,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibra",{"_index":1726,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kidzuvini",{"_index":1664,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kikuyu",{"_index":1760,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kilfi",{"_index":1815,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kilibole",{"_index":1668,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kilifi",{"_index":52,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["kinango",{"_index":1636,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kind",{"_index":3885,"title":{},"body":{"license.html":{}}}],["kinds",{"_index":3720,"title":{},"body":{"license.html":{}}}],["kingston",{"_index":1624,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kingstone",{"_index":1626,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kinyozi",{"_index":2021,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kiosk",{"_index":2312,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kirembe",{"_index":1779,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kisauni",{"_index":1801,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kisii",{"_index":1847,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kisumu",{"_index":1833,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kitabu",{"_index":1922,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kitengela",{"_index":1741,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kitui",{"_index":1826,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kizingo",{"_index":1786,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kmoja",{"_index":1771,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["knitting",{"_index":2023,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["know",{"_index":3749,"title":{},"body":{"license.html":{}}}],["knowingly",{"_index":4310,"title":{},"body":{"license.html":{}}}],["knowledge",{"_index":4319,"title":{},"body":{"license.html":{}}}],["known/publickeys",{"_index":4493,"title":{},"body":{"miscellaneous/variables.html":{}}}],["kobo",{"_index":2948,"title":{},"body":{"components/SettingsComponent.html":{}}}],["kokotoni",{"_index":1719,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["korokocho",{"_index":1625,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["korosho",{"_index":2258,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kra",{"_index":1945,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["krcs",{"_index":1917,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kubeba",{"_index":2384,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kufua",{"_index":2024,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kujenga",{"_index":2020,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kuku",{"_index":2176,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kulima",{"_index":1974,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kunde",{"_index":2175,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kuni",{"_index":2405,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kushona",{"_index":2012,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kusumu",{"_index":1842,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kwale",{"_index":1637,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kwangware",{"_index":1734,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kware",{"_index":1767,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lab",{"_index":2285,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["labor",{"_index":2028,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["labour",{"_index":1979,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["landi",{"_index":1774,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["landlord",{"_index":2001,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["langata",{"_index":1775,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["language",{"_index":3915,"title":{},"body":{"license.html":{}}}],["larger",{"_index":4054,"title":{},"body":{"license.html":{}}}],["last",{"_index":82,"title":{},"body":{"classes/AccountIndex.html":{}}}],["last(5",{"_index":136,"title":{},"body":{"classes/AccountIndex.html":{}}}],["last(numberofaccounts",{"_index":129,"title":{},"body":{"classes/AccountIndex.html":{}}}],["later",{"_index":686,"title":{},"body":{"components/AppComponent.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"license.html":{}}}],["latitude",{"_index":27,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["laundry",{"_index":2029,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["law",{"_index":2103,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["laws",{"_index":3844,"title":{},"body":{"license.html":{}}}],["lawsuit",{"_index":4281,"title":{},"body":{"license.html":{}}}],["lazy",{"_index":3662,"title":{},"body":{"index.html":{}}}],["leader",{"_index":1944,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["leaving",{"_index":1033,"title":{},"body":{"injectables/AuthService.html":{}}}],["lecturer",{"_index":1881,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["legal",{"_index":3777,"title":{},"body":{"license.html":{}}}],["legend",{"_index":285,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"components/AuthComponent.html":{},"modules/AuthModule.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"overview.html":{}}}],["leso",{"_index":2319,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lesser",{"_index":4461,"title":{},"body":{"license.html":{}}}],["lesso",{"_index":2320,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lesson",{"_index":1896,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["level",{"_index":755,"title":{},"body":{"modules/AppModule.html":{}}}],["lgpl.html",{"_index":4464,"title":{},"body":{"license.html":{}}}],["liability",{"_index":4184,"title":{},"body":{"license.html":{}}}],["liable",{"_index":3872,"title":{},"body":{"license.html":{}}}],["libraries",{"_index":3917,"title":{},"body":{"license.html":{}}}],["library",{"_index":2665,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"license.html":{}}}],["license",{"_index":3700,"title":{"license.html":{}},"body":{"license.html":{}}}],["licensed",{"_index":3848,"title":{},"body":{"license.html":{}}}],["licensee",{"_index":3851,"title":{},"body":{"license.html":{}}}],["licensees",{"_index":3853,"title":{},"body":{"license.html":{}}}],["licenses",{"_index":3722,"title":{},"body":{"license.html":{}}}],["licensing",{"_index":4258,"title":{},"body":{"license.html":{}}}],["licensors",{"_index":4197,"title":{},"body":{"license.html":{}}}],["likewise",{"_index":4251,"title":{},"body":{"license.html":{}}}],["likoni",{"_index":1783,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["limit",{"_index":1073,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"license.html":{}}}],["limit).pipe(first()).subscribe(res",{"_index":1135,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["limitation",{"_index":4394,"title":{},"body":{"license.html":{}}}],["limited",{"_index":4382,"title":{},"body":{"license.html":{}}}],["limiting",{"_index":4183,"title":{},"body":{"license.html":{}}}],["limuru",{"_index":1776,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lindi",{"_index":1723,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["line",{"_index":4433,"title":{},"body":{"license.html":{}}}],["lines",{"_index":2310,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["link",{"_index":2892,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{},"coverage.html":{},"license.html":{}}}],["linked",{"_index":3948,"title":{},"body":{"license.html":{}}}],["linking",{"_index":4459,"title":{},"body":{"license.html":{}}}],["linkparams",{"_index":2897,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["list",{"_index":3902,"title":{},"body":{"license.html":{}}}],["literal",{"_index":23,"title":{},"body":{"interfaces/AccountDetails.html":{},"injectables/AuthService.html":{},"interfaces/Token.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}}}],["litigation",{"_index":4278,"title":{},"body":{"license.html":{}}}],["lo",{"_index":1089,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["load",{"_index":401,"title":{},"body":{"components/AccountsComponent.html":{},"components/AppComponent.html":{}}}],["loadchildren",{"_index":768,"title":{},"body":{"modules/AppRoutingModule.html":{},"modules/PagesRoutingModule.html":{}}}],["loaded",{"_index":859,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"index.html":{}}}],["loadevent",{"_index":3068,"title":{},"body":{"injectables/TokenService.html":{}}}],["loading",{"_index":780,"title":{},"body":{"components/AuthComponent.html":{},"index.html":{}}}],["loadkeyring",{"_index":2587,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["loan",{"_index":2295,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["local",{"_index":4411,"title":{},"body":{"license.html":{}}}],["localstorage",{"_index":870,"title":{},"body":{"guards/AuthGuard.html":{}}}],["localstorage.getitem(btoa('cicada_private_key",{"_index":876,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/AuthService.html":{}}}],["localstorage.setitem(btoa('cicada_private_key",{"_index":1040,"title":{},"body":{"injectables/AuthService.html":{}}}],["location",{"_index":16,"title":{},"body":{"interfaces/AccountDetails.html":{},"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{},"injectables/LocationService.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["locations",{"_index":511,"title":{},"body":{"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["locationservice",{"_index":1207,"title":{"injectables/LocationService.html":{}},"body":{"components/CreateAccountComponent.html":{},"injectables/LocationService.html":{},"coverage.html":{}}}],["log",{"_index":972,"title":{},"body":{"injectables/AuthService.html":{}}}],["logerror",{"_index":1407,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["logerror(error",{"_index":1429,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["logger",{"_index":750,"title":{},"body":{"modules/AppModule.html":{},"injectables/LoggingService.html":{},"dependencies.html":{}}}],["loggermodule",{"_index":748,"title":{},"body":{"modules/AppModule.html":{}}}],["loggermodule.forroot",{"_index":754,"title":{},"body":{"modules/AppModule.html":{}}}],["logging",{"_index":1412,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["logginginterceptor",{"_index":732,"title":{"interceptors/LoggingInterceptor.html":{}},"body":{"modules/AppModule.html":{},"interceptors/LoggingInterceptor.html":{},"coverage.html":{},"overview.html":{}}}],["loggingservice",{"_index":357,"title":{"injectables/LoggingService.html":{}},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"components/TokensComponent.html":{},"injectables/TransactionService.html":{},"coverage.html":{}}}],["loggingurl",{"_index":4488,"title":{},"body":{"miscellaneous/variables.html":{}}}],["login",{"_index":782,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{}}}],["loginresponse",{"_index":900,"title":{},"body":{"injectables/AuthService.html":{}}}],["loginresponse(o",{"_index":915,"title":{},"body":{"injectables/AuthService.html":{}}}],["loginview",{"_index":901,"title":{},"body":{"injectables/AuthService.html":{}}}],["loglevel",{"_index":4485,"title":{},"body":{"miscellaneous/variables.html":{}}}],["logout",{"_index":902,"title":{},"body":{"injectables/AuthService.html":{},"components/SettingsComponent.html":{}}}],["logs",{"_index":1433,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["long",{"_index":3971,"title":{},"body":{"license.html":{}}}],["longitude",{"_index":28,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["loss",{"_index":4401,"title":{},"body":{"license.html":{}}}],["losses",{"_index":4404,"title":{},"body":{"license.html":{}}}],["low",{"_index":1171,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["lower",{"_index":3025,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["lowest",{"_index":170,"title":{},"body":{"classes/AccountIndex.html":{}}}],["lunga",{"_index":1632,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lungalunga",{"_index":1628,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lungu",{"_index":1631,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lutsangani",{"_index":1669,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["m",{"_index":47,"title":{},"body":{"interfaces/AccountDetails.html":{},"injectables/BlockSyncService.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signer.html":{},"miscellaneous/variables.html":{}}}],["m.accountsmodule",{"_index":2832,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["m.adminmodule",{"_index":2836,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["m.authmodule",{"_index":770,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["m.pagesmodule",{"_index":772,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["m.settingsmodule",{"_index":2830,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["m.tokensmodule",{"_index":2834,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["m.transactionsmodule",{"_index":2828,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["maalim",{"_index":1876,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maandazi",{"_index":2210,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maandzi",{"_index":2253,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mabenda",{"_index":2150,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mabesheni",{"_index":1690,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mabuyu",{"_index":2189,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["machakos",{"_index":1849,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["machine",{"_index":4064,"title":{},"body":{"license.html":{}}}],["machungwa",{"_index":2190,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["made",{"_index":1263,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["madewani",{"_index":1686,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["madrasa",{"_index":1926,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maembe",{"_index":2073,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mafuta",{"_index":2409,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["magari",{"_index":2397,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["magogoni",{"_index":1811,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["magongo",{"_index":1794,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mahamri",{"_index":2218,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maharagwe",{"_index":2216,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mahindi",{"_index":2209,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mail",{"_index":4443,"title":{},"body":{"license.html":{}}}],["mailman",{"_index":1946,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["main",{"_index":1866,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maintain",{"_index":4094,"title":{},"body":{"license.html":{}}}],["maize",{"_index":2203,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["majani",{"_index":2072,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["majaoni",{"_index":1809,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["majengo",{"_index":1713,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maji",{"_index":2262,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["major",{"_index":3924,"title":{},"body":{"license.html":{}}}],["makaa",{"_index":2408,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makadara",{"_index":1742,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makanga",{"_index":2398,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["make",{"_index":3733,"title":{},"body":{"license.html":{}}}],["makes",{"_index":3989,"title":{},"body":{"license.html":{}}}],["makina",{"_index":1727,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["making",{"_index":3859,"title":{},"body":{"license.html":{}}}],["makobeni",{"_index":1685,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makonge",{"_index":2094,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makongeni",{"_index":1818,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makueni",{"_index":1845,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makuluni",{"_index":1683,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makupa",{"_index":1789,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makuti",{"_index":2019,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["male",{"_index":2427,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["mali",{"_index":2327,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["malimali",{"_index":2325,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["management",{"_index":2954,"title":{},"body":{"components/SettingsComponent.html":{}}}],["manager",{"_index":2037,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["managing",{"_index":3641,"title":{},"body":{"index.html":{}}}],["manamba",{"_index":2389,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mandazi",{"_index":2207,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mango",{"_index":2163,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mangwe",{"_index":2337,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["manipulation",{"_index":848,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"guards/RoleGuard.html":{}}}],["manner",{"_index":4294,"title":{},"body":{"license.html":{}}}],["manufacturer",{"_index":3796,"title":{},"body":{"license.html":{}}}],["manyani",{"_index":1810,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["map",{"_index":1298,"title":{},"body":{"classes/CustomValidator.html":{}}}],["march",{"_index":4343,"title":{},"body":{"license.html":{}}}],["mariakani",{"_index":1684,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["marital",{"_index":1910,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["marked",{"_index":3787,"title":{},"body":{"license.html":{}}}],["market",{"_index":1781,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["marketing",{"_index":2097,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["marks",{"_index":4202,"title":{},"body":{"license.html":{}}}],["marondo",{"_index":2252,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["masai",{"_index":1617,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mask",{"_index":2283,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["masks",{"_index":3846,"title":{},"body":{"license.html":{}}}],["mason",{"_index":2040,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mat_dialog_data",{"_index":1318,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["matatu",{"_index":2374,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["matbuttonmodule",{"_index":475,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["matcardmodule",{"_index":477,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["match",{"_index":1288,"title":{},"body":{"classes/CustomValidator.html":{}}}],["matcheckboxmodule",{"_index":467,"title":{},"body":{"modules/AccountsModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["matcher",{"_index":200,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["matcher.ts",{"_index":1245,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"coverage.html":{}}}],["matcher.ts:18",{"_index":1261,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["matches",{"_index":2880,"title":{},"body":{"guards/RoleGuard.html":{}}}],["matching",{"_index":58,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"classes/W3.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"routes.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}}}],["matdialog",{"_index":1328,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["matdialogmodule",{"_index":2988,"title":{},"body":{"modules/SharedModule.html":{}}}],["matdialogref",{"_index":1333,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["material",{"_index":2770,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signer.html":{},"license.html":{}}}],["material.digest",{"_index":2785,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["materialize",{"_index":1589,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["materially",{"_index":4161,"title":{},"body":{"license.html":{}}}],["matformfieldmodule",{"_index":472,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["math.pow(10",{"_index":3038,"title":{},"body":{"pipes/TokenRatioPipe.html":{}}}],["mathare",{"_index":1753,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mathere",{"_index":1777,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maticonmodule",{"_index":479,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["matinputmodule",{"_index":470,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["matmenumodule",{"_index":2973,"title":{},"body":{"modules/SettingsModule.html":{}}}],["matoke",{"_index":2254,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["matpaginator",{"_index":380,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["matpaginatormodule",{"_index":469,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["matprogressspinnermodule",{"_index":488,"title":{},"body":{"modules/AccountsModule.html":{}}}],["matpseudocheckboxmodule",{"_index":3133,"title":{},"body":{"modules/TokensModule.html":{}}}],["matradiomodule",{"_index":2971,"title":{},"body":{"modules/SettingsModule.html":{}}}],["matress",{"_index":2344,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["matripplemodule",{"_index":486,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["matselectmodule",{"_index":481,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TransactionsModule.html":{}}}],["matsidenavmodule",{"_index":3134,"title":{},"body":{"modules/TokensModule.html":{}}}],["matsnackbar",{"_index":3163,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["matsnackbarmodule",{"_index":493,"title":{},"body":{"modules/AccountsModule.html":{},"modules/TransactionsModule.html":{}}}],["matsort",{"_index":384,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["matsortmodule",{"_index":466,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["mattabledatasource",{"_index":370,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["mattabledatasource(accounts",{"_index":406,"title":{},"body":{"components/AccountsComponent.html":{}}}],["mattabledatasource(actions",{"_index":606,"title":{},"body":{"components/AdminComponent.html":{}}}],["mattabledatasource(this.tokens",{"_index":3121,"title":{},"body":{"components/TokensComponent.html":{}}}],["mattabledatasource(this.trustedusers",{"_index":2944,"title":{},"body":{"components/SettingsComponent.html":{}}}],["mattabledatasource(transactions",{"_index":3395,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["mattablemodule",{"_index":465,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["mattabsmodule",{"_index":484,"title":{},"body":{"modules/AccountsModule.html":{}}}],["mattoolbarmodule",{"_index":3136,"title":{},"body":{"modules/TokensModule.html":{}}}],["mattress",{"_index":2345,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mattresses",{"_index":2346,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["matuga",{"_index":1714,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["matunda",{"_index":2162,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mawe",{"_index":2071,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mayai",{"_index":2225,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mazera",{"_index":1692,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mazeras",{"_index":1691,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mazingira",{"_index":1961,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maziwa",{"_index":2183,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbaazi",{"_index":2208,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbao",{"_index":2406,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbata",{"_index":2204,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbenda",{"_index":2151,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbita",{"_index":1831,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbog",{"_index":2185,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mboga",{"_index":2184,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbonga",{"_index":2110,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbuzi",{"_index":2191,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mc",{"_index":3451,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["mchanga",{"_index":2341,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mchele",{"_index":2161,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mchicha",{"_index":2193,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mchuuzi",{"_index":2206,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mchuzi",{"_index":2205,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["meaning",{"_index":4212,"title":{},"body":{"license.html":{}}}],["means",{"_index":3843,"title":{},"body":{"license.html":{}}}],["measure",{"_index":3997,"title":{},"body":{"license.html":{}}}],["measures",{"_index":4010,"title":{},"body":{"license.html":{}}}],["meat",{"_index":2212,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mechanic",{"_index":2043,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mediaquery",{"_index":641,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["mediaquery.matches",{"_index":1562,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["mediaquerylist",{"_index":664,"title":{},"body":{"components/AppComponent.html":{}}}],["medicine",{"_index":2284,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["medium",{"_index":4020,"title":{},"body":{"license.html":{}}}],["meet",{"_index":4034,"title":{},"body":{"license.html":{}}}],["meets",{"_index":3907,"title":{},"body":{"license.html":{}}}],["mellon",{"_index":2165,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["melon",{"_index":2164,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["menu",{"_index":1570,"title":{},"body":{"directives/MenuToggleDirective.html":{},"license.html":{}}}],["menuselectiondirective",{"_index":331,"title":{"directives/MenuSelectionDirective.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"directives/MenuSelectionDirective.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["menutoggledirective",{"_index":333,"title":{"directives/MenuToggleDirective.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"directives/MenuToggleDirective.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["merchantability",{"_index":4383,"title":{},"body":{"license.html":{}}}],["mere",{"_index":3888,"title":{},"body":{"license.html":{}}}],["mergemap",{"_index":1590,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["merging",{"_index":4267,"title":{},"body":{"license.html":{}}}],["meru",{"_index":1846,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["message",{"_index":1011,"title":{},"body":{"injectables/AuthService.html":{},"components/ErrorDialogComponent.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["message:\\n${message}.\\nstack",{"_index":1452,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["messages",{"_index":1254,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["met",{"_index":3962,"title":{},"body":{"license.html":{}}}],["meta",{"_index":37,"title":{"interfaces/Meta.html":{}},"body":{"interfaces/AccountDetails.html":{},"components/AuthComponent.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"interfaces/Signature.html":{},"injectables/TransactionService.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/variables.html":{}}}],["metadata",{"_index":187,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["metal",{"_index":2100,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["metaresponse",{"_index":46,"title":{"interfaces/MetaResponse.html":{}},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"coverage.html":{}}}],["method",{"_index":524,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["methods",{"_index":77,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"classes/UserServiceStub.html":{},"license.html":{}}}],["methodsignature",{"_index":3319,"title":{},"body":{"injectables/TransactionService.html":{}}}],["mfugaji",{"_index":2045,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mganga",{"_index":2275,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mgema",{"_index":2055,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mhogo",{"_index":2213,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miatsani",{"_index":1696,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miatsiani",{"_index":1677,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["middle",{"_index":3026,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["mienzeni",{"_index":1678,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mifugo",{"_index":2226,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["migori",{"_index":1841,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miguneni",{"_index":1700,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mihogo",{"_index":2214,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mikate",{"_index":2200,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mikeka",{"_index":2338,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mikindani",{"_index":1720,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["milk",{"_index":2181,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mill",{"_index":2033,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miloeni",{"_index":1689,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["minheight",{"_index":592,"title":{},"body":{"components/AdminComponent.html":{}}}],["minyenzeni",{"_index":1680,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mioleni",{"_index":1682,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miraa",{"_index":2180,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miritini",{"_index":1795,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["misc",{"_index":1721,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miscellaneous",{"_index":3588,"title":{"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}},"body":{"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}}}],["misrepresentation",{"_index":4193,"title":{},"body":{"license.html":{}}}],["miti",{"_index":1962,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mitumba",{"_index":2219,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mitungi",{"_index":2326,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miwa",{"_index":2217,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miyani",{"_index":1681,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miyenzeni",{"_index":1676,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mjambere",{"_index":1808,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mjengo",{"_index":2075,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mjenzi",{"_index":2044,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mkanyeni",{"_index":1674,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mkate",{"_index":2198,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mkokoteni",{"_index":2391,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mksiti",{"_index":1933,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mkulima",{"_index":1973,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mlola",{"_index":1693,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mlolongo",{"_index":1743,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mnarani",{"_index":1819,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mnazi",{"_index":2192,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mnyenzeni",{"_index":1679,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mocha",{"_index":3569,"title":{},"body":{"dependencies.html":{}}}],["mock",{"_index":535,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mockbackendinterceptor",{"_index":1574,"title":{"interceptors/MockBackendInterceptor.html":{}},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["mockbackendprovider",{"_index":745,"title":{},"body":{"modules/AppModule.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["mode",{"_index":1542,"title":{},"body":{"injectables/LoggingService.html":{},"license.html":{}}}],["model",{"_index":4079,"title":{},"body":{"license.html":{}}}],["modification",{"_index":3839,"title":{},"body":{"license.html":{}}}],["modifications",{"_index":3910,"title":{},"body":{"license.html":{}}}],["modified",{"_index":3786,"title":{},"body":{"license.html":{}}}],["modifies",{"_index":4038,"title":{},"body":{"license.html":{}}}],["modify",{"_index":3760,"title":{},"body":{"license.html":{}}}],["modifying",{"_index":3878,"title":{},"body":{"license.html":{}}}],["module",{"_index":431,"title":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{}},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/AuthModule.html":{},"components/FooterStubComponent.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"components/SidebarStubComponent.html":{},"modules/TokensModule.html":{},"components/TopbarStubComponent.html":{},"modules/TransactionsModule.html":{},"coverage.html":{},"index.html":{},"overview.html":{}}}],["modules",{"_index":433,"title":{"modules.html":{}},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"index.html":{},"modules.html":{},"overview.html":{}}}],["mogoka",{"_index":2211,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mombasa",{"_index":1782,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["moment",{"_index":862,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["moolb",{"_index":3571,"title":{},"body":{"dependencies.html":{}}}],["more",{"_index":3696,"title":{},"body":{"index.html":{},"license.html":{}}}],["moreover",{"_index":4238,"title":{},"body":{"license.html":{}}}],["moto",{"_index":2410,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["motorbike",{"_index":2394,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["motorist",{"_index":2393,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mover",{"_index":2392,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["movie",{"_index":2339,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mpesa",{"_index":2348,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mpishi",{"_index":2053,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mpsea",{"_index":2347,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ms",{"_index":1508,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["mshomoroni",{"_index":1814,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["msusi",{"_index":2054,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mtambo",{"_index":2034,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mtopanga",{"_index":1807,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mtumba",{"_index":2041,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mtwapa",{"_index":1816,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["muguka",{"_index":2179,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["muhogo",{"_index":2215,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mukuru",{"_index":1612,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["multi",{"_index":764,"title":{},"body":{"modules/AppModule.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["multiple",{"_index":2661,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["mulunguni",{"_index":1695,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mumias",{"_index":1838,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["musician",{"_index":2092,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mutable",{"_index":2637,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["mutablekeystore",{"_index":891,"title":{"interfaces/MutableKeyStore.html":{}},"body":{"injectables/AuthService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"coverage.html":{}}}],["mutablepgpkeystore",{"_index":752,"title":{"classes/MutablePgpKeyStore.html":{}},"body":{"modules/AppModule.html":{},"injectables/AuthService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"coverage.html":{}}}],["mutumba",{"_index":2317,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["muugano",{"_index":1694,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mvita",{"_index":1790,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mvuvi",{"_index":2070,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwache",{"_index":1697,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwakirunge",{"_index":1813,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwalimu",{"_index":1875,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwangani",{"_index":1698,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwangaraba",{"_index":1687,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwashanga",{"_index":1688,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwea",{"_index":1859,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwehavikonje",{"_index":1699,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwiki",{"_index":1765,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwingi",{"_index":1827,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mworoni",{"_index":1803,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["myenzeni",{"_index":1675,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["n",{"_index":35,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["nairobi",{"_index":1613,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nakuru",{"_index":1860,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["name",{"_index":93,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["name(s",{"_index":1236,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["names",{"_index":1237,"title":{},"body":{"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["namesearchform",{"_index":201,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["namesearchformstub",{"_index":212,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["namesearchloading",{"_index":202,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["namesearchsubmitted",{"_index":203,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["nandi",{"_index":1855,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["narok",{"_index":1861,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nature",{"_index":4051,"title":{},"body":{"license.html":{}}}],["navigate",{"_index":3653,"title":{},"body":{"index.html":{}}}],["navigatedto",{"_index":2893,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["navigation",{"_index":845,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"guards/RoleGuard.html":{}}}],["nazi",{"_index":2196,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ndizi",{"_index":2170,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["necessary",{"_index":4391,"title":{},"body":{"license.html":{}}}],["need",{"_index":3753,"title":{},"body":{"license.html":{}}}],["needed",{"_index":3818,"title":{},"body":{"license.html":{}}}],["network",{"_index":73,"title":{},"body":{"classes/AccountIndex.html":{},"injectables/BlockSyncService.html":{},"interceptors/ErrorInterceptor.html":{},"classes/TokenRegistry.html":{},"index.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["new",{"_index":152,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"injectables/RegistryService.html":{},"components/SettingsComponent.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"index.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["newconversionevent",{"_index":1064,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["newconversionevent(tx",{"_index":1080,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["newtransferevent",{"_index":1065,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["newtransferevent(tx",{"_index":1083,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["next",{"_index":526,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["next.handle(request",{"_index":1477,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["next.handle(request).pipe",{"_index":1355,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["next.handle(request).pipe(tap(event",{"_index":1503,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["ng",{"_index":3659,"title":{},"body":{"index.html":{}}}],["ng2",{"_index":2823,"title":{},"body":{"modules/PagesModule.html":{},"dependencies.html":{}}}],["ngafterviewinit",{"_index":3372,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["ngano",{"_index":2195,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ngform",{"_index":1260,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["ngmodule",{"_index":449,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{}}}],["ngombe",{"_index":2194,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ngombeni",{"_index":1791,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ngong",{"_index":1763,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ngoninit",{"_index":207,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/FooterComponent.html":{},"components/OrganizationComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["nguo",{"_index":2039,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ngx",{"_index":749,"title":{},"body":{"modules/AppModule.html":{},"injectables/LoggingService.html":{},"dependencies.html":{}}}],["ngxlogger",{"_index":1521,"title":{},"body":{"injectables/LoggingService.html":{}}}],["ngxloggerlevel.error",{"_index":4486,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ngxloggerlevel.off",{"_index":4487,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ngómbeni",{"_index":1792,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["njugu",{"_index":2171,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["non",{"_index":3834,"title":{},"body":{"license.html":{}}}],["noncommercially",{"_index":4086,"title":{},"body":{"license.html":{}}}],["none",{"_index":831,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nopasswordmatch",{"_index":1304,"title":{},"body":{"classes/CustomValidator.html":{}}}],["normal",{"_index":3922,"title":{},"body":{"license.html":{}}}],["normally",{"_index":4118,"title":{},"body":{"license.html":{}}}],["nothing",{"_index":4252,"title":{},"body":{"license.html":{}}}],["notice",{"_index":3897,"title":{},"body":{"license.html":{}}}],["notices",{"_index":3893,"title":{},"body":{"license.html":{}}}],["notifies",{"_index":4239,"title":{},"body":{"license.html":{}}}],["notify",{"_index":4234,"title":{},"body":{"license.html":{}}}],["notwithstanding",{"_index":4180,"title":{},"body":{"license.html":{}}}],["now",{"_index":1034,"title":{},"body":{"injectables/AuthService.html":{}}}],["npm",{"_index":3646,"title":{},"body":{"index.html":{}}}],["null",{"_index":1075,"title":{},"body":{"injectables/BlockSyncService.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"directives/RouterLinkDirectiveStub.html":{}}}],["number",{"_index":22,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"interfaces/Action.html":{},"components/AppComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/Signature.html":{},"interfaces/Staff.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/Transaction.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["number(await",{"_index":3332,"title":{},"body":{"injectables/TransactionService.html":{}}}],["number(conversion.fromvalue",{"_index":3298,"title":{},"body":{"injectables/TransactionService.html":{}}}],["number(conversion.tovalue",{"_index":3300,"title":{},"body":{"injectables/TransactionService.html":{}}}],["number(transaction.value",{"_index":3285,"title":{},"body":{"injectables/TransactionService.html":{}}}],["number(value",{"_index":3037,"title":{},"body":{"pipes/TokenRatioPipe.html":{}}}],["numbered",{"_index":4371,"title":{},"body":{"license.html":{}}}],["numberofaccounts",{"_index":133,"title":{},"body":{"classes/AccountIndex.html":{}}}],["numbers",{"_index":3598,"title":{},"body":{"miscellaneous/functions.html":{}}}],["nurse",{"_index":2278,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nursery",{"_index":1890,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyalenda",{"_index":1834,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyalgunga",{"_index":1830,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyali",{"_index":1804,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyama",{"_index":2167,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyanya",{"_index":2166,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyanza",{"_index":1828,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyeri",{"_index":1856,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nzora",{"_index":1701,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nzovuni",{"_index":1702,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nzugu",{"_index":2257,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["o",{"_index":917,"title":{},"body":{"injectables/AuthService.html":{}}}],["o.realm",{"_index":1004,"title":{},"body":{"injectables/AuthService.html":{}}}],["objcsv",{"_index":3509,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["object",{"_index":1289,"title":{},"body":{"classes/CustomValidator.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"miscellaneous/functions.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["objects",{"_index":1418,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["obligate",{"_index":4355,"title":{},"body":{"license.html":{}}}],["obligated",{"_index":4100,"title":{},"body":{"license.html":{}}}],["obligations",{"_index":3999,"title":{},"body":{"license.html":{}}}],["observable",{"_index":521,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"guards/AuthGuard.html":{},"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"classes/UserServiceStub.html":{}}}],["observables's",{"_index":540,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["occasionally",{"_index":4085,"title":{},"body":{"license.html":{}}}],["occurred",{"_index":1361,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["occurring",{"_index":4249,"title":{},"body":{"license.html":{}}}],["occurs",{"_index":1421,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"license.html":{}}}],["of('hello",{"_index":3361,"title":{},"body":{"classes/TransactionServiceStub.html":{}}}],["of(new",{"_index":2563,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["of(null",{"_index":2475,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["offer",{"_index":3775,"title":{},"body":{"license.html":{}}}],["offered",{"_index":4108,"title":{},"body":{"license.html":{}}}],["offering",{"_index":4089,"title":{},"body":{"license.html":{}}}],["office",{"_index":1820,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["official",{"_index":3912,"title":{},"body":{"license.html":{}}}],["offset",{"_index":1072,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["ohuru",{"_index":1798,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["oil",{"_index":2416,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ok(accounttypes",{"_index":2522,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(actions",{"_index":2523,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(areanamelist",{"_index":2528,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(areatypelist",{"_index":2536,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(categorylist",{"_index":2544,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(genders",{"_index":2549,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(message",{"_index":2521,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(queriedaction",{"_index":2524,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(queriedareaname.name",{"_index":2532,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(queriedareatype.name",{"_index":2540,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(queriedcategory.name",{"_index":2548,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(queriedtoken",{"_index":2555,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(responsebody",{"_index":2562,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(tokens",{"_index":2550,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(transactiontypes",{"_index":2556,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["old",{"_index":1787,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["oldchain:1",{"_index":26,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["olympic",{"_index":1729,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ombeni",{"_index":1793,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["omena",{"_index":2168,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["omeno",{"_index":2255,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["onaddresssearch",{"_index":208,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["once",{"_index":3690,"title":{},"body":{"index.html":{}}}],["onclick",{"_index":2899,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["one",{"_index":3670,"title":{},"body":{"index.html":{},"license.html":{}}}],["oninit",{"_index":186,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/FooterComponent.html":{},"components/OrganizationComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["onions",{"_index":2256,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["onmenuselect",{"_index":1553,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["onmenutoggle",{"_index":1566,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["onnamesearch",{"_index":209,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["onphonesearch",{"_index":210,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["onresize",{"_index":645,"title":{},"body":{"components/AppComponent.html":{}}}],["onresize(e",{"_index":661,"title":{},"body":{"components/AppComponent.html":{}}}],["onsign",{"_index":2751,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["onsign(signature",{"_index":2777,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["onsubmit",{"_index":783,"title":{},"body":{"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["onverify",{"_index":2752,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["onverify(flag",{"_index":2778,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["opendialog",{"_index":1326,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["opendialog(data",{"_index":1330,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["openpgp",{"_index":2639,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/variables.html":{}}}],["openpgp.cleartext.fromtext(digest",{"_index":2787,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["openpgp.key.readarmored(key",{"_index":2655,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["openpgp.key.readarmored(privatekey",{"_index":2658,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["openpgp.keyring",{"_index":2641,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"miscellaneous/variables.html":{}}}],["openpgp.message.fromtext(plaintext",{"_index":2683,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["openpgp.readkey",{"_index":2651,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["openpgp.sign(opts",{"_index":2687,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["openpgp.sign(opts).then((s",{"_index":2797,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["openpgp.signature.readarmored(signature.data).then((sig",{"_index":2786,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["openpgp.verify(opts).then((v",{"_index":2790,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["operate",{"_index":4407,"title":{},"body":{"license.html":{}}}],["operated",{"_index":4092,"title":{},"body":{"license.html":{}}}],["operating",{"_index":3933,"title":{},"body":{"license.html":{}}}],["operation",{"_index":3607,"title":{},"body":{"miscellaneous/functions.html":{},"license.html":{}}}],["option",{"_index":4177,"title":{},"body":{"license.html":{}}}],["optional",{"_index":9,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"directives/PasswordToggleDirective.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"interfaces/Signer.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{}}}],["options",{"_index":3904,"title":{},"body":{"license.html":{}}}],["opts",{"_index":2682,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["oranges",{"_index":2197,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["order",{"_index":4247,"title":{},"body":{"license.html":{}}}],["organisation",{"_index":2734,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["organization",{"_index":2715,"title":{},"body":{"components/OrganizationComponent.html":{},"components/SettingsComponent.html":{},"modules/SettingsRoutingModule.html":{},"license.html":{}}}],["organization'},{'name",{"_index":311,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["organization.component.html",{"_index":2717,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["organization.component.scss",{"_index":2716,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["organizationcomponent",{"_index":310,"title":{"components/OrganizationComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["organizationform",{"_index":2718,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["organizationformstub",{"_index":2719,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["organizations",{"_index":3854,"title":{},"body":{"license.html":{}}}],["origin",{"_index":4194,"title":{},"body":{"license.html":{}}}],["original",{"_index":4195,"title":{},"body":{"license.html":{}}}],["others",{"_index":3755,"title":{},"body":{"license.html":{}}}],["otherwise",{"_index":124,"title":{},"body":{"classes/AccountIndex.html":{},"license.html":{}}}],["out",{"_index":447,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/AuthModule.html":{},"injectables/AuthService.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{},"index.html":{},"license.html":{},"overview.html":{}}}],["outgoing",{"_index":1583,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["outlet",{"_index":860,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["output",{"_index":3966,"title":{},"body":{"license.html":{}}}],["outside",{"_index":3982,"title":{},"body":{"license.html":{}}}],["overview",{"_index":3697,"title":{"overview.html":{}},"body":{"index.html":{},"overview.html":{}}}],["owino",{"_index":1633,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["owned",{"_index":4290,"title":{},"body":{"license.html":{}}}],["owner",{"_index":2444,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"miscellaneous/variables.html":{}}}],["package",{"_index":3541,"title":{"dependencies.html":{}},"body":{}}],["packaged",{"_index":4044,"title":{},"body":{"license.html":{}}}],["packaging",{"_index":3923,"title":{},"body":{"license.html":{}}}],["page",{"_index":694,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["pages",{"_index":2807,"title":{},"body":{"components/PagesComponent.html":{}}}],["pages'},{'name",{"_index":313,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["pages.component",{"_index":2826,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["pages.component.html",{"_index":2809,"title":{},"body":{"components/PagesComponent.html":{}}}],["pages.component.scss",{"_index":2808,"title":{},"body":{"components/PagesComponent.html":{}}}],["pages/accounts/account",{"_index":456,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{}}}],["pages/accounts/accounts",{"_index":452,"title":{},"body":{"modules/AccountsModule.html":{}}}],["pages/accounts/accounts.component",{"_index":454,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{}}}],["pages/accounts/create",{"_index":462,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{}}}],["pages/admin/admin",{"_index":634,"title":{},"body":{"modules/AdminModule.html":{}}}],["pages/admin/admin.component",{"_index":635,"title":{},"body":{"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{}}}],["pages/pages",{"_index":2820,"title":{},"body":{"modules/PagesModule.html":{}}}],["pages/pages.component",{"_index":2821,"title":{},"body":{"modules/PagesModule.html":{}}}],["pages/settings/organization/organization.component",{"_index":2970,"title":{},"body":{"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{}}}],["pages/settings/settings",{"_index":2968,"title":{},"body":{"modules/SettingsModule.html":{}}}],["pages/settings/settings.component",{"_index":2969,"title":{},"body":{"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{}}}],["pages/tokens/token",{"_index":3132,"title":{},"body":{"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{}}}],["pages/tokens/tokens",{"_index":3130,"title":{},"body":{"modules/TokensModule.html":{}}}],["pages/tokens/tokens.component",{"_index":3131,"title":{},"body":{"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{}}}],["pages/transactions/transaction",{"_index":3422,"title":{},"body":{"modules/TransactionsModule.html":{}}}],["pages/transactions/transactions",{"_index":3420,"title":{},"body":{"modules/TransactionsModule.html":{}}}],["pages/transactions/transactions.component",{"_index":3421,"title":{},"body":{"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{}}}],["pages/transactions/transactions.module",{"_index":483,"title":{},"body":{"modules/AccountsModule.html":{}}}],["pagescomponent",{"_index":312,"title":{"components/PagesComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["pagesizeoptions",{"_index":348,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionsComponent.html":{}}}],["pagesmodule",{"_index":2814,"title":{"modules/PagesModule.html":{}},"body":{"modules/PagesModule.html":{},"modules.html":{},"overview.html":{}}}],["pagesroutingmodule",{"_index":2818,"title":{"modules/PagesRoutingModule.html":{}},"body":{"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["paginator",{"_index":349,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["painter",{"_index":2046,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pampers",{"_index":2334,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["papa",{"_index":2148,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["paper",{"_index":4442,"title":{},"body":{"license.html":{}}}],["paraffin",{"_index":2419,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["parafin",{"_index":2421,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["paragraph",{"_index":4224,"title":{},"body":{"license.html":{}}}],["paragraphs",{"_index":4302,"title":{},"body":{"license.html":{}}}],["param",{"_index":155,"title":{},"body":{"classes/AccountIndex.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"classes/TokenRegistry.html":{}}}],["parameters",{"_index":92,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"directives/PasswordToggleDirective.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"interfaces/Signer.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{}}}],["parammap",{"_index":520,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["params",{"_index":530,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"components/TokenDetailsComponent.html":{}}}],["parrafin",{"_index":2420,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["parsed",{"_index":3627,"title":{},"body":{"miscellaneous/functions.html":{}}}],["parsedata",{"_index":3507,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["parsedata(data",{"_index":3625,"title":{},"body":{"miscellaneous/functions.html":{}}}],["parseint(urlparts[urlparts.length",{"_index":2561,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["parser",{"_index":3280,"title":{},"body":{"injectables/TransactionService.html":{},"dependencies.html":{},"miscellaneous/variables.html":{}}}],["parses",{"_index":3626,"title":{},"body":{"miscellaneous/functions.html":{}}}],["part",{"_index":3856,"title":{},"body":{"license.html":{}}}],["particular",{"_index":861,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["parties",{"_index":3887,"title":{},"body":{"license.html":{}}}],["parts",{"_index":2323,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["party",{"_index":873,"title":{},"body":{"guards/AuthGuard.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["party's",{"_index":4269,"title":{},"body":{"license.html":{}}}],["pass",{"_index":2509,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["passphrase",{"_index":1022,"title":{},"body":{"injectables/AuthService.html":{}}}],["password",{"_index":1038,"title":{},"body":{"injectables/AuthService.html":{},"classes/CustomValidator.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"directives/PasswordToggleDirective.html":{},"components/SettingsComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"injectables/TransactionService.html":{},"license.html":{}}}],["password.type",{"_index":2850,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["passwordmatchvalidator",{"_index":1280,"title":{},"body":{"classes/CustomValidator.html":{}}}],["passwordmatchvalidator(control",{"_index":1282,"title":{},"body":{"classes/CustomValidator.html":{}}}],["passwordtoggledirective",{"_index":335,"title":{"directives/PasswordToggleDirective.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"modules/AuthModule.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["pastor",{"_index":1924,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["patent",{"_index":4223,"title":{},"body":{"license.html":{}}}],["patents",{"_index":3821,"title":{},"body":{"license.html":{}}}],["path",{"_index":500,"title":{},"body":{"modules/AccountsRoutingModule.html":{},"modules/AdminRoutingModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsRoutingModule.html":{}}}],["pathmatch",{"_index":502,"title":{},"body":{"modules/AccountsRoutingModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsRoutingModule.html":{}}}],["patience",{"_index":1611,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["pattern",{"_index":3802,"title":{},"body":{"license.html":{}}}],["patternvalidator",{"_index":1281,"title":{},"body":{"classes/CustomValidator.html":{}}}],["patternvalidator(regex",{"_index":1291,"title":{},"body":{"classes/CustomValidator.html":{}}}],["payment",{"_index":4337,"title":{},"body":{"license.html":{}}}],["peanuts",{"_index":2154,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["peddler",{"_index":2058,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["peer",{"_index":4104,"title":{},"body":{"license.html":{}}}],["peers",{"_index":4107,"title":{},"body":{"license.html":{}}}],["peku",{"_index":1670,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["people",{"_index":3668,"title":{},"body":{"index.html":{}}}],["perform",{"_index":1277,"title":{},"body":{"classes/CustomValidator.html":{}}}],["performance",{"_index":4387,"title":{},"body":{"license.html":{}}}],["performing",{"_index":3944,"title":{},"body":{"license.html":{}}}],["perfume",{"_index":2351,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["periurban",{"_index":1865,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["permanently",{"_index":4232,"title":{},"body":{"license.html":{}}}],["permission",{"_index":3778,"title":{},"body":{"license.html":{}}}],["permissions",{"_index":3957,"title":{},"body":{"license.html":{}}}],["permissive",{"_index":4027,"title":{},"body":{"license.html":{}}}],["permit",{"_index":4060,"title":{},"body":{"license.html":{}}}],["permits",{"_index":4214,"title":{},"body":{"license.html":{}}}],["permitted",{"_index":3713,"title":{},"body":{"license.html":{}}}],["perpetuity",{"_index":4150,"title":{},"body":{"license.html":{}}}],["person",{"_index":3634,"title":{},"body":{"miscellaneous/functions.html":{}}}],["personal",{"_index":4116,"title":{},"body":{"license.html":{}}}],["personvalidation",{"_index":3512,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["personvalidation(person",{"_index":3632,"title":{},"body":{"miscellaneous/functions.html":{}}}],["pertinent",{"_index":4353,"title":{},"body":{"license.html":{}}}],["pesa",{"_index":2366,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["petro",{"_index":2423,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["petrol",{"_index":2422,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pgp",{"_index":1026,"title":{},"body":{"injectables/AuthService.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["pgp.js",{"_index":935,"title":{},"body":{"injectables/AuthService.html":{}}}],["pgpsigner",{"_index":2748,"title":{"classes/PGPSigner.html":{}},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"coverage.html":{}}}],["pharmacy",{"_index":2287,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["phone",{"_index":282,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["phonenumber",{"_index":258,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/CreateAccountComponent.html":{}}}],["phonesearchform",{"_index":204,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["phonesearchformstub",{"_index":213,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["phonesearchloading",{"_index":205,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["phonesearchsubmitted",{"_index":206,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["photo",{"_index":2099,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["photocopy",{"_index":2057,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["photographer",{"_index":2077,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["physical",{"_index":4068,"title":{},"body":{"license.html":{}}}],["physically",{"_index":4083,"title":{},"body":{"license.html":{}}}],["pieces",{"_index":3748,"title":{},"body":{"license.html":{}}}],["piki",{"_index":2387,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pikipiki",{"_index":2388,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pilau",{"_index":2222,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pipe",{"_index":1754,"title":{"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{}},"body":{"interceptors/MockBackendInterceptor.html":{},"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["pipe(catcherror(async",{"_index":676,"title":{},"body":{"components/AppComponent.html":{}}}],["pipe(delay(500",{"_index":2478,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["pipe(dematerialize",{"_index":2479,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["pipe(materialize",{"_index":2477,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["pipe(mergemap(handleroute",{"_index":2476,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["pipe({name",{"_index":3036,"title":{},"body":{"pipes/TokenRatioPipe.html":{}}}],["pipes",{"_index":2903,"title":{},"body":{"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{},"overview.html":{}}}],["pipetransform",{"_index":2910,"title":{},"body":{"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{}}}],["pk",{"_index":2793,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["pk.decrypt(password",{"_index":2796,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["pk.isdecrypted",{"_index":2795,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["place",{"_index":4091,"title":{},"body":{"license.html":{}}}],["plaintext",{"_index":2635,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["plastic",{"_index":1965,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["playstation",{"_index":2352,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["please",{"_index":684,"title":{},"body":{"components/AppComponent.html":{},"injectables/AuthService.html":{},"license.html":{}}}],["plumb",{"_index":2050,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["plus",{"_index":4272,"title":{},"body":{"license.html":{}}}],["pointer",{"_index":4434,"title":{},"body":{"license.html":{}}}],["pojo",{"_index":2147,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["police",{"_index":1938,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pombe",{"_index":2333,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pool",{"_index":2335,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["popper.js",{"_index":3576,"title":{},"body":{"dependencies.html":{}}}],["popperjs/core",{"_index":3548,"title":{},"body":{"dependencies.html":{}}}],["populated",{"_index":3691,"title":{},"body":{"index.html":{}}}],["porridge",{"_index":2221,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["portion",{"_index":4111,"title":{},"body":{"license.html":{}}}],["posho",{"_index":2032,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["possesses",{"_index":4080,"title":{},"body":{"license.html":{}}}],["possession",{"_index":4041,"title":{},"body":{"license.html":{}}}],["possibility",{"_index":4409,"title":{},"body":{"license.html":{}}}],["possible",{"_index":4425,"title":{},"body":{"license.html":{}}}],["post",{"_index":2492,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["potatoes",{"_index":2155,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["poultry",{"_index":2152,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["power",{"_index":4012,"title":{},"body":{"license.html":{}}}],["practical",{"_index":3723,"title":{},"body":{"license.html":{}}}],["practice",{"_index":3808,"title":{},"body":{"license.html":{}}}],["preamble",{"_index":3718,"title":{},"body":{"license.html":{}}}],["precise",{"_index":3835,"title":{},"body":{"license.html":{}}}],["precisely",{"_index":3805,"title":{},"body":{"license.html":{}}}],["predecessor",{"_index":4270,"title":{},"body":{"license.html":{}}}],["preferred",{"_index":3909,"title":{},"body":{"license.html":{}}}],["preloadallmodules",{"_index":766,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["preloadingstrategy",{"_index":775,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["prepare",{"_index":2754,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signer.html":{}}}],["prepare(material",{"_index":2767,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["present",{"_index":4366,"title":{},"body":{"license.html":{}}}],["presents",{"_index":3901,"title":{},"body":{"license.html":{}}}],["preservation",{"_index":4188,"title":{},"body":{"license.html":{}}}],["prevent",{"_index":3754,"title":{},"body":{"license.html":{}}}],["prevented",{"_index":4146,"title":{},"body":{"license.html":{}}}],["previous",{"_index":544,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"license.html":{}}}],["price",{"_index":3743,"title":{},"body":{"license.html":{}}}],["primarily",{"_index":4339,"title":{},"body":{"license.html":{}}}],["primary",{"_index":1882,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["printing",{"_index":2048,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["prints",{"_index":105,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"miscellaneous/functions.html":{}}}],["prior",{"_index":4235,"title":{},"body":{"license.html":{}}}],["private",{"_index":253,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"components/OrganizationComponent.html":{},"directives/PasswordToggleDirective.html":{},"components/SettingsComponent.html":{},"components/TokenDetailsComponent.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"license.html":{}}}],["privatekey",{"_index":810,"title":{},"body":{"components/AuthComponent.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"injectables/TransactionService.html":{}}}],["privatekey.decrypt(password",{"_index":2681,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"injectables/TransactionService.html":{}}}],["privatekey.isdecrypted",{"_index":2679,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"injectables/TransactionService.html":{}}}],["privatekey.keypacket.privateparams.d",{"_index":3345,"title":{},"body":{"injectables/TransactionService.html":{}}}],["privatekeyarmored",{"_index":925,"title":{},"body":{"injectables/AuthService.html":{}}}],["privatekeys",{"_index":2684,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["problems",{"_index":3789,"title":{},"body":{"license.html":{}}}],["procedures",{"_index":4141,"title":{},"body":{"license.html":{}}}],["procuring",{"_index":4327,"title":{},"body":{"license.html":{}}}],["produce",{"_index":3936,"title":{},"body":{"license.html":{}}}],["product",{"_index":4069,"title":{},"body":{"license.html":{}}}],["production",{"_index":3677,"title":{},"body":{"index.html":{},"miscellaneous/variables.html":{}}}],["products",{"_index":17,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/Signature.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["professor",{"_index":1902,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["profile",{"_index":1607,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["program",{"_index":3732,"title":{},"body":{"license.html":{}}}],["program's",{"_index":4019,"title":{},"body":{"license.html":{}}}],["programmer",{"_index":2078,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["programming",{"_index":2049,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["programs",{"_index":3741,"title":{},"body":{"license.html":{}}}],["programsif",{"_index":4422,"title":{},"body":{"license.html":{}}}],["progress...show",{"_index":692,"title":{},"body":{"components/AppComponent.html":{}}}],["prohibit",{"_index":3807,"title":{},"body":{"license.html":{}}}],["prohibiting",{"_index":4008,"title":{},"body":{"license.html":{}}}],["prohibits",{"_index":4334,"title":{},"body":{"license.html":{}}}],["project",{"_index":3642,"title":{},"body":{"index.html":{}}}],["prominent",{"_index":3905,"title":{},"body":{"license.html":{}}}],["prominently",{"_index":3896,"title":{},"body":{"license.html":{}}}],["promise",{"_index":113,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"guards/RoleGuard.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"miscellaneous/functions.html":{}}}],["promise((resolve",{"_index":980,"title":{},"body":{"injectables/AuthService.html":{}}}],["promise(async",{"_index":1000,"title":{},"body":{"injectables/AuthService.html":{}}}],["propagate",{"_index":3867,"title":{},"body":{"license.html":{}}}],["propagating",{"_index":4255,"title":{},"body":{"license.html":{}}}],["propagation",{"_index":3879,"title":{},"body":{"license.html":{}}}],["properties",{"_index":8,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"injectables/LoggingService.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"injectables/RegistryService.html":{},"directives/RouterLinkDirectiveStub.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"interfaces/Signature.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"classes/W3.html":{},"miscellaneous/variables.html":{}}}],["property",{"_index":4117,"title":{},"body":{"license.html":{}}}],["proprietary",{"_index":3831,"title":{},"body":{"license.html":{}}}],["protect",{"_index":3751,"title":{},"body":{"license.html":{}}}],["protecting",{"_index":3800,"title":{},"body":{"license.html":{}}}],["protection",{"_index":3780,"title":{},"body":{"license.html":{}}}],["protocols",{"_index":4166,"title":{},"body":{"license.html":{}}}],["protractor",{"_index":3686,"title":{},"body":{"index.html":{}}}],["prove",{"_index":4388,"title":{},"body":{"license.html":{}}}],["provide",{"_index":762,"title":{},"body":{"modules/AppModule.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["provided",{"_index":3900,"title":{},"body":{"license.html":{}}}],["providedin",{"_index":874,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"injectables/ErrorDialogService.html":{},"injectables/LocationService.html":{},"injectables/LoggingService.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["provider",{"_index":1247,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/Settings.html":{},"classes/W3.html":{},"miscellaneous/variables.html":{}}}],["providers",{"_index":437,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{},"overview.html":{}}}],["provides",{"_index":65,"title":{},"body":{"classes/AccountIndex.html":{},"guards/AuthGuard.html":{},"classes/CustomValidator.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"classes/TokenRegistry.html":{},"miscellaneous/functions.html":{}}}],["provision",{"_index":3816,"title":{},"body":{"license.html":{}}}],["provisionally",{"_index":4229,"title":{},"body":{"license.html":{}}}],["proxy",{"_index":4375,"title":{},"body":{"license.html":{}}}],["proxy's",{"_index":4377,"title":{},"body":{"license.html":{}}}],["pry",{"_index":1873,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pub",{"_index":2364,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["public",{"_index":78,"title":{},"body":{"classes/AccountIndex.html":{},"components/AppComponent.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"classes/TokenRegistry.html":{},"license.html":{}}}],["publicity",{"_index":4196,"title":{},"body":{"license.html":{}}}],["publickey",{"_index":2617,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["publickey.getkeyid().tohex",{"_index":2676,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["publickeys",{"_index":688,"title":{},"body":{"components/AppComponent.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["publickeysurl",{"_index":4491,"title":{},"body":{"miscellaneous/variables.html":{}}}],["publicly",{"_index":4167,"title":{},"body":{"license.html":{}}}],["publish",{"_index":4023,"title":{},"body":{"license.html":{}}}],["published",{"_index":4372,"title":{},"body":{"license.html":{}}}],["pump",{"_index":547,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["purpose",{"_index":3824,"title":{},"body":{"license.html":{}}}],["purposes",{"_index":4121,"title":{},"body":{"license.html":{}}}],["pursuant",{"_index":4324,"title":{},"body":{"license.html":{}}}],["put",{"_index":2636,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["qkvhsu46vknbukqnclzfulnjt046my4wdqpftufjtdphyxjuzxnlbkbob3rtywlslmnvbq0krk46s3vydmkgs3jhbmpjdqpooktyyw5qyztldxj0ozs7dqpuruw7vflqpunftew6njkyntazmzq5ode5ng0kru5eolzdqvjedqo",{"_index":3484,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["qualify",{"_index":4244,"title":{},"body":{"license.html":{}}}],["quality",{"_index":4386,"title":{},"body":{"license.html":{}}}],["queriedaction",{"_index":2514,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["queriedaction.approval",{"_index":2518,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["queriedareaname",{"_index":2529,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["queriedareatype",{"_index":2537,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["queriedcategory",{"_index":2545,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["queriedtoken",{"_index":2551,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["querying",{"_index":70,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["queryparams",{"_index":2888,"title":{},"body":{"guards/RoleGuard.html":{}}}],["quot;false"",{"_index":126,"title":{},"body":{"classes/AccountIndex.html":{}}}],["quot;true"",{"_index":106,"title":{},"body":{"classes/AccountIndex.html":{},"miscellaneous/functions.html":{}}}],["r",{"_index":1002,"title":{},"body":{"injectables/AuthService.html":{},"injectables/TransactionService.html":{}}}],["raibai",{"_index":1823,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["rangala",{"_index":1836,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ratio.pipe",{"_index":2987,"title":{},"body":{"modules/SharedModule.html":{}}}],["ratio.pipe.ts",{"_index":3033,"title":{},"body":{"pipes/TokenRatioPipe.html":{},"coverage.html":{}}}],["ratio.pipe.ts:5",{"_index":3035,"title":{},"body":{"pipes/TokenRatioPipe.html":{}}}],["rcu",{"_index":2735,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["reached",{"_index":683,"title":{},"body":{"components/AppComponent.html":{}}}],["reactiveformsmodule",{"_index":491,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AuthModule.html":{},"modules/SettingsModule.html":{}}}],["read",{"_index":3631,"title":{},"body":{"miscellaneous/functions.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["readable",{"_index":4065,"title":{},"body":{"license.html":{}}}],["readcsv",{"_index":3508,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["readcsv(input",{"_index":3628,"title":{},"body":{"miscellaneous/functions.html":{}}}],["readily",{"_index":4312,"title":{},"body":{"license.html":{}}}],["reading",{"_index":4170,"title":{},"body":{"license.html":{}}}],["readonly",{"_index":527,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["reads",{"_index":3629,"title":{},"body":{"miscellaneous/functions.html":{}}}],["ready",{"_index":3814,"title":{},"body":{"license.html":{}}}],["readystate",{"_index":642,"title":{},"body":{"components/AppComponent.html":{},"injectables/BlockSyncService.html":{}}}],["readystateelements",{"_index":1104,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["readystateelements.network",{"_index":1122,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["readystateprocessor",{"_index":1066,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["readystateprocessor(settings",{"_index":1085,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["readystatetarget",{"_index":643,"title":{},"body":{"components/AppComponent.html":{},"injectables/BlockSyncService.html":{}}}],["realm",{"_index":999,"title":{},"body":{"injectables/AuthService.html":{}}}],["reason",{"_index":4322,"title":{},"body":{"license.html":{}}}],["reasonable",{"_index":4081,"title":{},"body":{"license.html":{}}}],["receipt",{"_index":4242,"title":{},"body":{"license.html":{}}}],["receive",{"_index":3746,"title":{},"body":{"license.html":{}}}],["received",{"_index":3768,"title":{},"body":{"license.html":{}}}],["receives",{"_index":4260,"title":{},"body":{"license.html":{}}}],["receiving",{"_index":4329,"title":{},"body":{"license.html":{}}}],["recently",{"_index":132,"title":{},"body":{"classes/AccountIndex.html":{}}}],["receptionist",{"_index":2047,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["recipient",{"_index":1185,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"license.html":{}}}],["recipient's",{"_index":4320,"title":{},"body":{"license.html":{}}}],["recipientaddress",{"_index":3256,"title":{},"body":{"injectables/TransactionService.html":{}}}],["recipientbloxberglink",{"_index":3154,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["recipients",{"_index":3765,"title":{},"body":{"license.html":{}}}],["reclaim",{"_index":1602,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["reclamation",{"_index":2465,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["recognized",{"_index":3913,"title":{},"body":{"license.html":{}}}],["recommend",{"_index":1054,"title":{},"body":{"injectables/AuthService.html":{}}}],["recycling",{"_index":1969,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["red",{"_index":1891,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["redcross",{"_index":1916,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["redirectto",{"_index":501,"title":{},"body":{"modules/AccountsRoutingModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsRoutingModule.html":{}}}],["redistribute",{"_index":4428,"title":{},"body":{"license.html":{}}}],["reference",{"_index":3699,"title":{},"body":{"index.html":{}}}],["referrer",{"_index":1224,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["referring",{"_index":3742,"title":{},"body":{"license.html":{}}}],["refers",{"_index":3842,"title":{},"body":{"license.html":{}}}],["refrain",{"_index":4357,"title":{},"body":{"license.html":{}}}],["refreshpaginator",{"_index":354,"title":{},"body":{"components/AccountsComponent.html":{}}}],["regard",{"_index":4176,"title":{},"body":{"license.html":{}}}],["regardless",{"_index":4043,"title":{},"body":{"license.html":{}}}],["regards",{"_index":1252,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["regenerate",{"_index":3955,"title":{},"body":{"license.html":{}}}],["regex",{"_index":1297,"title":{},"body":{"classes/CustomValidator.html":{}}}],["regex.test(control.value",{"_index":1306,"title":{},"body":{"classes/CustomValidator.html":{}}}],["regexp",{"_index":1292,"title":{},"body":{"classes/CustomValidator.html":{}}}],["registered",{"_index":71,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["registers",{"_index":101,"title":{},"body":{"classes/AccountIndex.html":{}}}],["registration",{"_index":107,"title":{},"body":{"classes/AccountIndex.html":{}}}],["registry",{"_index":68,"title":{},"body":{"classes/AccountIndex.html":{},"injectables/RegistryService.html":{},"classes/Settings.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"classes/W3.html":{},"miscellaneous/variables.html":{}}}],["registry.ts",{"_index":3041,"title":{},"body":{"classes/TokenRegistry.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["registry.ts:22",{"_index":3045,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registry.ts:24",{"_index":3046,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registry.ts:26",{"_index":3044,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registry.ts:57",{"_index":3048,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registry.ts:75",{"_index":3055,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registry.ts:91",{"_index":3059,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registryaddress",{"_index":4501,"title":{},"body":{"miscellaneous/variables.html":{}}}],["registryservice",{"_index":1069,"title":{"injectables/RegistryService.html":{}},"body":{"injectables/BlockSyncService.html":{},"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"coverage.html":{}}}],["registryservice.getregistry",{"_index":3081,"title":{},"body":{"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["regular",{"_index":1295,"title":{},"body":{"classes/CustomValidator.html":{}}}],["reinstated",{"_index":4228,"title":{},"body":{"license.html":{}}}],["reject",{"_index":981,"title":{},"body":{"injectables/AuthService.html":{}}}],["reject(error",{"_index":984,"title":{},"body":{"injectables/AuthService.html":{}}}],["rejected",{"_index":969,"title":{},"body":{"injectables/AuthService.html":{}}}],["relationship",{"_index":3983,"title":{},"body":{"license.html":{}}}],["released",{"_index":3737,"title":{},"body":{"license.html":{}}}],["relevant",{"_index":4036,"title":{},"body":{"license.html":{}}}],["relicensing",{"_index":4215,"title":{},"body":{"license.html":{}}}],["religious",{"_index":1928,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["religous",{"_index":1927,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["reload",{"_index":3656,"title":{},"body":{"index.html":{}}}],["relying",{"_index":4311,"title":{},"body":{"license.html":{}}}],["remain",{"_index":4099,"title":{},"body":{"license.html":{}}}],["remains",{"_index":3735,"title":{},"body":{"license.html":{}}}],["remarks",{"_index":154,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["removal",{"_index":4179,"title":{},"body":{"license.html":{}}}],["remove",{"_index":4178,"title":{},"body":{"license.html":{}}}],["removekeysforid",{"_index":2588,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["removekeysforid(keyid",{"_index":2627,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["removepublickey",{"_index":2589,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["removepublickey(publickey",{"_index":2629,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["removepublickeyforid",{"_index":2590,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["removepublickeyforid(keyid",{"_index":2631,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["rename",{"_index":974,"title":{},"body":{"injectables/AuthService.html":{}}}],["render",{"_index":3833,"title":{},"body":{"license.html":{}}}],["rendered",{"_index":4402,"title":{},"body":{"license.html":{}}}],["renderer",{"_index":1556,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["renderer2",{"_index":1557,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["repair",{"_index":2030,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["replaysubject",{"_index":536,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["represent",{"_index":4138,"title":{},"body":{"license.html":{}}}],["represents",{"_index":866,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["request",{"_index":1350,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["request.clone({headers",{"_index":1475,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{}}}],["request.headers.set('authorization",{"_index":1476,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{}}}],["request.method",{"_index":1506,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["request.urlwithparams",{"_index":1507,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["requesting",{"_index":1018,"title":{},"body":{"injectables/AuthService.html":{}}}],["requests",{"_index":1578,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["require",{"_index":2736,"title":{},"body":{"components/OrganizationComponent.html":{},"license.html":{}}}],["require('@src/assets/js/block",{"_index":148,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["require('openpgp",{"_index":2776,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"miscellaneous/variables.html":{}}}],["require('vcard",{"_index":3279,"title":{},"body":{"injectables/TransactionService.html":{},"miscellaneous/variables.html":{}}}],["required",{"_index":283,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["requirement",{"_index":4037,"title":{},"body":{"license.html":{}}}],["requirements",{"_index":4102,"title":{},"body":{"license.html":{}}}],["requires",{"_index":102,"title":{},"body":{"classes/AccountIndex.html":{},"license.html":{}}}],["requiring",{"_index":3858,"title":{},"body":{"license.html":{}}}],["res",{"_index":272,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["res.ok",{"_index":1053,"title":{},"body":{"injectables/AuthService.html":{}}}],["res.status",{"_index":1056,"title":{},"body":{"injectables/AuthService.html":{}}}],["res.text",{"_index":1057,"title":{},"body":{"injectables/AuthService.html":{}}}],["researcher",{"_index":1901,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["resend",{"_index":3214,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["reserve",{"_index":2431,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenServiceStub.html":{},"miscellaneous/variables.html":{}}}],["reserveratio",{"_index":2443,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"miscellaneous/variables.html":{}}}],["reserves",{"_index":2438,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"miscellaneous/variables.html":{}}}],["reset",{"_index":446,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{},"overview.html":{}}}],["resettransactionslist",{"_index":3235,"title":{},"body":{"injectables/TransactionService.html":{}}}],["resize",{"_index":697,"title":{},"body":{"components/AppComponent.html":{}}}],["resolve",{"_index":1001,"title":{},"body":{"injectables/AuthService.html":{}}}],["resolve(false",{"_index":1023,"title":{},"body":{"injectables/AuthService.html":{}}}],["resolve(true",{"_index":987,"title":{},"body":{"injectables/AuthService.html":{}}}],["resolved",{"_index":1586,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["resource",{"_index":1383,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["resources",{"_index":3622,"title":{},"body":{"miscellaneous/functions.html":{}}}],["respect",{"_index":3761,"title":{},"body":{"license.html":{}}}],["response",{"_index":1366,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["responsebody",{"_index":2564,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["responsibilities",{"_index":979,"title":{},"body":{"injectables/AuthService.html":{},"license.html":{}}}],["responsible",{"_index":4261,"title":{},"body":{"license.html":{}}}],["restrict",{"_index":3823,"title":{},"body":{"license.html":{}}}],["restricting",{"_index":4009,"title":{},"body":{"license.html":{}}}],["restriction",{"_index":4213,"title":{},"body":{"license.html":{}}}],["restrictions",{"_index":4210,"title":{},"body":{"license.html":{}}}],["result",{"_index":57,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"classes/W3.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"routes.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}}}],["resulting",{"_index":3861,"title":{},"body":{"license.html":{}}}],["results",{"_index":59,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"classes/W3.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"routes.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}}}],["retail",{"_index":2332,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["retains",{"_index":4153,"title":{},"body":{"license.html":{}}}],["return",{"_index":134,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AdminComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"classes/UserServiceStub.html":{},"license.html":{}}}],["returned",{"_index":1299,"title":{},"body":{"classes/CustomValidator.html":{},"interceptors/ErrorInterceptor.html":{}}}],["returns",{"_index":112,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{}}}],["returnurl",{"_index":2889,"title":{},"body":{"guards/RoleGuard.html":{}}}],["reverse",{"_index":3216,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["reversetransaction",{"_index":3158,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["reviewing",{"_index":4413,"title":{},"body":{"license.html":{}}}],["revised",{"_index":4364,"title":{},"body":{"license.html":{}}}],["rewards",{"_index":2464,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ribe",{"_index":1824,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["right",{"_index":4148,"title":{},"body":{"license.html":{}}}],["rights",{"_index":3752,"title":{},"body":{"license.html":{}}}],["risk",{"_index":4385,"title":{},"body":{"license.html":{}}}],["road",{"_index":1634,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["role",{"_index":508,"title":{},"body":{"interfaces/Action.html":{},"components/AdminComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["roleguard",{"_index":2876,"title":{"guards/RoleGuard.html":{}},"body":{"guards/RoleGuard.html":{},"coverage.html":{}}}],["roles",{"_index":2882,"title":{},"body":{"guards/RoleGuard.html":{}}}],["rom",{"_index":4156,"title":{},"body":{"license.html":{}}}],["root",{"_index":638,"title":{},"body":{"components/AppComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"injectables/ErrorDialogService.html":{},"injectables/LocationService.html":{},"injectables/LoggingService.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["root'},{'name",{"_index":299,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["route",{"_index":515,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"guards/AuthGuard.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"components/TokenDetailsComponent.html":{},"coverage.html":{},"index.html":{}}}],["route.data.roles",{"_index":2885,"title":{},"body":{"guards/RoleGuard.html":{}}}],["route.data.roles.indexof(currentuser.role",{"_index":2886,"title":{},"body":{"guards/RoleGuard.html":{}}}],["router",{"_index":218,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"guards/RoleGuard.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{}}}],["routerlink",{"_index":338,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["routerlinkdirectivestub",{"_index":337,"title":{"directives/RouterLinkDirectiveStub.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["routermodule",{"_index":499,"title":{},"body":{"modules/AccountsRoutingModule.html":{},"modules/AdminRoutingModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsRoutingModule.html":{}}}],["routermodule.forchild(routes",{"_index":504,"title":{},"body":{"modules/AccountsRoutingModule.html":{},"modules/AdminRoutingModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsRoutingModule.html":{}}}],["routermodule.forroot(routes",{"_index":774,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["routerstatesnapshot",{"_index":852,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["routes",{"_index":498,"title":{"routes.html":{}},"body":{"modules/AccountsRoutingModule.html":{},"modules/AdminRoutingModule.html":{},"modules/AppRoutingModule.html":{},"guards/AuthGuard.html":{},"modules/AuthRoutingModule.html":{},"interceptors/MockBackendInterceptor.html":{},"modules/PagesRoutingModule.html":{},"guards/RoleGuard.html":{},"modules/SettingsRoutingModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsRoutingModule.html":{},"overview.html":{},"routes.html":{}}}],["route}.\\n${error.message",{"_index":1466,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["route}.\\n${error.message}.\\nstatus",{"_index":1462,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["routing.module",{"_index":453,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["routing.module.ts",{"_index":497,"title":{},"body":{"modules/AccountsRoutingModule.html":{},"modules/AdminRoutingModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsRoutingModule.html":{}}}],["row",{"_index":571,"title":{},"body":{"components/AdminComponent.html":{}}}],["row.isexpanded",{"_index":615,"title":{},"body":{"components/AdminComponent.html":{}}}],["royalty",{"_index":4276,"title":{},"body":{"license.html":{}}}],["rsv",{"_index":1599,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/TokenServiceStub.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["rubbish",{"_index":1959,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ruben",{"_index":1622,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["rueben",{"_index":1623,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ruiru",{"_index":1731,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["rules",{"_index":4165,"title":{},"body":{"license.html":{}}}],["run",{"_index":3645,"title":{},"body":{"index.html":{},"license.html":{}}}],["running",{"_index":3678,"title":{},"body":{"index.html":{},"license.html":{}}}],["runs",{"_index":3934,"title":{},"body":{"license.html":{}}}],["runtime",{"_index":1420,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["rural",{"_index":1843,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["rxjs",{"_index":542,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"guards/AuthGuard.html":{},"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"classes/UserServiceStub.html":{},"dependencies.html":{}}}],["rxjs/operators",{"_index":392,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"components/TokenDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["s",{"_index":928,"title":{},"body":{"injectables/AuthService.html":{},"injectables/TransactionService.html":{}}}],["s.signature",{"_index":2801,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["sabuni",{"_index":2276,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sad",{"_index":693,"title":{},"body":{"components/AppComponent.html":{}}}],["safe",{"_index":2905,"title":{},"body":{"pipes/SafePipe.html":{}}}],["safepipe",{"_index":2902,"title":{"pipes/SafePipe.html":{}},"body":{"pipes/SafePipe.html":{},"modules/SharedModule.html":{},"coverage.html":{},"overview.html":{}}}],["safest",{"_index":4430,"title":{},"body":{"license.html":{}}}],["sake",{"_index":3785,"title":{},"body":{"license.html":{}}}],["sale",{"_index":4284,"title":{},"body":{"license.html":{}}}],["sales",{"_index":2059,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["salon",{"_index":2052,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["saloon",{"_index":2060,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["samaki",{"_index":2158,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sambusa",{"_index":2232,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["same",{"_index":3766,"title":{},"body":{"license.html":{}}}],["samosa",{"_index":2156,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sanitizer",{"_index":2912,"title":{},"body":{"pipes/SafePipe.html":{}}}],["sarafu",{"_index":53,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"classes/TokenRegistry.html":{},"components/TransactionDetailsComponent.html":{},"miscellaneous/variables.html":{}}}],["sarafutoken",{"_index":3091,"title":{},"body":{"injectables/TokenService.html":{}}}],["sarafutoken.methods.balanceof(address).call",{"_index":3094,"title":{},"body":{"injectables/TokenService.html":{}}}],["satisfy",{"_index":4101,"title":{},"body":{"license.html":{}}}],["sausages",{"_index":2202,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["savings",{"_index":2293,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["saying",{"_index":4097,"title":{},"body":{"license.html":{}}}],["scaffolding",{"_index":3658,"title":{},"body":{"index.html":{}}}],["scan",{"_index":1067,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["scan(settings",{"_index":1088,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["scanfilter",{"_index":2915,"title":{},"body":{"classes/Settings.html":{},"classes/W3.html":{}}}],["sch",{"_index":1871,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["schema",{"_index":3636,"title":{},"body":{"miscellaneous/functions.html":{}}}],["schemas",{"_index":3559,"title":{},"body":{"dependencies.html":{}}}],["school",{"_index":1872,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["science",{"_index":1919,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["scope",{"_index":4333,"title":{},"body":{"license.html":{}}}],["scrap",{"_index":1956,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["script",{"_index":3676,"title":{},"body":{"index.html":{}}}],["scripts",{"_index":3940,"title":{},"body":{"license.html":{}}}],["search",{"_index":192,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsRoutingModule.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["search'},{'name",{"_index":295,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["search.component",{"_index":492,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{}}}],["search.component.html",{"_index":196,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.scss",{"_index":194,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts",{"_index":184,"title":{},"body":{"components/AccountSearchComponent.html":{},"coverage.html":{}}}],["search.component.ts:16",{"_index":232,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:17",{"_index":234,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:18",{"_index":233,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:19",{"_index":235,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:20",{"_index":237,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:21",{"_index":236,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:22",{"_index":226,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:23",{"_index":230,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:24",{"_index":229,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:25",{"_index":219,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:33",{"_index":220,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:45",{"_index":239,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:46",{"_index":241,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:47",{"_index":243,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:49",{"_index":223,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:57",{"_index":224,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:71",{"_index":222,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search/account",{"_index":183,"title":{},"body":{"components/AccountSearchComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"coverage.html":{}}}],["secondarily",{"_index":3871,"title":{},"body":{"license.html":{}}}],["secondary",{"_index":1883,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["secp256k1",{"_index":3277,"title":{},"body":{"injectables/TransactionService.html":{}}}],["secp256k1.ecdsasign(txmsg",{"_index":3344,"title":{},"body":{"injectables/TransactionService.html":{}}}],["secretary",{"_index":2064,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["section",{"_index":3988,"title":{},"body":{"license.html":{}}}],["sections",{"_index":1436,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"license.html":{}}}],["secure",{"_index":2957,"title":{},"body":{"components/SettingsComponent.html":{}}}],["security",{"_index":2062,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["see",{"_index":3688,"title":{},"body":{"index.html":{},"license.html":{}}}],["seedling",{"_index":1967,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["seedlings",{"_index":1968,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["seigei",{"_index":1635,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["select",{"_index":2481,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["selection.directive",{"_index":2985,"title":{},"body":{"modules/SharedModule.html":{}}}],["selection.directive.ts",{"_index":1551,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"coverage.html":{}}}],["selection.directive.ts:20",{"_index":1559,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["selection.directive.ts:6",{"_index":1558,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["selector",{"_index":190,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["sell",{"_index":4299,"title":{},"body":{"license.html":{}}}],["selling",{"_index":3483,"title":{},"body":{"classes/UserServiceStub.html":{},"license.html":{}}}],["semiconductor",{"_index":3845,"title":{},"body":{"license.html":{}}}],["send",{"_index":811,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{}}}],["senddebuglevelmessage",{"_index":1513,"title":{},"body":{"injectables/LoggingService.html":{}}}],["senddebuglevelmessage(message",{"_index":1523,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sender",{"_index":1184,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["senderaddress",{"_index":3255,"title":{},"body":{"injectables/TransactionService.html":{}}}],["senderbloxberglink",{"_index":3155,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["senderrorlevelmessage",{"_index":1514,"title":{},"body":{"injectables/LoggingService.html":{}}}],["senderrorlevelmessage(message",{"_index":1525,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendfatallevelmessage",{"_index":1515,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendfatallevelmessage(message",{"_index":1527,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendinfolevelmessage",{"_index":1516,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendinfolevelmessage(message",{"_index":1529,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendloglevelmessage",{"_index":1517,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendloglevelmessage(message",{"_index":1531,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendresponse",{"_index":903,"title":{},"body":{"injectables/AuthService.html":{}}}],["sendresponse(hobaresponseencoded",{"_index":920,"title":{},"body":{"injectables/AuthService.html":{}}}],["sendtracelevelmessage",{"_index":1518,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendtracelevelmessage(message",{"_index":1533,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendwarnlevelmessage",{"_index":1519,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendwarnlevelmessage(message",{"_index":1535,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sentence",{"_index":1435,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["sentencesforwarninglogging",{"_index":1404,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["separable",{"_index":4110,"title":{},"body":{"license.html":{}}}],["separate",{"_index":978,"title":{},"body":{"injectables/AuthService.html":{},"license.html":{}}}],["separately",{"_index":4047,"title":{},"body":{"license.html":{}}}],["seremala",{"_index":2061,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["serial",{"_index":3056,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["server",{"_index":2470,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"index.html":{},"license.html":{}}}],["serverloggingurl",{"_index":759,"title":{},"body":{"modules/AppModule.html":{}}}],["serverloglevel",{"_index":757,"title":{},"body":{"modules/AppModule.html":{},"miscellaneous/variables.html":{}}}],["serves",{"_index":3926,"title":{},"body":{"license.html":{}}}],["service",{"_index":844,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"classes/TokenServiceStub.html":{},"classes/TransactionServiceStub.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["servicing",{"_index":4392,"title":{},"body":{"license.html":{}}}],["session",{"_index":977,"title":{},"body":{"injectables/AuthService.html":{}}}],["sessionlogincount",{"_index":892,"title":{},"body":{"injectables/AuthService.html":{}}}],["sessionstorage.getitem(btoa('cicada_session_token",{"_index":946,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/HttpConfigInterceptor.html":{}}}],["sessionstorage.removeitem(btoa('cicada_session_token",{"_index":1046,"title":{},"body":{"injectables/AuthService.html":{}}}],["sessionstorage.setitem(btoa('cicada_session_token",{"_index":986,"title":{},"body":{"injectables/AuthService.html":{}}}],["sessiontoken",{"_index":893,"title":{},"body":{"injectables/AuthService.html":{}}}],["sessiontokenresult",{"_index":1005,"title":{},"body":{"injectables/AuthService.html":{}}}],["set",{"_index":539,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/functions.html":{},"index.html":{}}}],["setconversion",{"_index":3236,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["setconversion(conversion",{"_index":3250,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["setkey",{"_index":802,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{}}}],["setkey(privatekeyarmored",{"_index":923,"title":{},"body":{"injectables/AuthService.html":{}}}],["setparammap",{"_index":523,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["setparammap(params",{"_index":537,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["sets",{"_index":1285,"title":{},"body":{"classes/CustomValidator.html":{}}}],["setstate",{"_index":904,"title":{},"body":{"injectables/AuthService.html":{}}}],["setstate(s",{"_index":926,"title":{},"body":{"injectables/AuthService.html":{}}}],["setting",{"_index":943,"title":{},"body":{"injectables/AuthService.html":{}}}],["settings",{"_index":1077,"title":{"classes/Settings.html":{}},"body":{"injectables/BlockSyncService.html":{},"components/OrganizationComponent.html":{},"modules/PagesRoutingModule.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"classes/W3.html":{},"coverage.html":{}}}],["settings'},{'name",{"_index":315,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["settings(this.scan",{"_index":1103,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.component.html",{"_index":2926,"title":{},"body":{"components/SettingsComponent.html":{}}}],["settings.component.scss",{"_index":2925,"title":{},"body":{"components/SettingsComponent.html":{}}}],["settings.registry",{"_index":1109,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.registry.load",{"_index":1123,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.registry.onload",{"_index":1117,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.scanfilter(settings",{"_index":1161,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.txhelper",{"_index":1111,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.txhelper.onconversion",{"_index":1115,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.txhelper.ontransfer",{"_index":1113,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.txhelper.processreceipt(m.data",{"_index":1131,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.w3.engine",{"_index":1107,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.w3.provider",{"_index":1105,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settingscomponent",{"_index":314,"title":{"components/SettingsComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["settingsmodule",{"_index":2962,"title":{"modules/SettingsModule.html":{}},"body":{"modules/SettingsModule.html":{},"modules.html":{},"overview.html":{}}}],["settingsroutingmodule",{"_index":2966,"title":{"modules/SettingsRoutingModule.html":{}},"body":{"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["settransaction",{"_index":3237,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["settransaction(transaction",{"_index":3252,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["sha256",{"_index":2758,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["sha3",{"_index":3269,"title":{},"body":{"injectables/TransactionService.html":{},"dependencies.html":{}}}],["shall",{"_index":3993,"title":{},"body":{"license.html":{}}}],["shamba",{"_index":1978,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shanzu",{"_index":1805,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["share",{"_index":543,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"license.html":{}}}],["shared",{"_index":3946,"title":{},"body":{"license.html":{}}}],["sharedmodule",{"_index":443,"title":{"modules/SharedModule.html":{}},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{},"modules.html":{},"overview.html":{}}}],["shepard",{"_index":2066,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shephard",{"_index":2067,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shepherd",{"_index":2018,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shirt",{"_index":2349,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shoe",{"_index":2065,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shop",{"_index":2300,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["short",{"_index":4445,"title":{},"body":{"license.html":{}}}],["show",{"_index":3769,"title":{},"body":{"license.html":{}}}],["siaya",{"_index":1832,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sickly",{"_index":2291,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["side",{"_index":1360,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["sidebar",{"_index":698,"title":{},"body":{"components/AppComponent.html":{},"components/FooterStubComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TopbarStubComponent.html":{}}}],["sidebar'},{'name",{"_index":317,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["sidebar.component.html",{"_index":2992,"title":{},"body":{"components/SidebarComponent.html":{}}}],["sidebar.component.scss",{"_index":2991,"title":{},"body":{"components/SidebarComponent.html":{}}}],["sidebar?.classlist.add('active",{"_index":709,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["sidebar?.classlist.contains('active",{"_index":708,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["sidebar?.classlist.remove('active",{"_index":712,"title":{},"body":{"components/AppComponent.html":{}}}],["sidebar?.classlist.toggle('active",{"_index":1571,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["sidebarcollapse",{"_index":703,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{}}}],["sidebarcollapse?.classlist.contains('active",{"_index":705,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["sidebarcollapse?.classlist.remove('active",{"_index":706,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["sidebarcollapse?.classlist.toggle('active",{"_index":1573,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["sidebarcomponent",{"_index":316,"title":{"components/SidebarComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["sidebarstubcomponent",{"_index":318,"title":{"components/SidebarStubComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["sig",{"_index":2789,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["sigei",{"_index":1630,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sign",{"_index":2591,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signer.html":{},"license.html":{}}}],["sign(digest",{"_index":2771,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["sign(plaintext",{"_index":2633,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["signable",{"_index":2768,"title":{"interfaces/Signable.html":{}},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"coverage.html":{}}}],["signature",{"_index":40,"title":{"interfaces/Signature.html":{}},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signer.html":{},"coverage.html":{},"miscellaneous/typealiases.html":{}}}],["signatureobject",{"_index":2686,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"injectables/TransactionService.html":{}}}],["signatureobject.recid",{"_index":3349,"title":{},"body":{"injectables/TransactionService.html":{}}}],["signatureobject.signature",{"_index":2688,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["signatureobject.signature.slice(0",{"_index":3346,"title":{},"body":{"injectables/TransactionService.html":{}}}],["signatureobject.signature.slice(32",{"_index":3348,"title":{},"body":{"injectables/TransactionService.html":{}}}],["signchallenge",{"_index":933,"title":{},"body":{"injectables/AuthService.html":{}}}],["signchallenge(o.challenge",{"_index":1003,"title":{},"body":{"injectables/AuthService.html":{}}}],["signed",{"_index":975,"title":{},"body":{"injectables/AuthService.html":{}}}],["signer",{"_index":104,"title":{"interfaces/Signer.html":{}},"body":{"classes/AccountIndex.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"coverage.html":{}}}],["signer.ts",{"_index":2749,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"coverage.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}}}],["signer.ts:18",{"_index":2998,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:19",{"_index":2999,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:20",{"_index":2997,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:21",{"_index":3000,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:22",{"_index":3002,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:23",{"_index":3001,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:28",{"_index":2761,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:29",{"_index":2759,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:30",{"_index":2760,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:31",{"_index":2765,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:32",{"_index":2762,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:33",{"_index":2763,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:34",{"_index":2764,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:35",{"_index":2757,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:43",{"_index":2766,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:47",{"_index":2769,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:52",{"_index":2774,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:7",{"_index":2996,"title":{},"body":{"interfaces/Signable.html":{}}}],["signer.ts:77",{"_index":2772,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signeraddress",{"_index":76,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["significant",{"_index":4139,"title":{},"body":{"license.html":{}}}],["silc",{"_index":2296,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["silver",{"_index":3461,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["sima",{"_index":2229,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["similar",{"_index":4007,"title":{},"body":{"license.html":{}}}],["simsim",{"_index":2220,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["simu",{"_index":2336,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["simulate",{"_index":2469,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["simultaneously",{"_index":4352,"title":{},"body":{"license.html":{}}}],["sinai",{"_index":1629,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["single",{"_index":4325,"title":{},"body":{"license.html":{}}}],["size",{"_index":4510,"title":{},"body":{"miscellaneous/variables.html":{}}}],["slash",{"_index":2854,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["smokie",{"_index":2240,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["smokies",{"_index":2241,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sms",{"_index":3215,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["snackbar",{"_index":3162,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["snacks",{"_index":2233,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["soap",{"_index":2277,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["societies",{"_index":3028,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["socks",{"_index":2324,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["soda",{"_index":2153,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["software",{"_index":3708,"title":{},"body":{"license.html":{}}}],["soko",{"_index":2157,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["solar",{"_index":2411,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sold",{"_index":4122,"title":{},"body":{"license.html":{}}}],["soldier",{"_index":1941,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sole",{"_index":3973,"title":{},"body":{"license.html":{}}}],["solely",{"_index":3985,"title":{},"body":{"license.html":{}}}],["somehow",{"_index":813,"title":{},"body":{"components/AuthComponent.html":{}}}],["something",{"_index":690,"title":{},"body":{"components/AppComponent.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["sort",{"_index":350,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["soup",{"_index":2238,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["source",{"_index":4,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"classes/W3.html":{},"index.html":{},"license.html":{}}}],["sourcetoken",{"_index":1188,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["south",{"_index":1619,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["soweto",{"_index":1728,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["spare",{"_index":2322,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["spareparts",{"_index":2313,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["speak",{"_index":1015,"title":{},"body":{"injectables/AuthService.html":{},"license.html":{}}}],["special",{"_index":3827,"title":{},"body":{"license.html":{}}}],["specific",{"_index":121,"title":{},"body":{"classes/AccountIndex.html":{},"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["specifically",{"_index":3950,"title":{},"body":{"license.html":{}}}],["specified",{"_index":131,"title":{},"body":{"classes/AccountIndex.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/TokenRegistry.html":{},"license.html":{}}}],["specifies",{"_index":4370,"title":{},"body":{"license.html":{}}}],["specify",{"_index":4373,"title":{},"body":{"license.html":{}}}],["spinach",{"_index":2239,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["spinner",{"_index":490,"title":{},"body":{"modules/AccountsModule.html":{}}}],["spirit",{"_index":4365,"title":{},"body":{"license.html":{}}}],["src/.../account.ts",{"_index":4477,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../accountindex.ts",{"_index":4474,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../array",{"_index":3589,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../clipboard",{"_index":3590,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../environment.dev.ts",{"_index":4478,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../environment.prod.ts",{"_index":4479,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../environment.ts",{"_index":4480,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../export",{"_index":3591,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../http",{"_index":3592,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../mock",{"_index":4476,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../pgp",{"_index":4473,"title":{},"body":{"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}}}],["src/.../read",{"_index":3593,"title":{},"body":{"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["src/.../schema",{"_index":3594,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../token",{"_index":4475,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../transaction.service.ts",{"_index":4481,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../user.service.ts",{"_index":4482,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/app/_eth/accountindex.ts",{"_index":63,"title":{},"body":{"classes/AccountIndex.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/_eth/accountindex.ts:121",{"_index":138,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/accountindex.ts:21",{"_index":97,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/accountindex.ts:23",{"_index":98,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/accountindex.ts:25",{"_index":87,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/accountindex.ts:57",{"_index":100,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/accountindex.ts:78",{"_index":118,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/accountindex.ts:95",{"_index":130,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/token",{"_index":3040,"title":{},"body":{"classes/TokenRegistry.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/_guards/auth.guard.ts",{"_index":836,"title":{},"body":{"guards/AuthGuard.html":{},"coverage.html":{}}}],["src/app/_guards/auth.guard.ts:17",{"_index":842,"title":{},"body":{"guards/AuthGuard.html":{}}}],["src/app/_guards/auth.guard.ts:35",{"_index":853,"title":{},"body":{"guards/AuthGuard.html":{}}}],["src/app/_guards/role.guard.ts",{"_index":2877,"title":{},"body":{"guards/RoleGuard.html":{},"coverage.html":{}}}],["src/app/_guards/role.guard.ts:17",{"_index":2878,"title":{},"body":{"guards/RoleGuard.html":{}}}],["src/app/_guards/role.guard.ts:35",{"_index":2879,"title":{},"body":{"guards/RoleGuard.html":{}}}],["src/app/_helpers/array",{"_index":3495,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_helpers/clipboard",{"_index":3498,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_helpers/custom",{"_index":1244,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"coverage.html":{}}}],["src/app/_helpers/custom.validator.ts",{"_index":1276,"title":{},"body":{"classes/CustomValidator.html":{},"coverage.html":{}}}],["src/app/_helpers/custom.validator.ts:13",{"_index":1284,"title":{},"body":{"classes/CustomValidator.html":{}}}],["src/app/_helpers/custom.validator.ts:28",{"_index":1294,"title":{},"body":{"classes/CustomValidator.html":{}}}],["src/app/_helpers/export",{"_index":3501,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_helpers/global",{"_index":1397,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"coverage.html":{}}}],["src/app/_helpers/http",{"_index":3504,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_helpers/mock",{"_index":1575,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/_helpers/read",{"_index":3506,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["src/app/_helpers/schema",{"_index":3510,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_interceptors/error.interceptor.ts",{"_index":1342,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"coverage.html":{}}}],["src/app/_interceptors/error.interceptor.ts:14",{"_index":1345,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["src/app/_interceptors/error.interceptor.ts:22",{"_index":1349,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["src/app/_interceptors/http",{"_index":1471,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{},"coverage.html":{}}}],["src/app/_interceptors/logging.interceptor.ts",{"_index":1495,"title":{},"body":{"interceptors/LoggingInterceptor.html":{},"coverage.html":{}}}],["src/app/_interceptors/logging.interceptor.ts:14",{"_index":1496,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["src/app/_interceptors/logging.interceptor.ts:20",{"_index":1497,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["src/app/_models/account.ts",{"_index":6,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/_models/mappings.ts",{"_index":506,"title":{},"body":{"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"coverage.html":{}}}],["src/app/_models/settings.ts",{"_index":2914,"title":{},"body":{"classes/Settings.html":{},"classes/W3.html":{},"coverage.html":{}}}],["src/app/_models/settings.ts:16",{"_index":3485,"title":{},"body":{"classes/W3.html":{}}}],["src/app/_models/settings.ts:17",{"_index":3486,"title":{},"body":{"classes/W3.html":{}}}],["src/app/_models/settings.ts:2",{"_index":2922,"title":{},"body":{"classes/Settings.html":{}}}],["src/app/_models/settings.ts:6",{"_index":2921,"title":{},"body":{"classes/Settings.html":{}}}],["src/app/_models/settings.ts:7",{"_index":2920,"title":{},"body":{"classes/Settings.html":{}}}],["src/app/_models/settings.ts:8",{"_index":2919,"title":{},"body":{"classes/Settings.html":{}}}],["src/app/_models/staff.ts",{"_index":3003,"title":{},"body":{"interfaces/Staff.html":{},"coverage.html":{}}}],["src/app/_models/token.ts",{"_index":3006,"title":{},"body":{"interfaces/Token.html":{},"coverage.html":{}}}],["src/app/_models/transaction.ts",{"_index":1166,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"coverage.html":{}}}],["src/app/_models/transaction.ts:12",{"_index":3429,"title":{},"body":{"classes/TxToken.html":{}}}],["src/app/_models/transaction.ts:13",{"_index":3430,"title":{},"body":{"classes/TxToken.html":{}}}],["src/app/_models/transaction.ts:14",{"_index":3431,"title":{},"body":{"classes/TxToken.html":{}}}],["src/app/_models/transaction.ts:18",{"_index":3424,"title":{},"body":{"classes/Tx.html":{}}}],["src/app/_models/transaction.ts:19",{"_index":3425,"title":{},"body":{"classes/Tx.html":{}}}],["src/app/_models/transaction.ts:20",{"_index":3426,"title":{},"body":{"classes/Tx.html":{}}}],["src/app/_models/transaction.ts:21",{"_index":3427,"title":{},"body":{"classes/Tx.html":{}}}],["src/app/_models/transaction.ts:22",{"_index":3428,"title":{},"body":{"classes/Tx.html":{}}}],["src/app/_models/transaction.ts:26",{"_index":3144,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:27",{"_index":3146,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:28",{"_index":3147,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:29",{"_index":3145,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:30",{"_index":3148,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:31",{"_index":3149,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:32",{"_index":3151,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:33",{"_index":3150,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:37",{"_index":1191,"title":{},"body":{"classes/Conversion.html":{}}}],["src/app/_models/transaction.ts:38",{"_index":1192,"title":{},"body":{"classes/Conversion.html":{}}}],["src/app/_models/transaction.ts:39",{"_index":1193,"title":{},"body":{"classes/Conversion.html":{}}}],["src/app/_models/transaction.ts:4",{"_index":1176,"title":{},"body":{"classes/BlocksBloom.html":{}}}],["src/app/_models/transaction.ts:40",{"_index":1194,"title":{},"body":{"classes/Conversion.html":{}}}],["src/app/_models/transaction.ts:41",{"_index":1195,"title":{},"body":{"classes/Conversion.html":{}}}],["src/app/_models/transaction.ts:42",{"_index":1197,"title":{},"body":{"classes/Conversion.html":{}}}],["src/app/_models/transaction.ts:43",{"_index":1196,"title":{},"body":{"classes/Conversion.html":{}}}],["src/app/_models/transaction.ts:5",{"_index":1173,"title":{},"body":{"classes/BlocksBloom.html":{}}}],["src/app/_models/transaction.ts:6",{"_index":1174,"title":{},"body":{"classes/BlocksBloom.html":{}}}],["src/app/_models/transaction.ts:7",{"_index":1172,"title":{},"body":{"classes/BlocksBloom.html":{}}}],["src/app/_models/transaction.ts:8",{"_index":1175,"title":{},"body":{"classes/BlocksBloom.html":{}}}],["src/app/_pgp/pgp",{"_index":2566,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"coverage.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}}}],["src/app/_services/auth.service.ts",{"_index":890,"title":{},"body":{"injectables/AuthService.html":{},"coverage.html":{}}}],["src/app/_services/auth.service.ts:118",{"_index":916,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:147",{"_index":918,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:15",{"_index":930,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:157",{"_index":924,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:16",{"_index":929,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:17",{"_index":907,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:181",{"_index":919,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:187",{"_index":911,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:193",{"_index":910,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:204",{"_index":909,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:27",{"_index":913,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:38",{"_index":927,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:42",{"_index":912,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:61",{"_index":921,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:84",{"_index":908,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:99",{"_index":914,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/block",{"_index":1060,"title":{},"body":{"injectables/BlockSyncService.html":{},"coverage.html":{}}}],["src/app/_services/error",{"_index":1323,"title":{},"body":{"injectables/ErrorDialogService.html":{},"coverage.html":{}}}],["src/app/_services/location.service.ts",{"_index":1479,"title":{},"body":{"injectables/LocationService.html":{},"coverage.html":{}}}],["src/app/_services/location.service.ts:10",{"_index":1484,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/location.service.ts:16",{"_index":1487,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/location.service.ts:20",{"_index":1486,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/location.service.ts:24",{"_index":1490,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/location.service.ts:28",{"_index":1489,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/logging.service.ts",{"_index":1510,"title":{},"body":{"injectables/LoggingService.html":{},"coverage.html":{}}}],["src/app/_services/logging.service.ts:18",{"_index":1534,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:22",{"_index":1524,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:26",{"_index":1530,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:30",{"_index":1532,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:34",{"_index":1536,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:38",{"_index":1526,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:42",{"_index":1528,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:8",{"_index":1537,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:9",{"_index":1522,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/registry.service.ts",{"_index":2855,"title":{},"body":{"injectables/RegistryService.html":{},"coverage.html":{}}}],["src/app/_services/registry.service.ts:11",{"_index":2871,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/registry.service.ts:12",{"_index":2863,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/registry.service.ts:13",{"_index":2870,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/registry.service.ts:14",{"_index":2859,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/registry.service.ts:21",{"_index":2860,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/registry.service.ts:25",{"_index":2861,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/token.service.ts",{"_index":3067,"title":{},"body":{"injectables/TokenService.html":{},"coverage.html":{}}}],["src/app/_services/token.service.ts:13",{"_index":3077,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:14",{"_index":3078,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:15",{"_index":3070,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:29",{"_index":3075,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:34",{"_index":3074,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:38",{"_index":3072,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/transaction.service.ts",{"_index":3227,"title":{},"body":{"injectables/TransactionService.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/_services/transaction.service.ts:102",{"_index":3244,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:108",{"_index":3257,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:26",{"_index":3261,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:27",{"_index":3260,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:28",{"_index":3263,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:29",{"_index":3264,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:30",{"_index":3265,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:31",{"_index":3239,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:45",{"_index":3248,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:49",{"_index":3246,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:53",{"_index":3253,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:73",{"_index":3251,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:89",{"_index":3242,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:97",{"_index":3249,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/user.service.ts",{"_index":3529,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/app",{"_index":765,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["src/app/app.component.ts",{"_index":637,"title":{},"body":{"components/AppComponent.html":{},"coverage.html":{}}}],["src/app/app.component.ts:12",{"_index":671,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:13",{"_index":669,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:14",{"_index":667,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:15",{"_index":653,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:43",{"_index":662,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:68",{"_index":660,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:74",{"_index":658,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.module.ts",{"_index":733,"title":{},"body":{"modules/AppModule.html":{}}}],["src/app/auth/_directives/password",{"_index":2837,"title":{},"body":{"directives/PasswordToggleDirective.html":{},"coverage.html":{}}}],["src/app/auth/auth",{"_index":888,"title":{},"body":{"modules/AuthRoutingModule.html":{}}}],["src/app/auth/auth.component.ts",{"_index":776,"title":{},"body":{"components/AuthComponent.html":{},"coverage.html":{}}}],["src/app/auth/auth.component.ts:14",{"_index":794,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:15",{"_index":796,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:16",{"_index":795,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:17",{"_index":787,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:25",{"_index":789,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:36",{"_index":798,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:38",{"_index":790,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:48",{"_index":788,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:59",{"_index":791,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:67",{"_index":793,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.module.ts",{"_index":883,"title":{},"body":{"modules/AuthModule.html":{}}}],["src/app/pages/accounts/account",{"_index":182,"title":{},"body":{"components/AccountSearchComponent.html":{},"coverage.html":{}}}],["src/app/pages/accounts/accounts",{"_index":496,"title":{},"body":{"modules/AccountsRoutingModule.html":{}}}],["src/app/pages/accounts/accounts.component.ts",{"_index":340,"title":{},"body":{"components/AccountsComponent.html":{},"coverage.html":{}}}],["src/app/pages/accounts/accounts.component.ts:20",{"_index":371,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:21",{"_index":367,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:22",{"_index":375,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:23",{"_index":373,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:24",{"_index":379,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:25",{"_index":368,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:26",{"_index":369,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:28",{"_index":383,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:29",{"_index":358,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:48",{"_index":363,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:57",{"_index":360,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:61",{"_index":366,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:65",{"_index":362,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:76",{"_index":364,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:84",{"_index":361,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.module.ts",{"_index":448,"title":{},"body":{"modules/AccountsModule.html":{}}}],["src/app/pages/accounts/create",{"_index":1198,"title":{},"body":{"components/CreateAccountComponent.html":{},"coverage.html":{}}}],["src/app/pages/admin/admin",{"_index":636,"title":{},"body":{"modules/AdminRoutingModule.html":{}}}],["src/app/pages/admin/admin.component.ts",{"_index":550,"title":{},"body":{"components/AdminComponent.html":{},"coverage.html":{}}}],["src/app/pages/admin/admin.component.ts:25",{"_index":575,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:26",{"_index":578,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:27",{"_index":573,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:28",{"_index":574,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:30",{"_index":579,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:31",{"_index":559,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:46",{"_index":572,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:49",{"_index":567,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:53",{"_index":561,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:57",{"_index":564,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:63",{"_index":566,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:69",{"_index":570,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:73",{"_index":568,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.module.ts",{"_index":633,"title":{},"body":{"modules/AdminModule.html":{}}}],["src/app/pages/pages",{"_index":2825,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["src/app/pages/pages.component.ts",{"_index":2806,"title":{},"body":{"components/PagesComponent.html":{},"coverage.html":{}}}],["src/app/pages/pages.component.ts:10",{"_index":2810,"title":{},"body":{"components/PagesComponent.html":{}}}],["src/app/pages/pages.module.ts",{"_index":2819,"title":{},"body":{"modules/PagesModule.html":{}}}],["src/app/pages/settings/organization/organization.component.ts",{"_index":2714,"title":{},"body":{"components/OrganizationComponent.html":{},"coverage.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:12",{"_index":2723,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:13",{"_index":2724,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:14",{"_index":2720,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:20",{"_index":2721,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:28",{"_index":2726,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:30",{"_index":2722,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/settings",{"_index":2975,"title":{},"body":{"modules/SettingsRoutingModule.html":{}}}],["src/app/pages/settings/settings.component.ts",{"_index":2924,"title":{},"body":{"components/SettingsComponent.html":{},"coverage.html":{}}}],["src/app/pages/settings/settings.component.ts:16",{"_index":2933,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:17",{"_index":2932,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:18",{"_index":2935,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:19",{"_index":2937,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:21",{"_index":2936,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:22",{"_index":2927,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:28",{"_index":2931,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:37",{"_index":2928,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:41",{"_index":2929,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:45",{"_index":2930,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.module.ts",{"_index":2967,"title":{},"body":{"modules/SettingsModule.html":{}}}],["src/app/pages/tokens/token",{"_index":3007,"title":{},"body":{"components/TokenDetailsComponent.html":{},"coverage.html":{}}}],["src/app/pages/tokens/tokens",{"_index":3138,"title":{},"body":{"modules/TokensRoutingModule.html":{}}}],["src/app/pages/tokens/tokens.component.ts",{"_index":3100,"title":{},"body":{"components/TokensComponent.html":{},"coverage.html":{}}}],["src/app/pages/tokens/tokens.component.ts:18",{"_index":3113,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:19",{"_index":3112,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:20",{"_index":3114,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:21",{"_index":3115,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:22",{"_index":3106,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:30",{"_index":3109,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:41",{"_index":3107,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:45",{"_index":3111,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:49",{"_index":3108,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.module.ts",{"_index":3129,"title":{},"body":{"modules/TokensModule.html":{}}}],["src/app/pages/transactions/transaction",{"_index":3152,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"coverage.html":{}}}],["src/app/pages/transactions/transactions",{"_index":3423,"title":{},"body":{"modules/TransactionsRoutingModule.html":{}}}],["src/app/pages/transactions/transactions.component.ts",{"_index":3363,"title":{},"body":{"components/TransactionsComponent.html":{},"coverage.html":{}}}],["src/app/pages/transactions/transactions.component.ts:17",{"_index":3387,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:18",{"_index":3388,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:19",{"_index":3383,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:20",{"_index":3384,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:21",{"_index":3389,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:22",{"_index":3386,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:23",{"_index":3390,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:24",{"_index":3391,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:26",{"_index":3385,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:27",{"_index":3375,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:37",{"_index":3380,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:47",{"_index":3382,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:51",{"_index":3376,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:55",{"_index":3378,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:66",{"_index":3379,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:71",{"_index":3377,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.module.ts",{"_index":3419,"title":{},"body":{"modules/TransactionsModule.html":{}}}],["src/app/shared/_directives/menu",{"_index":1550,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"coverage.html":{}}}],["src/app/shared/_pipes/safe.pipe.ts",{"_index":2904,"title":{},"body":{"pipes/SafePipe.html":{},"coverage.html":{}}}],["src/app/shared/_pipes/safe.pipe.ts:11",{"_index":2909,"title":{},"body":{"pipes/SafePipe.html":{}}}],["src/app/shared/_pipes/token",{"_index":3032,"title":{},"body":{"pipes/TokenRatioPipe.html":{},"coverage.html":{}}}],["src/app/shared/error",{"_index":1307,"title":{},"body":{"components/ErrorDialogComponent.html":{},"coverage.html":{}}}],["src/app/shared/footer/footer.component.ts",{"_index":1387,"title":{},"body":{"components/FooterComponent.html":{},"coverage.html":{}}}],["src/app/shared/footer/footer.component.ts:13",{"_index":1392,"title":{},"body":{"components/FooterComponent.html":{}}}],["src/app/shared/footer/footer.component.ts:9",{"_index":1391,"title":{},"body":{"components/FooterComponent.html":{}}}],["src/app/shared/shared.module.ts",{"_index":2980,"title":{},"body":{"modules/SharedModule.html":{}}}],["src/app/shared/sidebar/sidebar.component.ts",{"_index":2990,"title":{},"body":{"components/SidebarComponent.html":{},"coverage.html":{}}}],["src/app/shared/sidebar/sidebar.component.ts:13",{"_index":2994,"title":{},"body":{"components/SidebarComponent.html":{}}}],["src/app/shared/sidebar/sidebar.component.ts:9",{"_index":2993,"title":{},"body":{"components/SidebarComponent.html":{}}}],["src/app/shared/topbar/topbar.component.ts",{"_index":3139,"title":{},"body":{"components/TopbarComponent.html":{},"coverage.html":{}}}],["src/app/shared/topbar/topbar.component.ts:13",{"_index":3143,"title":{},"body":{"components/TopbarComponent.html":{}}}],["src/app/shared/topbar/topbar.component.ts:9",{"_index":3142,"title":{},"body":{"components/TopbarComponent.html":{}}}],["src/assets/js/ethtx/dist",{"_index":3275,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/assets/js/ethtx/dist/hex",{"_index":252,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["src/assets/js/ethtx/dist/tx",{"_index":3276,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/assets/js/hoba",{"_index":934,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/assets/js/hoba.js",{"_index":932,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/environments",{"_index":3692,"title":{},"body":{"index.html":{}}}],["src/environments/environment",{"_index":145,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AppModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"injectables/LocationService.html":{},"injectables/RegistryService.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["src/environments/environment.dev.ts",{"_index":3535,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/environments/environment.prod.ts",{"_index":3536,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/environments/environment.ts",{"_index":3537,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/testing/activated",{"_index":514,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"coverage.html":{}}}],["src/testing/router",{"_index":2891,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{},"coverage.html":{}}}],["src/testing/shared",{"_index":1394,"title":{},"body":{"components/FooterStubComponent.html":{},"components/SidebarStubComponent.html":{},"components/TopbarStubComponent.html":{},"coverage.html":{}}}],["src/testing/token",{"_index":3096,"title":{},"body":{"classes/TokenServiceStub.html":{},"coverage.html":{}}}],["src/testing/transaction",{"_index":3358,"title":{},"body":{"classes/TransactionServiceStub.html":{},"coverage.html":{}}}],["src/testing/user",{"_index":3433,"title":{},"body":{"classes/UserServiceStub.html":{},"coverage.html":{}}}],["srf",{"_index":3205,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["stack",{"_index":1427,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["stadium",{"_index":1761,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["staff",{"_index":622,"title":{"interfaces/Staff.html":{}},"body":{"components/AdminComponent.html":{},"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"components/SettingsComponent.html":{},"interfaces/Staff.html":{},"coverage.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["staff@grassrootseconomics.net",{"_index":1019,"title":{},"body":{"injectables/AuthService.html":{}}}],["stand",{"_index":3813,"title":{},"body":{"license.html":{}}}],["standard",{"_index":3911,"title":{},"body":{"license.html":{}}}],["standards",{"_index":3914,"title":{},"body":{"license.html":{}}}],["starehe",{"_index":1764,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["start",{"_index":4431,"title":{},"body":{"license.html":{}}}],["start:dev",{"_index":3651,"title":{},"body":{"index.html":{}}}],["started",{"_index":3639,"title":{"index.html":{},"license.html":{}},"body":{}}],["starts",{"_index":4446,"title":{},"body":{"license.html":{}}}],["starttime",{"_index":1502,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["state",{"_index":581,"title":{},"body":{"components/AdminComponent.html":{},"guards/AuthGuard.html":{},"classes/CustomErrorStateMatcher.html":{},"guards/RoleGuard.html":{},"coverage.html":{},"license.html":{}}}],["state('collapsed",{"_index":589,"title":{},"body":{"components/AdminComponent.html":{}}}],["state('expanded",{"_index":595,"title":{},"body":{"components/AdminComponent.html":{}}}],["state.url",{"_index":2890,"title":{},"body":{"guards/RoleGuard.html":{}}}],["stated",{"_index":3961,"title":{},"body":{"license.html":{}}}],["statement",{"_index":4217,"title":{},"body":{"license.html":{}}}],["statements",{"_index":3489,"title":{},"body":{"coverage.html":{}}}],["states",{"_index":2741,"title":{},"body":{"components/OrganizationComponent.html":{},"license.html":{}}}],["static",{"_index":1279,"title":{},"body":{"classes/CustomValidator.html":{}}}],["stating",{"_index":4026,"title":{},"body":{"license.html":{}}}],["station",{"_index":2360,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["status",{"_index":562,"title":{},"body":{"components/AdminComponent.html":{},"guards/AuthGuard.html":{},"classes/CustomErrorStateMatcher.html":{},"components/ErrorDialogComponent.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"license.html":{}}}],["step",{"_index":2956,"title":{},"body":{"components/SettingsComponent.html":{}}}],["steps",{"_index":3773,"title":{},"body":{"license.html":{}}}],["stima",{"_index":2412,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["storage",{"_index":4056,"title":{},"body":{"license.html":{}}}],["store",{"_index":2638,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["store.ts",{"_index":2567,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["store.ts:10",{"_index":2626,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:100",{"_index":2691,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:106",{"_index":2692,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:11",{"_index":2616,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:110",{"_index":2696,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:115",{"_index":2693,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:119",{"_index":2698,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:12",{"_index":2621,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:123",{"_index":2695,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:127",{"_index":2699,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:13",{"_index":2619,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:131",{"_index":2701,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:135",{"_index":2710,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:139",{"_index":2712,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:14",{"_index":2610,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:143",{"_index":2711,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:148",{"_index":2689,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:15",{"_index":2614,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:152",{"_index":2713,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:16",{"_index":2613,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:17",{"_index":2593,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:18",{"_index":2604,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:19",{"_index":2600,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:20",{"_index":2625,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:21",{"_index":2623,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:22",{"_index":2594,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:23",{"_index":2596,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:24",{"_index":2603,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:25",{"_index":2598,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:26",{"_index":2606,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:27",{"_index":2602,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:28",{"_index":2608,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:29",{"_index":2612,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:30",{"_index":2628,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:31",{"_index":2632,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:32",{"_index":2630,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:33",{"_index":2592,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:34",{"_index":2634,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:42",{"_index":2709,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:47",{"_index":2704,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:52",{"_index":2706,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:56",{"_index":2705,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:60",{"_index":2700,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:64",{"_index":2703,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:68",{"_index":2702,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:72",{"_index":2690,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:76",{"_index":2697,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:80",{"_index":2694,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:84",{"_index":2708,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:90",{"_index":2707,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["stored",{"_index":3673,"title":{},"body":{"index.html":{}}}],["string",{"_index":20,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountsComponent.html":{},"interfaces/Action.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"classes/CustomValidator.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.html":{},"pipes/SafePipe.html":{},"components/SettingsComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{}}}],["stringfromurl",{"_index":2554,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["strip0x",{"_index":251,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["strip0x(abi",{"_index":3327,"title":{},"body":{"injectables/TransactionService.html":{}}}],["stub.ts",{"_index":516,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"components/FooterStubComponent.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/SidebarStubComponent.html":{},"classes/TokenServiceStub.html":{},"components/TopbarStubComponent.html":{},"classes/TransactionServiceStub.html":{},"classes/UserServiceStub.html":{},"coverage.html":{}}}],["stub.ts:11",{"_index":531,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"directives/RouterLinkDirectiveStub.html":{}}}],["stub.ts:12",{"_index":3436,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["stub.ts:18",{"_index":534,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["stub.ts:2",{"_index":3099,"title":{},"body":{"classes/TokenServiceStub.html":{}}}],["stub.ts:21",{"_index":538,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"classes/UserServiceStub.html":{}}}],["stub.ts:37",{"_index":3471,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["stub.ts:4",{"_index":3360,"title":{},"body":{"classes/TransactionServiceStub.html":{},"classes/UserServiceStub.html":{}}}],["stub.ts:6",{"_index":3359,"title":{},"body":{"classes/TransactionServiceStub.html":{}}}],["stub.ts:61",{"_index":3469,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["stub.ts:7",{"_index":2894,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["stub.ts:71",{"_index":3467,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["stub.ts:8",{"_index":2895,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{},"classes/TransactionServiceStub.html":{}}}],["student",{"_index":1874,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["style",{"_index":582,"title":{},"body":{"components/AdminComponent.html":{},"components/AuthComponent.html":{}}}],["style({height",{"_index":590,"title":{},"body":{"components/AdminComponent.html":{}}}],["styles",{"_index":179,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["styleurls",{"_index":193,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["subdividing",{"_index":4266,"title":{},"body":{"license.html":{}}}],["subject",{"_index":528,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"license.html":{}}}],["subkeyid",{"_index":2609,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["sublicenses",{"_index":4295,"title":{},"body":{"license.html":{}}}],["sublicensing",{"_index":3987,"title":{},"body":{"license.html":{}}}],["submit",{"_index":1243,"title":{},"body":{"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["submitted",{"_index":781,"title":{},"body":{"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["subprograms",{"_index":3949,"title":{},"body":{"license.html":{}}}],["subroutine",{"_index":4457,"title":{},"body":{"license.html":{}}}],["subscribe(this.authservice.mutablekeystore.importpublickey",{"_index":687,"title":{},"body":{"components/AppComponent.html":{}}}],["subscribers",{"_index":546,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["subsection",{"_index":4087,"title":{},"body":{"license.html":{}}}],["substantial",{"_index":4135,"title":{},"body":{"license.html":{}}}],["substantially",{"_index":3811,"title":{},"body":{"license.html":{}}}],["succeeded",{"_index":1504,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["success",{"_index":1180,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["successful",{"_index":115,"title":{},"body":{"classes/AccountIndex.html":{},"miscellaneous/functions.html":{}}}],["successfully",{"_index":2520,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"components/TransactionDetailsComponent.html":{}}}],["such",{"_index":3762,"title":{},"body":{"license.html":{}}}],["sue",{"_index":4309,"title":{},"body":{"license.html":{}}}],["suffice",{"_index":4143,"title":{},"body":{"license.html":{}}}],["sugar",{"_index":2234,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["suger",{"_index":2235,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sukari",{"_index":2237,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sukuma",{"_index":2242,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sum",{"_index":3596,"title":{},"body":{"miscellaneous/functions.html":{}}}],["sum.ts",{"_index":3496,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["super",{"_index":1447,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["super(message",{"_index":1444,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["superadmin",{"_index":1601,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["supplement",{"_index":4171,"title":{},"body":{"license.html":{}}}],["supplier",{"_index":2102,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["supply",{"_index":2434,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"miscellaneous/variables.html":{}}}],["support",{"_index":2812,"title":{},"body":{"components/PagesComponent.html":{},"license.html":{},"modules.html":{}}}],["supports",{"_index":4093,"title":{},"body":{"license.html":{}}}],["supposed",{"_index":2650,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["sure",{"_index":3734,"title":{},"body":{"license.html":{}}}],["surname",{"_index":1222,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["surrender",{"_index":3758,"title":{},"body":{"license.html":{}}}],["survive",{"_index":4216,"title":{},"body":{"license.html":{}}}],["sustained",{"_index":4405,"title":{},"body":{"license.html":{}}}],["svg",{"_index":4465,"title":{},"body":{"modules.html":{}}}],["sweats",{"_index":2231,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sweet",{"_index":2230,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["switch",{"_index":1376,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["switchwindows",{"_index":784,"title":{},"body":{"components/AuthComponent.html":{}}}],["symbol",{"_index":1179,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"miscellaneous/variables.html":{}}}],["sync.service.ts",{"_index":1061,"title":{},"body":{"injectables/BlockSyncService.html":{},"coverage.html":{}}}],["sync.service.ts:101",{"_index":1079,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:14",{"_index":1097,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:15",{"_index":1070,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:23",{"_index":1074,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:46",{"_index":1087,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:68",{"_index":1084,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:76",{"_index":1081,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:84",{"_index":1095,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync/data",{"_index":2869,"title":{},"body":{"injectables/RegistryService.html":{}}}],["sync/data/accountregistry.json",{"_index":149,"title":{},"body":{"classes/AccountIndex.html":{},"miscellaneous/variables.html":{}}}],["sync/data/tokenuniquesymbolindex.json",{"_index":3060,"title":{},"body":{"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["sync/head.js",{"_index":1129,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync/ondemand.js",{"_index":1142,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["syncer",{"_index":3551,"title":{},"body":{"dependencies.html":{}}}],["system",{"_index":1013,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["systematic",{"_index":3801,"title":{},"body":{"license.html":{}}}],["taa",{"_index":2417,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["table",{"_index":2362,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["tablesort(document.getelementbyid('coverage",{"_index":3540,"title":{},"body":{"coverage.html":{}}}],["tag",{"_index":3005,"title":{},"body":{"interfaces/Staff.html":{}}}],["tailor",{"_index":2038,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["taka",{"_index":1955,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["takaungu",{"_index":1817,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["take",{"_index":3725,"title":{},"body":{"license.html":{}}}],["talk",{"_index":812,"title":{},"body":{"components/AuthComponent.html":{}}}],["tangible",{"_index":4115,"title":{},"body":{"license.html":{}}}],["tap",{"_index":1500,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["tasia",{"_index":1746,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tassia",{"_index":1745,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["taxi",{"_index":2386,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tea",{"_index":2243,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["teacher",{"_index":1870,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["technician",{"_index":2286,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["technological",{"_index":3996,"title":{},"body":{"license.html":{}}}],["tel",{"_index":36,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["tells",{"_index":3898,"title":{},"body":{"license.html":{}}}],["template",{"_index":178,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"index.html":{}}}],["templateurl",{"_index":195,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["term",{"_index":3959,"title":{},"body":{"license.html":{}}}],["terminal",{"_index":4444,"title":{},"body":{"license.html":{}}}],["terminate",{"_index":4222,"title":{},"body":{"license.html":{}}}],["terminated",{"_index":4243,"title":{},"body":{"license.html":{}}}],["terminates",{"_index":4231,"title":{},"body":{"license.html":{}}}],["termination",{"_index":4219,"title":{},"body":{"license.html":{}}}],["terms",{"_index":3770,"title":{},"body":{"license.html":{}}}],["test",{"_index":518,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["test:dev",{"_index":3681,"title":{},"body":{"index.html":{}}}],["testa",{"_index":2453,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["testb",{"_index":2449,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["testc",{"_index":2457,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tests",{"_index":3680,"title":{},"body":{"index.html":{}}}],["tetra",{"_index":1620,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tetrapak",{"_index":1621,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["text",{"_index":953,"title":{},"body":{"injectables/AuthService.html":{},"directives/PasswordToggleDirective.html":{},"miscellaneous/functions.html":{}}}],["then(res",{"_index":1052,"title":{},"body":{"injectables/AuthService.html":{}}}],["therefore",{"_index":3759,"title":{},"body":{"license.html":{}}}],["thika",{"_index":1759,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["things",{"_index":3750,"title":{},"body":{"license.html":{}}}],["third",{"_index":872,"title":{},"body":{"guards/AuthGuard.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["this.accounts",{"_index":411,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.accounts.filter(account",{"_index":417,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.accountstype",{"_index":415,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.accounttypes",{"_index":403,"title":{},"body":{"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{}}}],["this.actions",{"_index":607,"title":{},"body":{"components/AdminComponent.html":{}}}],["this.addresssearchform",{"_index":259,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.addresssearchform.controls",{"_index":262,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.addresssearchform.invalid",{"_index":278,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.addresssearchloading",{"_index":279,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.addresssearchsubmitted",{"_index":277,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.addtransaction(conversion",{"_index":3304,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.addtransaction(transaction",{"_index":3294,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.algo",{"_index":2800,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.areanames",{"_index":1229,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.authservice.getprivatekey",{"_index":819,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.authservice.getpublickeys",{"_index":675,"title":{},"body":{"components/AppComponent.html":{}}}],["this.authservice.gettrustedusers",{"_index":2943,"title":{},"body":{"components/SettingsComponent.html":{}}}],["this.authservice.init",{"_index":674,"title":{},"body":{"components/AppComponent.html":{},"components/AuthComponent.html":{}}}],["this.authservice.logout",{"_index":2947,"title":{},"body":{"components/SettingsComponent.html":{}}}],["this.authservice.mutablekeystore.getprivatekey",{"_index":3343,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.authservice.mutablekeystore.importpublickey(publickeys",{"_index":689,"title":{},"body":{"components/AppComponent.html":{}}}],["this.authservice.privatekey",{"_index":801,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.authservice.sessiontoken",{"_index":821,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.authservice.setkey(this.authservice.privatekey",{"_index":803,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.authservice.setkey(this.keyformstub.key.value",{"_index":808,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.blocksyncservice.blocksync",{"_index":3392,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.categories",{"_index":1227,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.contract",{"_index":157,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["this.contract.methods.accountindex(address).call",{"_index":167,"title":{},"body":{"classes/AccountIndex.html":{}}}],["this.contract.methods.accounts(i).call",{"_index":172,"title":{},"body":{"classes/AccountIndex.html":{}}}],["this.contract.methods.add(address).send({from",{"_index":165,"title":{},"body":{"classes/AccountIndex.html":{}}}],["this.contract.methods.addressof(id).call",{"_index":3064,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["this.contract.methods.count().call",{"_index":174,"title":{},"body":{"classes/AccountIndex.html":{}}}],["this.contract.methods.entry(serial).call",{"_index":3065,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["this.contract.methods.entrycount().call",{"_index":3066,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["this.contractaddress",{"_index":156,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["this.createform",{"_index":1219,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.createform.controls",{"_index":1232,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.createform.invalid",{"_index":1233,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.datasource",{"_index":405,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{}}}],["this.datasource.data",{"_index":416,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.datasource.filter",{"_index":412,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{}}}],["this.datasource.paginator",{"_index":407,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{}}}],["this.datasource.sort",{"_index":409,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{}}}],["this.date",{"_index":2940,"title":{},"body":{"components/SettingsComponent.html":{}}}],["this.dgst",{"_index":2784,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.dialog.open(errordialogcomponent",{"_index":1338,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["this.engine",{"_index":2799,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.errordialogservice.opendialog",{"_index":1010,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.errordialogservice.opendialog({message",{"_index":680,"title":{},"body":{"components/AppComponent.html":{},"injectables/AuthService.html":{}}}],["this.fetcher(settings",{"_index":1136,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.filegetter",{"_index":2867,"title":{},"body":{"injectables/RegistryService.html":{}}}],["this.formbuilder.group",{"_index":255,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["this.genders",{"_index":1231,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.getaccountinfo(res.body",{"_index":3290,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.getchallenge",{"_index":998,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.getprivatekey",{"_index":2678,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["this.getwithtoken",{"_index":995,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.haveaccount(address",{"_index":164,"title":{},"body":{"classes/AccountIndex.html":{}}}],["this.httpclient.get(`${environment.ciccacheurl}/tokens/${symbol",{"_index":3090,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.httpclient.get(`${environment.ciccacheurl}/tx/${address}/${offset}/${limit",{"_index":3282,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.httpclient.get(`${environment.ciccacheurl}/tx/${offset}/${limit",{"_index":3281,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.httpclient.get(`${environment.cicmetaurl}/areanames",{"_index":1491,"title":{},"body":{"injectables/LocationService.html":{}}}],["this.httpclient.get(`${environment.cicmetaurl}/areanames/${location.tolowercase",{"_index":1492,"title":{},"body":{"injectables/LocationService.html":{}}}],["this.httpclient.get(`${environment.cicmetaurl}/areatypes/${area.tolowercase()}`).pipe(first",{"_index":1494,"title":{},"body":{"injectables/LocationService.html":{}}}],["this.httpclient.get(`${environment.cicmetaurl}/areatypes`).pipe(first",{"_index":1493,"title":{},"body":{"injectables/LocationService.html":{}}}],["this.isdialogopen",{"_index":1336,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["this.iswarning(errortracestring",{"_index":1454,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.keyform",{"_index":799,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.keyform.controls",{"_index":804,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.keyform.invalid",{"_index":806,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.keystore",{"_index":2780,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.keystore.getfingerprint",{"_index":2783,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.keystore.getprivatekey",{"_index":2794,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.keystore.gettrustedkeys",{"_index":2788,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.linkparams",{"_index":2901,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["this.loadevent.next(date.now",{"_index":3086,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.loading",{"_index":807,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.locationservice.getareanames().pipe(first()).subscribe(res",{"_index":1228,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.logerror(error",{"_index":1448,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.logger.debug(message",{"_index":1544,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.error(message",{"_index":1548,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.fatal(message",{"_index":1549,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.info(message",{"_index":1545,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.log(message",{"_index":1546,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.trace(message",{"_index":1543,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.warn(message",{"_index":1547,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.loggingservice.senderrorlevelmessage",{"_index":1461,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.loggingservice.senderrorlevelmessage('failed",{"_index":400,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.loggingservice.senderrorlevelmessage('login",{"_index":996,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.loggingservice.senderrorlevelmessage('unable",{"_index":677,"title":{},"body":{"components/AppComponent.html":{}}}],["this.loggingservice.senderrorlevelmessage(`failed",{"_index":1042,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.loggingservice.senderrorlevelmessage(`nobody",{"_index":1468,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.loggingservice.senderrorlevelmessage(`there",{"_index":1465,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.loggingservice.senderrorlevelmessage(e.message",{"_index":2791,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.loggingservice.senderrorlevelmessage(errormessage",{"_index":1375,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["this.loggingservice.senderrorlevelmessage(errortracestring",{"_index":1456,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.loggingservice.sendinfolevelmessage(`loaded",{"_index":1119,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.loggingservice.sendinfolevelmessage(`result",{"_index":3354,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.loggingservice.sendinfolevelmessage(`transaction",{"_index":3356,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.loggingservice.sendinfolevelmessage(message",{"_index":1509,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["this.loggingservice.sendinfolevelmessage(request",{"_index":1501,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["this.loggingservice.sendinfolevelmessage(res",{"_index":612,"title":{},"body":{"components/AdminComponent.html":{}}}],["this.loggingservice.sendinfolevelmessage(this.tokens",{"_index":3120,"title":{},"body":{"components/TokensComponent.html":{}}}],["this.loggingservice.sendwarnlevelmessage(errortracestring",{"_index":1455,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.loginresponse(o",{"_index":994,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.loginview",{"_index":1045,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mediaquery.addlistener(this.onresize",{"_index":695,"title":{},"body":{"components/AppComponent.html":{}}}],["this.mutablekeystore",{"_index":941,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.getprivatekey",{"_index":1058,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.getprivatekeyid",{"_index":1027,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.getpublickeys().foreach(key",{"_index":1049,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.importprivatekey(localstorage.getitem(btoa('cicada_private_key",{"_index":948,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.importprivatekey(privatekeyarmored",{"_index":1039,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.isencryptedprivatekey(privatekeyarmored",{"_index":1036,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.isvalidkey(privatekeyarmored",{"_index":1030,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.loadkeyring",{"_index":942,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.name",{"_index":1446,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.namesearchform",{"_index":254,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.namesearchform.controls",{"_index":260,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.namesearchform.invalid",{"_index":264,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.namesearchloading",{"_index":265,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.namesearchsubmitted",{"_index":263,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.navigatedto",{"_index":2900,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["this.onmenuselect",{"_index":1563,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["this.onmenutoggle",{"_index":1569,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["this.onresize(this.mediaquery",{"_index":696,"title":{},"body":{"components/AppComponent.html":{}}}],["this.onsign",{"_index":2781,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.onsign(this.signature",{"_index":2803,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.onsign(undefined",{"_index":2805,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.onverify",{"_index":2782,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.onverify(false",{"_index":2792,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.organizationform",{"_index":2727,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["this.organizationform.controls",{"_index":2731,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["this.organizationform.invalid",{"_index":2732,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["this.paginator",{"_index":408,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["this.paginator._changepagesize(this.paginator.pagesize",{"_index":419,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.phonesearchform",{"_index":257,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.phonesearchform.controls",{"_index":261,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.phonesearchform.invalid",{"_index":268,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.phonesearchloading",{"_index":269,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.phonesearchsubmitted",{"_index":267,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.readystate",{"_index":1124,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.readystateprocessor(settings",{"_index":1121,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.readystatetarget",{"_index":1125,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.recipientbloxberglink",{"_index":3182,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.registry",{"_index":2874,"title":{},"body":{"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["this.registry.addtoken(await",{"_index":3092,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.registry.declaratorhelper.addtrust(environment.trusteddeclaratoraddress",{"_index":2872,"title":{},"body":{"injectables/RegistryService.html":{}}}],["this.registry.getcontractaddressbyname('tokenregistry",{"_index":3085,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.registry.getcontractaddressbyname('transferauthorization",{"_index":3314,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.registry.load",{"_index":2873,"title":{},"body":{"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["this.registry.onload",{"_index":3082,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.registryservice.getregistry",{"_index":1110,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.registryservice.getweb3",{"_index":1108,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TransactionService.html":{}}}],["this.renderer.listen(this.elementref.nativeelement",{"_index":1560,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["this.route.parammap.subscribe((params",{"_index":3017,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["this.router.navigate",{"_index":2887,"title":{},"body":{"guards/RoleGuard.html":{}}}],["this.router.navigate(['/auth",{"_index":877,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["this.router.navigate(['/home",{"_index":820,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.router.navigatebyurl('/auth').then",{"_index":1379,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["this.router.navigatebyurl(`/accounts/${strip0x(account.identities.evm[`bloxberg:${environment.bloxbergchainid}`][0",{"_index":414,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.router.navigatebyurl(`/accounts/${strip0x(res.identities.evm[`bloxberg:${environment.bloxbergchainid}`][0",{"_index":274,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.router.navigatebyurl(`/accounts/${strip0x(this.transaction.from",{"_index":3184,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.router.navigatebyurl(`/accounts/${strip0x(this.transaction.to",{"_index":3185,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.router.navigatebyurl(`/accounts/${strip0x(this.transaction.trader",{"_index":3186,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.router.navigatebyurl(`/tokens/${token.symbol",{"_index":3122,"title":{},"body":{"components/TokensComponent.html":{}}}],["this.router.url",{"_index":1460,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.sanitizer.bypasssecuritytrustresourceurl(url",{"_index":2913,"title":{},"body":{"pipes/SafePipe.html":{}}}],["this.scanfilter",{"_index":2923,"title":{},"body":{"classes/Settings.html":{},"classes/W3.html":{}}}],["this.senderbloxberglink",{"_index":3180,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.sendinfolevelmessage('dropping",{"_index":1540,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.sendresponse(r",{"_index":1006,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.sentencesforwarninglogging.foreach((whitelistsentence",{"_index":1458,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.sessionlogincount",{"_index":970,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.sessiontoken",{"_index":947,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.setparammap(initialparams",{"_index":548,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["this.setstate('click",{"_index":971,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.signature",{"_index":2798,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.signeraddress",{"_index":159,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["this.snackbar.open(address",{"_index":3193,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.sort",{"_index":410,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["this.status",{"_index":1445,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.subject.asobservable",{"_index":533,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["this.subject.next(converttoparammap(params",{"_index":549,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["this.submitted",{"_index":805,"title":{},"body":{"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["this.toggledisplay(divone",{"_index":826,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.toggledisplay(divtwo",{"_index":827,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.togglepasswordvisibility",{"_index":2844,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["this.token",{"_index":3019,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["this.tokenregistry",{"_index":3083,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.tokenregistry.entry(0",{"_index":3093,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.tokenregistry.entry(i",{"_index":3089,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.tokenregistry.totaltokens",{"_index":3087,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.tokens",{"_index":3118,"title":{},"body":{"components/TokensComponent.html":{}}}],["this.tokenservice.gettokenbysymbol(params.get('id')).pipe(first()).subscribe(res",{"_index":3018,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["this.tokenservice.gettokens",{"_index":3119,"title":{},"body":{"components/TokensComponent.html":{}}}],["this.tokenservice.loadevent.subscribe(async",{"_index":3117,"title":{},"body":{"components/TokensComponent.html":{}}}],["this.totalaccounts",{"_index":169,"title":{},"body":{"classes/AccountIndex.html":{}}}],["this.traderbloxberglink",{"_index":3177,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction",{"_index":3400,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transaction.from",{"_index":3190,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction.to",{"_index":3189,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction.token.address",{"_index":3188,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction.value",{"_index":3191,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction?.from",{"_index":3181,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction?.to",{"_index":3183,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction?.trader",{"_index":3179,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction?.type",{"_index":3176,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transactiondatasource",{"_index":3394,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactiondatasource.data",{"_index":3403,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactiondatasource.paginator",{"_index":3396,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactiondatasource.sort",{"_index":3397,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactionlist.asobservable",{"_index":3262,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactionlist.next(this.transactions",{"_index":3307,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactions",{"_index":3308,"title":{},"body":{"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["this.transactions.filter(transaction",{"_index":3404,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactions.find(cachedtx",{"_index":3283,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactions.length",{"_index":3306,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactions.unshift(transaction",{"_index":3305,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactionservice.getaddresstransactions(address",{"_index":1137,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.transactionservice.getalltransactions(offset",{"_index":1134,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.transactionservice.resettransactionslist",{"_index":1102,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.transactionservice.setconversion(conversion",{"_index":721,"title":{},"body":{"components/AppComponent.html":{}}}],["this.transactionservice.settransaction(transaction",{"_index":717,"title":{},"body":{"components/AppComponent.html":{}}}],["this.transactionservice.transactionssubject.subscribe(transactions",{"_index":3393,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactionservice.transferrequest",{"_index":3187,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transactionstype",{"_index":3402,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactionstypes",{"_index":3399,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.trustedusers",{"_index":2942,"title":{},"body":{"components/SettingsComponent.html":{}}}],["this.userservice.accountssubject.subscribe(accounts",{"_index":404,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.userservice.actionssubject.subscribe(actions",{"_index":605,"title":{},"body":{"components/AdminComponent.html":{}}}],["this.userservice.approveaction(action.id).pipe(first()).subscribe(res",{"_index":611,"title":{},"body":{"components/AdminComponent.html":{}}}],["this.userservice.getaccountbyaddress(this.addresssearchformstub.address.value",{"_index":280,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.userservice.getaccountbyphone(this.phonesearchformstub.phonenumber.value",{"_index":270,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.userservice.getaccountdetailsfrommeta(await",{"_index":3287,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.userservice.getaccounttypes().pipe(first()).subscribe(res",{"_index":402,"title":{},"body":{"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{}}}],["this.userservice.getactions",{"_index":604,"title":{},"body":{"components/AdminComponent.html":{}}}],["this.userservice.getcategories().pipe(first()).subscribe(res",{"_index":1226,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.userservice.getgenders().pipe(first()).subscribe(res",{"_index":1230,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.userservice.gettransactiontypes().pipe(first()).subscribe(res",{"_index":3398,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.userservice.loadaccounts(100",{"_index":398,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.userservice.revokeaction(action.id).pipe(first()).subscribe(res",{"_index":614,"title":{},"body":{"components/AdminComponent.html":{}}}],["this.userservice.searchaccountbyname(this.namesearchformstub.name.value",{"_index":266,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.web3",{"_index":2875,"title":{},"body":{"injectables/RegistryService.html":{},"injectables/TransactionService.html":{}}}],["this.web3.eth.getgasprice",{"_index":3333,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.web3.eth.gettransaction(result.transactionhash",{"_index":3355,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.web3.eth.gettransactioncount(senderaddress",{"_index":3330,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.web3.eth.sendsignedtransaction(txwire",{"_index":3353,"title":{},"body":{"injectables/TransactionService.html":{}}}],["those",{"_index":3809,"title":{},"body":{"license.html":{}}}],["though",{"_index":4174,"title":{},"body":{"license.html":{}}}],["threatened",{"_index":3819,"title":{},"body":{"license.html":{}}}],["three",{"_index":4076,"title":{},"body":{"license.html":{}}}],["threw",{"_index":1469,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["through",{"_index":2510,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["throw",{"_index":967,"title":{},"body":{"injectables/AuthService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["throwerror",{"_index":1354,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["throwerror(err",{"_index":1386,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["thrown",{"_index":1419,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["throws",{"_index":1028,"title":{},"body":{"injectables/AuthService.html":{}}}],["thus",{"_index":3978,"title":{},"body":{"license.html":{}}}],["timber",{"_index":2400,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["timberyard",{"_index":2401,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["time",{"_index":863,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["timestamp",{"_index":1181,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["tissue",{"_index":2353,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["title",{"_index":644,"title":{},"body":{"components/AppComponent.html":{}}}],["titlecase",{"_index":1242,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["todo",{"_index":395,"title":{},"body":{"components/AccountsComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"index.html":{}}}],["together",{"_index":944,"title":{},"body":{"injectables/AuthService.html":{}}}],["toggle.directive",{"_index":887,"title":{},"body":{"modules/AuthModule.html":{},"modules/SharedModule.html":{}}}],["toggle.directive.ts",{"_index":1564,"title":{},"body":{"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{},"coverage.html":{}}}],["toggle.directive.ts:11",{"_index":2841,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["toggle.directive.ts:18",{"_index":1568,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["toggle.directive.ts:22",{"_index":2843,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["toggle.directive.ts:6",{"_index":1567,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["toggle.directive.ts:8",{"_index":2842,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["toggledisplay",{"_index":785,"title":{},"body":{"components/AuthComponent.html":{}}}],["toggledisplay(element",{"_index":792,"title":{},"body":{"components/AuthComponent.html":{}}}],["togglepasswordvisibility",{"_index":2839,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["tohex",{"_index":3274,"title":{},"body":{"injectables/TransactionService.html":{}}}],["toi",{"_index":1780,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["toilet",{"_index":1950,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["token",{"_index":320,"title":{"interfaces/Token.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenRegistry.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["token.address",{"_index":3021,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{}}}],["token.name",{"_index":3020,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{}}}],["token.owner",{"_index":3031,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["token.reserveratio",{"_index":3030,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["token.supply",{"_index":3029,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{}}}],["token.symbol",{"_index":2553,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{}}}],["tokenaddress",{"_index":3258,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tokenagent",{"_index":1594,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tokendetailscomponent",{"_index":319,"title":{"components/TokenDetailsComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["tokenratio",{"_index":429,"title":{},"body":{"components/AccountsComponent.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["tokenratiopipe",{"_index":2979,"title":{"pipes/TokenRatioPipe.html":{}},"body":{"modules/SharedModule.html":{},"pipes/TokenRatioPipe.html":{},"coverage.html":{},"overview.html":{}}}],["tokenregistry",{"_index":3039,"title":{"classes/TokenRegistry.html":{}},"body":{"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"coverage.html":{}}}],["tokenregistry(await",{"_index":3084,"title":{},"body":{"injectables/TokenService.html":{}}}],["tokens",{"_index":2429,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"modules/PagesRoutingModule.html":{},"components/SidebarComponent.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenRegistry.html":{},"components/TokensComponent.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["tokens'},{'name",{"_index":322,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["tokens.component.html",{"_index":3102,"title":{},"body":{"components/TokensComponent.html":{}}}],["tokens.component.scss",{"_index":3101,"title":{},"body":{"components/TokensComponent.html":{}}}],["tokens.find(token",{"_index":2552,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["tokenscomponent",{"_index":321,"title":{"components/TokensComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["tokenservice",{"_index":3014,"title":{"injectables/TokenService.html":{}},"body":{"components/TokenDetailsComponent.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"coverage.html":{}}}],["tokenservicestub",{"_index":3095,"title":{"classes/TokenServiceStub.html":{}},"body":{"classes/TokenServiceStub.html":{},"coverage.html":{}}}],["tokensmodule",{"_index":3124,"title":{"modules/TokensModule.html":{}},"body":{"modules/TokensModule.html":{},"modules.html":{},"overview.html":{}}}],["tokensroutingmodule",{"_index":3128,"title":{"modules/TokensRoutingModule.html":{}},"body":{"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["tom",{"_index":1596,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["tomato",{"_index":2159,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tomatoes",{"_index":2160,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["toolbox",{"_index":2949,"title":{},"body":{"components/SettingsComponent.html":{}}}],["tools",{"_index":3942,"title":{},"body":{"license.html":{}}}],["topbar",{"_index":1396,"title":{},"body":{"components/FooterStubComponent.html":{},"components/SidebarStubComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{}}}],["topbar'},{'name",{"_index":324,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["topbar.component.html",{"_index":3141,"title":{},"body":{"components/TopbarComponent.html":{}}}],["topbar.component.scss",{"_index":3140,"title":{},"body":{"components/TopbarComponent.html":{}}}],["topbarcomponent",{"_index":323,"title":{"components/TopbarComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["topbarstubcomponent",{"_index":325,"title":{"components/TopbarStubComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["total",{"_index":139,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["totalaccounts",{"_index":83,"title":{},"body":{"classes/AccountIndex.html":{}}}],["totaltokens",{"_index":3043,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["tour",{"_index":2379,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tout",{"_index":2068,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tovalue",{"_index":1189,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"injectables/TransactionService.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["tovalue(value",{"_index":3339,"title":{},"body":{"injectables/TransactionService.html":{}}}],["town",{"_index":1788,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["trace",{"_index":1428,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["trace|debug|info|log|warn|error|fatal|off",{"_index":1539,"title":{},"body":{"injectables/LoggingService.html":{}}}],["tracks",{"_index":1265,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["trade",{"_index":2093,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["trademark",{"_index":4200,"title":{},"body":{"license.html":{}}}],["trademarks",{"_index":4201,"title":{},"body":{"license.html":{}}}],["trader",{"_index":1190,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["traderbloxberglink",{"_index":3156,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["trading",{"_index":3024,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["trainer",{"_index":1912,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["transaction",{"_index":327,"title":{"classes/Transaction.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"coverage.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["transaction.destinationtoken.address",{"_index":3223,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.destinationtoken.name",{"_index":3224,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.destinationtoken.symbol",{"_index":3225,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.from",{"_index":3200,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.fromvalue",{"_index":3221,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.recipient",{"_index":3292,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transaction.recipient?.vcard.fn[0].value",{"_index":3202,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.sender",{"_index":3289,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transaction.sender?.vcard.fn[0].value",{"_index":3199,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.sourcetoken.address",{"_index":3218,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.sourcetoken.name",{"_index":3219,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.sourcetoken.symbol",{"_index":3220,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.to",{"_index":3203,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.token._address",{"_index":3207,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.tovalue",{"_index":3226,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.trader",{"_index":3217,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.tx.block",{"_index":3208,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.tx.success",{"_index":3212,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.tx.timestamp",{"_index":3213,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.tx.txhash",{"_index":3211,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["transaction.tx.txindex",{"_index":3209,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.type",{"_index":3286,"title":{},"body":{"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["transaction.value",{"_index":3206,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["transaction?.recipient?.vcard.fn[0].value",{"_index":3409,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transaction?.sender?.vcard.fn[0].value",{"_index":3408,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transaction?.tovalue",{"_index":3411,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transaction?.tx.timestamp",{"_index":3412,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transaction?.type",{"_index":3413,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transaction?.value",{"_index":3410,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactiondatasource",{"_index":3367,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactiondetailscomponent",{"_index":326,"title":{"components/TransactionDetailsComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"coverage.html":{},"overview.html":{}}}],["transactiondisplayedcolumns",{"_index":3368,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactionhelper",{"_index":1098,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionhelper(settings.w3.engine",{"_index":1112,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionlist",{"_index":3228,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transactions",{"_index":329,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["transactions.component.html",{"_index":3366,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactions.component.scss",{"_index":3365,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactionscomponent",{"_index":328,"title":{"components/TransactionsComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"coverage.html":{},"overview.html":{}}}],["transactionservice",{"_index":651,"title":{"injectables/TransactionService.html":{}},"body":{"components/AppComponent.html":{},"injectables/BlockSyncService.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["transactionservicestub",{"_index":3357,"title":{"classes/TransactionServiceStub.html":{}},"body":{"classes/TransactionServiceStub.html":{},"coverage.html":{}}}],["transactionsinfo",{"_index":1078,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionsinfo.filter_rounds",{"_index":1164,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionsinfo.high",{"_index":1163,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionsinfo.low",{"_index":1162,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionsmodule",{"_index":444,"title":{"modules/TransactionsModule.html":{}},"body":{"modules/AccountsModule.html":{},"modules/TransactionsModule.html":{},"modules.html":{},"overview.html":{}}}],["transactionsroutingmodule",{"_index":3418,"title":{"modules/TransactionsRoutingModule.html":{}},"body":{"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["transactionssubject",{"_index":3229,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transactionstype",{"_index":3369,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactionstypes",{"_index":3370,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactiontype",{"_index":3407,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactiontypes",{"_index":2461,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["transfer",{"_index":2729,"title":{},"body":{"components/OrganizationComponent.html":{},"components/TransactionsComponent.html":{},"license.html":{}}}],["transferauthaddress",{"_index":3313,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transferred",{"_index":4149,"title":{},"body":{"license.html":{}}}],["transferrequest",{"_index":3238,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transferrequest(tokenaddress",{"_index":3254,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transferring",{"_index":4264,"title":{},"body":{"license.html":{}}}],["transfers",{"_index":3406,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transform",{"_index":2906,"title":{},"body":{"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{}}}],["transform(url",{"_index":2907,"title":{},"body":{"pipes/SafePipe.html":{}}}],["transform(value",{"_index":3034,"title":{},"body":{"pipes/TokenRatioPipe.html":{}}}],["transition",{"_index":583,"title":{},"body":{"components/AdminComponent.html":{}}}],["transition('expanded",{"_index":597,"title":{},"body":{"components/AdminComponent.html":{}}}],["transmission",{"_index":4105,"title":{},"body":{"license.html":{}}}],["transport",{"_index":2368,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["transpoter",{"_index":2395,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["trash",{"_index":1963,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["trasportion",{"_index":2390,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["travel",{"_index":2380,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["traverse",{"_index":865,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["treated",{"_index":4173,"title":{},"body":{"license.html":{}}}],["treaty",{"_index":4003,"title":{},"body":{"license.html":{}}}],["tree",{"_index":181,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"guards/RoleGuard.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"miscellaneous/variables.html":{}}}],["trigger",{"_index":584,"title":{},"body":{"components/AdminComponent.html":{},"directives/MenuToggleDirective.html":{}}}],["trigger('detailexpand",{"_index":588,"title":{},"body":{"components/AdminComponent.html":{}}}],["true",{"_index":114,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"modules/AppModule.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"guards/RoleGuard.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["trusted",{"_index":678,"title":{},"body":{"components/AppComponent.html":{},"components/SettingsComponent.html":{}}}],["trusteddeclaratoraddress",{"_index":4503,"title":{},"body":{"miscellaneous/variables.html":{}}}],["trustedusers",{"_index":1048,"title":{},"body":{"injectables/AuthService.html":{},"components/SettingsComponent.html":{}}}],["trustedusers.push(key.users[0].userid",{"_index":1050,"title":{},"body":{"injectables/AuthService.html":{}}}],["try",{"_index":394,"title":{},"body":{"components/AccountsComponent.html":{},"components/AppComponent.html":{},"injectables/AuthService.html":{},"injectables/TransactionService.html":{}}}],["ts",{"_index":2848,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["tslib",{"_index":3580,"title":{},"body":{"dependencies.html":{}}}],["tsta",{"_index":2454,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tstb",{"_index":2450,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tstc",{"_index":2458,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tudor",{"_index":1799,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tuition",{"_index":1906,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tuktuk",{"_index":2385,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tution",{"_index":1905,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tv",{"_index":2069,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["two",{"_index":2955,"title":{},"body":{"components/SettingsComponent.html":{},"license.html":{}}}],["tx",{"_index":1082,"title":{"classes/Tx.html":{}},"body":{"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"modules/PagesRoutingModule.html":{},"classes/Transaction.html":{},"injectables/TransactionService.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"coverage.html":{}}}],["tx(environment.bloxbergchainid",{"_index":3328,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.data",{"_index":3340,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.gaslimit",{"_index":3334,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.gasprice",{"_index":3331,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.message",{"_index":3342,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.nonce",{"_index":3329,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.setsignature(r",{"_index":3350,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.to",{"_index":3336,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.value",{"_index":3338,"title":{},"body":{"injectables/TransactionService.html":{}}}],["txhash",{"_index":1182,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["txhelper",{"_index":2916,"title":{},"body":{"classes/Settings.html":{},"classes/W3.html":{}}}],["txindex",{"_index":1183,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["txmsg",{"_index":3341,"title":{},"body":{"injectables/TransactionService.html":{}}}],["txtoken",{"_index":1178,"title":{"classes/TxToken.html":{}},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"coverage.html":{}}}],["txwire",{"_index":3351,"title":{},"body":{"injectables/TransactionService.html":{}}}],["typ",{"_index":38,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["type",{"_index":18,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"classes/W3.html":{},"coverage.html":{},"miscellaneous/functions.html":{},"license.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}}}],["typealiases",{"_index":4471,"title":{"miscellaneous/typealiases.html":{}},"body":{}}],["typed",{"_index":1584,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["typeerror",{"_index":1464,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["types",{"_index":1417,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["typescript",{"_index":109,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"miscellaneous/functions.html":{}}}],["typical",{"_index":4129,"title":{},"body":{"license.html":{}}}],["uchumi",{"_index":1756,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uchuuzi",{"_index":2247,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uchuzi",{"_index":2246,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ug",{"_index":2746,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["ugali",{"_index":2245,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uganda",{"_index":2747,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["ugoro",{"_index":2236,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uint256",{"_index":3325,"title":{},"body":{"injectables/TransactionService.html":{}}}],["uint8array",{"_index":1092,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["uint8array(blockfilterbinstr.length",{"_index":1150,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["uint8array(blocktxfilterbinstr.length",{"_index":1158,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["ujenzi",{"_index":2095,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uji",{"_index":2244,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ukulima",{"_index":1975,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ukunda",{"_index":1718,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["umena",{"_index":2169,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["umoja",{"_index":1758,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["unable",{"_index":1014,"title":{},"body":{"injectables/AuthService.html":{}}}],["unacceptable",{"_index":3806,"title":{},"body":{"license.html":{}}}],["unapproved",{"_index":609,"title":{},"body":{"components/AdminComponent.html":{},"classes/UserServiceStub.html":{}}}],["unauthorized",{"_index":1378,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["undefined",{"_index":273,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"classes/Settings.html":{},"classes/W3.html":{}}}],["under",{"_index":3849,"title":{},"body":{"license.html":{}}}],["unga",{"_index":2227,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uniform",{"_index":2355,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["unit",{"_index":3679,"title":{},"body":{"index.html":{}}}],["united",{"_index":2740,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["university",{"_index":1880,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["unknown",{"_index":1862,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"pipes/SafePipe.html":{},"miscellaneous/variables.html":{}}}],["unless",{"_index":4137,"title":{},"body":{"license.html":{}}}],["unlimited",{"_index":3965,"title":{},"body":{"license.html":{}}}],["unmodified",{"_index":3866,"title":{},"body":{"license.html":{}}}],["unnecessary",{"_index":3990,"title":{},"body":{"license.html":{}}}],["unpacking",{"_index":4169,"title":{},"body":{"license.html":{}}}],["unsuccessful",{"_index":1365,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["until",{"_index":4230,"title":{},"body":{"license.html":{}}}],["update",{"_index":2953,"title":{},"body":{"components/SettingsComponent.html":{}}}],["updates",{"_index":4158,"title":{},"body":{"license.html":{}}}],["uploaded",{"_index":855,"title":{},"body":{"guards/AuthGuard.html":{}}}],["uppercase",{"_index":422,"title":{},"body":{"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{},"components/TransactionsComponent.html":{}}}],["urban",{"_index":1864,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["url",{"_index":847,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{},"components/PagesComponent.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{}}}],["url.endswith('/accounttypes",{"_index":2486,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/actions",{"_index":2488,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/areanames",{"_index":2493,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/areatypes",{"_index":2495,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/categories",{"_index":2497,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/genders",{"_index":2501,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/tokens",{"_index":2503,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/transactiontypes",{"_index":2507,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.match(/\\/actions\\/\\d",{"_index":2490,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.match(/\\/areanames\\/\\w",{"_index":2494,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.match(/\\/areatypes\\/\\w",{"_index":2496,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.match(/\\/categories\\/\\w",{"_index":2499,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.match(/\\/tokens\\/\\w",{"_index":2505,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.split",{"_index":2560,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["urlparts",{"_index":2559,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["urlparts[urlparts.length",{"_index":2565,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["urltree",{"_index":867,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["usafi",{"_index":1960,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["use",{"_index":522,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"injectables/AuthService.html":{},"index.html":{},"license.html":{}}}],["useclass",{"_index":763,"title":{},"body":{"modules/AppModule.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["used",{"_index":864,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"miscellaneous/functions.html":{},"license.html":{}}}],["useful",{"_index":4438,"title":{},"body":{"license.html":{}}}],["user",{"_index":509,"title":{},"body":{"interfaces/Action.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"guards/AuthGuard.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"interceptors/ErrorInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"components/SettingsComponent.html":{},"classes/Transaction.html":{},"injectables/TransactionService.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["user's",{"_index":869,"title":{},"body":{"guards/AuthGuard.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"miscellaneous/variables.html":{}}}],["user.email",{"_index":2960,"title":{},"body":{"components/SettingsComponent.html":{}}}],["user.name",{"_index":2959,"title":{},"body":{"components/SettingsComponent.html":{}}}],["user.tokey(conversion.trader)).pipe(first()).subscribe((res",{"_index":3301,"title":{},"body":{"injectables/TransactionService.html":{}}}],["user.tokey(transaction.from)).pipe(first()).subscribe((res",{"_index":3288,"title":{},"body":{"injectables/TransactionService.html":{}}}],["user.tokey(transaction.to)).pipe(first()).subscribe((res",{"_index":3291,"title":{},"body":{"injectables/TransactionService.html":{}}}],["user.userid",{"_index":2961,"title":{},"body":{"components/SettingsComponent.html":{}}}],["user?.balance",{"_index":428,"title":{},"body":{"components/AccountsComponent.html":{}}}],["user?.date_registered",{"_index":426,"title":{},"body":{"components/AccountsComponent.html":{}}}],["user?.location.area_name",{"_index":430,"title":{},"body":{"components/AccountsComponent.html":{}}}],["user?.vcard.fn[0].value",{"_index":424,"title":{},"body":{"components/AccountsComponent.html":{}}}],["user?.vcard.tel[0].value",{"_index":425,"title":{},"body":{"components/AccountsComponent.html":{}}}],["userid",{"_index":2934,"title":{},"body":{"components/SettingsComponent.html":{},"interfaces/Staff.html":{}}}],["userinfo",{"_index":3230,"title":{},"body":{"injectables/TransactionService.html":{}}}],["userkey",{"_index":3472,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["username",{"_index":2951,"title":{},"body":{"components/SettingsComponent.html":{}}}],["users",{"_index":2946,"title":{},"body":{"components/SettingsComponent.html":{},"classes/UserServiceStub.html":{},"index.html":{},"license.html":{}}}],["userservice",{"_index":217,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/CreateAccountComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["userservicestub",{"_index":3432,"title":{"classes/UserServiceStub.html":{}},"body":{"classes/UserServiceStub.html":{},"coverage.html":{}}}],["uses",{"_index":4132,"title":{},"body":{"license.html":{}}}],["using",{"_index":4103,"title":{},"body":{"license.html":{}}}],["ustadh",{"_index":1929,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ustadhi",{"_index":1930,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["utencils",{"_index":2358,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["utensils",{"_index":2359,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["utils",{"_index":3270,"title":{},"body":{"injectables/TransactionService.html":{}}}],["utils.abicoder",{"_index":3323,"title":{},"body":{"injectables/TransactionService.html":{}}}],["uto",{"_index":2342,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uvuvi",{"_index":2035,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uyoma",{"_index":1837,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["v",{"_index":1152,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["v[i",{"_index":1153,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["valid",{"_index":72,"title":{},"body":{"classes/AccountIndex.html":{},"classes/CustomValidator.html":{},"classes/TokenRegistry.html":{},"license.html":{}}}],["validated",{"_index":125,"title":{},"body":{"classes/AccountIndex.html":{},"classes/CustomValidator.html":{},"miscellaneous/functions.html":{}}}],["validates",{"_index":3633,"title":{},"body":{"miscellaneous/functions.html":{}}}],["validation",{"_index":1266,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{}}}],["validation.ts",{"_index":3511,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["validationerrors",{"_index":1293,"title":{},"body":{"classes/CustomValidator.html":{}}}],["validator",{"_index":3560,"title":{},"body":{"dependencies.html":{}}}],["validators",{"_index":246,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["validators.required",{"_index":256,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["value",{"_index":33,"title":{},"body":{"interfaces/AccountDetails.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"injectables/RegistryService.html":{},"directives/RouterLinkDirectiveStub.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"interfaces/Signature.html":{},"pipes/TokenRatioPipe.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"classes/Transaction.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["value.trim().tolocalelowercase",{"_index":413,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["values",{"_index":545,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"miscellaneous/functions.html":{}}}],["var",{"_index":289,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["variable",{"_index":3491,"title":{},"body":{"coverage.html":{}}}],["variables",{"_index":3666,"title":{"miscellaneous/variables.html":{}},"body":{"index.html":{},"miscellaneous/variables.html":{}}}],["vcard",{"_index":19,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"injectables/TransactionService.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["vcard.parse(atob(accountinfo.vcard",{"_index":3312,"title":{},"body":{"injectables/TransactionService.html":{}}}],["vcards",{"_index":3582,"title":{},"body":{"dependencies.html":{}}}],["vcardvalidation",{"_index":3513,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["vcardvalidation(vcard",{"_index":3637,"title":{},"body":{"miscellaneous/functions.html":{}}}],["vegetable",{"_index":2223,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vendor",{"_index":1593,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["verbatim",{"_index":3715,"title":{},"body":{"license.html":{}}}],["verification",{"_index":2958,"title":{},"body":{"components/SettingsComponent.html":{}}}],["verify",{"_index":2755,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signer.html":{}}}],["verify(digest",{"_index":2773,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["version",{"_index":39,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"index.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["versions",{"_index":3731,"title":{},"body":{"license.html":{}}}],["vet",{"_index":2290,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["veterinary",{"_index":2289,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["via",{"_index":3623,"title":{},"body":{"miscellaneous/functions.html":{},"index.html":{}}}],["viatu",{"_index":2088,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["viazi",{"_index":2248,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vidziweni",{"_index":1716,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["view",{"_index":3201,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"license.html":{}}}],["view_in_ar",{"_index":284,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["viewaccount",{"_index":355,"title":{},"body":{"components/AccountsComponent.html":{}}}],["viewaccount(account",{"_index":365,"title":{},"body":{"components/AccountsComponent.html":{}}}],["viewchild",{"_index":386,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["viewchild(matpaginator",{"_index":382,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["viewchild(matsort",{"_index":385,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["viewrecipient",{"_index":3159,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["views",{"_index":846,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"guards/RoleGuard.html":{}}}],["viewsender",{"_index":3160,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["viewtoken",{"_index":3104,"title":{},"body":{"components/TokensComponent.html":{}}}],["viewtoken(token",{"_index":3110,"title":{},"body":{"components/TokensComponent.html":{}}}],["viewtrader",{"_index":3161,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["viewtransaction",{"_index":3373,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["viewtransaction(transaction",{"_index":3381,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["vigungani",{"_index":1715,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vijana",{"_index":1913,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vikapu",{"_index":2354,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vikinduni",{"_index":1703,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vikolani",{"_index":1704,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["village",{"_index":1942,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vinyunduni",{"_index":1717,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["viogato",{"_index":1706,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["violates",{"_index":4164,"title":{},"body":{"license.html":{}}}],["violation",{"_index":4226,"title":{},"body":{"license.html":{}}}],["visibility",{"_index":593,"title":{},"body":{"components/AdminComponent.html":{}}}],["visible",{"_index":596,"title":{},"body":{"components/AdminComponent.html":{},"license.html":{}}}],["vistangani",{"_index":1708,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vitabu",{"_index":1921,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vitangani",{"_index":1705,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vitenge",{"_index":2357,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vitungu",{"_index":2201,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vivian",{"_index":1605,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["void",{"_index":221,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"classes/CustomValidator.html":{},"components/FooterComponent.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"miscellaneous/functions.html":{},"license.html":{}}}],["volume",{"_index":4055,"title":{},"body":{"license.html":{}}}],["volunteer",{"_index":1893,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vsla",{"_index":2297,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vyogato",{"_index":1707,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vyombo",{"_index":2367,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["w",{"_index":1141,"title":{},"body":{"injectables/BlockSyncService.html":{},"license.html":{}}}],["w.onmessage",{"_index":1143,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["w.postmessage",{"_index":1144,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["w3",{"_index":2917,"title":{"classes/W3.html":{}},"body":{"classes/Settings.html":{},"classes/W3.html":{},"coverage.html":{}}}],["w3_provider",{"_index":1133,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["waiter",{"_index":2086,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["waitress",{"_index":2087,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["waive",{"_index":4011,"title":{},"body":{"license.html":{}}}],["waiver",{"_index":4418,"title":{},"body":{"license.html":{}}}],["wakulima",{"_index":1976,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["want",{"_index":3747,"title":{},"body":{"license.html":{}}}],["ward",{"_index":1943,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["warning",{"_index":1424,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["warnings",{"_index":1438,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["warranties",{"_index":3899,"title":{},"body":{"license.html":{}}}],["warranty",{"_index":3783,"title":{},"body":{"license.html":{}}}],["wash",{"_index":1992,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["washing",{"_index":2080,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["waste",{"_index":1954,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["watchlady",{"_index":2096,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["watchman",{"_index":2085,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["water",{"_index":2261,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["way",{"_index":3738,"title":{},"body":{"license.html":{}}}],["ways",{"_index":4066,"title":{},"body":{"license.html":{}}}],["web",{"_index":3640,"title":{},"body":{"index.html":{}}}],["web3",{"_index":141,"title":{},"body":{"classes/AccountIndex.html":{},"injectables/RegistryService.html":{},"classes/TokenRegistry.html":{},"injectables/TransactionService.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/variables.html":{}}}],["web3(environment.web3provider",{"_index":153,"title":{},"body":{"classes/AccountIndex.html":{},"injectables/RegistryService.html":{},"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["web3.eth.abi.encodeparameter('bytes32",{"_index":3062,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["web3.eth.accounts[0",{"_index":160,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["web3.eth.contract(abi",{"_index":158,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["web3.utils.tohex(identifier",{"_index":3063,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["web3provider",{"_index":4496,"title":{},"body":{"miscellaneous/variables.html":{}}}],["weight",{"_index":2441,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"miscellaneous/variables.html":{}}}],["welcome",{"_index":4448,"title":{},"body":{"license.html":{}}}],["welder",{"_index":2082,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["welding",{"_index":2083,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["well",{"_index":3883,"title":{},"body":{"license.html":{}}}],["went",{"_index":1371,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["west",{"_index":1722,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["whatever",{"_index":4268,"title":{},"body":{"license.html":{}}}],["wheadsync",{"_index":1126,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["wheadsync.onmessage",{"_index":1130,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["wheadsync.postmessage",{"_index":1132,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["whether",{"_index":120,"title":{},"body":{"classes/AccountIndex.html":{},"guards/AuthGuard.html":{},"classes/CustomErrorStateMatcher.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["whole",{"_index":3920,"title":{},"body":{"license.html":{}}}],["wholesaler",{"_index":2350,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["whose",{"_index":4112,"title":{},"body":{"license.html":{}}}],["widely",{"_index":3916,"title":{},"body":{"license.html":{}}}],["width",{"_index":626,"title":{},"body":{"components/AdminComponent.html":{},"components/AppComponent.html":{},"injectables/ErrorDialogService.html":{},"directives/MenuSelectionDirective.html":{}}}],["window",{"_index":3932,"title":{},"body":{"license.html":{}}}],["window.atob(transactionsinfo.block_filter",{"_index":1148,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["window.atob(transactionsinfo.blocktx_filter",{"_index":1156,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["window.dispatchevent(this.newconversionevent(transaction",{"_index":1116,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["window.dispatchevent(this.newtransferevent(transaction",{"_index":1114,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["window.getcomputedstyle(element).display",{"_index":828,"title":{},"body":{"components/AuthComponent.html":{}}}],["window.location.reload(true",{"_index":1047,"title":{},"body":{"injectables/AuthService.html":{}}}],["window.location.search.substring(1",{"_index":956,"title":{},"body":{"injectables/AuthService.html":{}}}],["window.matchmedia('(max",{"_index":665,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["window.prompt('password",{"_index":2680,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"injectables/TransactionService.html":{}}}],["window:cic_convert",{"_index":647,"title":{},"body":{"components/AppComponent.html":{}}}],["window:cic_convert(event",{"_index":656,"title":{},"body":{"components/AppComponent.html":{}}}],["window:cic_transfer",{"_index":648,"title":{},"body":{"components/AppComponent.html":{}}}],["window:cic_transfer(event",{"_index":659,"title":{},"body":{"components/AppComponent.html":{}}}],["wine",{"_index":2251,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["wipo",{"_index":4002,"title":{},"body":{"license.html":{}}}],["wish",{"_index":3745,"title":{},"body":{"license.html":{}}}],["within",{"_index":4211,"title":{},"body":{"license.html":{}}}],["without",{"_index":3869,"title":{},"body":{"license.html":{}}}],["wood",{"_index":2415,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["work",{"_index":2101,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["work's",{"_index":3941,"title":{},"body":{"license.html":{}}}],["worker",{"_index":1127,"title":{},"body":{"injectables/BlockSyncService.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["worker('./../assets/js/block",{"_index":1128,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["working",{"_index":2084,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["works",{"_index":3721,"title":{},"body":{"license.html":{}}}],["world",{"_index":3362,"title":{},"body":{"classes/TransactionServiceStub.html":{}}}],["world!'",{"_index":3604,"title":{},"body":{"miscellaneous/functions.html":{}}}],["worldwide",{"_index":4298,"title":{},"body":{"license.html":{}}}],["wote",{"_index":1857,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["wrap",{"_index":2467,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["write",{"_index":1431,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["writing",{"_index":4380,"title":{},"body":{"license.html":{}}}],["written",{"_index":4075,"title":{},"body":{"license.html":{}}}],["wrong",{"_index":1372,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["ws.dev.grassrootseconomics.net",{"_index":4498,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ws://localhost:63546",{"_index":4508,"title":{},"body":{"miscellaneous/variables.html":{}}}],["wss://bloxberg",{"_index":4497,"title":{},"body":{"miscellaneous/variables.html":{}}}],["xhr",{"_index":950,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.addeventlistener('load",{"_index":964,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.getresponseheader('token",{"_index":985,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.getresponseheader('www",{"_index":991,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.onload",{"_index":989,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.open('get",{"_index":954,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.responsetype",{"_index":952,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.send",{"_index":973,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.setrequestheader('authorization",{"_index":957,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.setrequestheader('content",{"_index":959,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.setrequestheader('x",{"_index":961,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.status",{"_index":965,"title":{},"body":{"injectables/AuthService.html":{}}}],["xmlhttprequest",{"_index":951,"title":{},"body":{"injectables/AuthService.html":{}}}],["yapha",{"_index":1709,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["yava",{"_index":1710,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["years",{"_index":4077,"title":{},"body":{"license.html":{}}}],["yes",{"_index":96,"title":{},"body":{"classes/AccountIndex.html":{},"classes/ActivatedRouteStub.html":{},"classes/TokenRegistry.html":{}}}],["yoga",{"_index":2089,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["yoghurt",{"_index":2249,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["yogurt",{"_index":2250,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["yourself",{"_index":4316,"title":{},"body":{"license.html":{}}}],["youth",{"_index":1914,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["yowani",{"_index":1711,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ziwani",{"_index":1712,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["zone.js",{"_index":3586,"title":{},"body":{"dependencies.html":{}}}],["zoom",{"_index":445,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{},"overview.html":{}}}]],"pipeline":["stemmer"]},
+    "store": {"interfaces/AccountDetails.html":{"url":"interfaces/AccountDetails.html","title":"interface - AccountDetails","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n\n  Interfaces\n  AccountDetails\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_models/account.ts\n        \n\n\n\n        \n            Index\n            \n                \n                    \n                        \n                            Properties\n                        \n                    \n                    \n                        \n                            \n                                \n                                            Optional\n                                        age\n                                \n                                \n                                            Optional\n                                        balance\n                                \n                                \n                                            Optional\n                                        category\n                                \n                                \n                                        date_registered\n                                \n                                \n                                        gender\n                                \n                                \n                                        identities\n                                \n                                \n                                        location\n                                \n                                \n                                        products\n                                \n                                \n                                            Optional\n                                        type\n                                \n                                \n                                        vcard\n                                \n                            \n                        \n                    \n                \n            \n        \n\n\n\n            \n                Properties\n                    \n                        \n                                \n                                    \n                                        \n                                        age\n                                    \n                                \n                                \n                                    \n                                        age:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n                                    \n                                        \n                                            Optional\n                                        \n                                    \n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        balance\n                                    \n                                \n                                \n                                    \n                                        balance:         number\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         number\n\n                                        \n                                    \n\n                                    \n                                        \n                                            Optional\n                                        \n                                    \n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        category\n                                    \n                                \n                                \n                                    \n                                        category:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n                                    \n                                        \n                                            Optional\n                                        \n                                    \n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        date_registered\n                                    \n                                \n                                \n                                    \n                                        date_registered:         number\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         number\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        gender\n                                    \n                                \n                                \n                                    \n                                        gender:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        identities\n                                    \n                                \n                                \n                                    \n                                        identities:     literal type\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :     literal type\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        location\n                                    \n                                \n                                \n                                    \n                                        location:     literal type\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :     literal type\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        products\n                                    \n                                \n                                \n                                    \n                                        products:     string[]\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :     string[]\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        type\n                                    \n                                \n                                \n                                    \n                                        type:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n                                    \n                                        \n                                            Optional\n                                        \n                                    \n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        vcard\n                                    \n                                \n                                \n                                    \n                                        vcard:     literal type\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :     literal type\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n            \n    \n\n\n    \n        interface AccountDetails {\n  date_registered: number;\n  gender: string;\n  age?: string;\n  type?: string;\n  balance?: number;\n  identities: {\n    evm: {\n      'bloxberg:8996': string[];\n      'oldchain:1': string[];\n    };\n    latitude: number;\n    longitude: number;\n  };\n  location: {\n    area?: string;\n    area_name: string;\n    area_type?: string;\n  };\n  products: string[];\n  category?: string;\n  vcard: {\n    email: [{\n      value: string;\n    }];\n    fn: [{\n      value: string;\n    }];\n    n: [{\n      value: string[];\n    }];\n    tel: [{\n      meta: {\n        TYP: string[];\n      },\n      value: string;\n    }],\n    version: [{\n      value: string;\n    }];\n  };\n}\n\ninterface Signature {\n  algo: string;\n  data: string;\n  digest: string;\n  engine: string;\n}\n\ninterface Meta {\n  data: AccountDetails;\n  id: string;\n  signature: Signature;\n}\n\ninterface MetaResponse {\n  id: string;\n  m: Meta;\n}\n\nconst defaultAccount: AccountDetails = {\n  date_registered: Date.now(),\n  gender: 'other',\n  identities: {\n    evm: {\n      'bloxberg:8996': [''],\n      'oldchain:1': [''],\n    },\n    latitude: 0,\n    longitude: 0,\n  },\n  location: {\n    area_name: 'Kilifi',\n  },\n  products: [],\n  vcard: {\n    email: [{\n      value: '',\n    }],\n    fn: [{\n      value: 'Sarafu Contract',\n    }],\n    n: [{\n      value: ['Sarafu', 'Contract'],\n    }],\n    tel: [{\n      meta: {\n        TYP: [],\n      },\n      value: '',\n    }],\n    version: [{\n      value: '3.0',\n    }],\n  },\n};\n\nexport {\n  AccountDetails,\n  Signature,\n  Meta,\n  MetaResponse,\n  defaultAccount\n};\n\n    \n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"classes/AccountIndex.html":{"url":"classes/AccountIndex.html","title":"class - AccountIndex","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n  Classes\n  AccountIndex\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_eth/accountIndex.ts\n        \n\n            \n                Description\n            \n            \n                Provides an instance of the accounts registry contract.\nAllows querying of accounts that have been registered as valid accounts in the network.\n\n            \n\n\n\n            \n                Example\n            \n            \n            \n\n            \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                contract\n                            \n                            \n                                contractAddress\n                            \n                            \n                                signerAddress\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                    Public\n                                    Async\n                                addToAccountRegistry\n                            \n                            \n                                    Public\n                                    Async\n                                haveAccount\n                            \n                            \n                                    Public\n                                    Async\n                                last\n                            \n                            \n                                    Public\n                                    Async\n                                totalAccounts\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n            \n    Constructor\n        \n            \n                \n                    \nconstructor(contractAddress: string, signerAddress?: string)\n                    \n                \n                        \n                            \n                                Defined in src/app/_eth/accountIndex.ts:25\n                            \n                        \n\n                \n                    \n                            Create a connection to the deployed account registry contract.\n\n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                                    Description\n                                            \n                                        \n                                        \n                                                \n                                                        contractAddress\n                                                  \n                                                        \n                                                                        string\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                        \n                                                                \nThe deployed account registry contract's address.\n\n\n                                                        \n                                                \n                                                \n                                                        signerAddress\n                                                  \n                                                        \n                                                                        string\n                                                        \n                                                  \n                                                    \n                                                            Yes\n                                                    \n                                                    \n                                                        \n                                                                \nThe account address of the account that deployed the account registry contract.\n\n\n                                                        \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n            \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            contract\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         any\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_eth/accountIndex.ts:21\n                            \n                        \n\n                \n                    \n                        The instance of the account registry contract. \n\n                    \n                \n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            contractAddress\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_eth/accountIndex.ts:23\n                            \n                        \n\n                \n                    \n                        The deployed account registry contract's address. \n\n                    \n                \n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            signerAddress\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_eth/accountIndex.ts:25\n                            \n                        \n\n                \n                    \n                        The account address of the account that deployed the account registry contract. \n\n                    \n                \n\n            \n        \n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Public\n                            Async\n                            addToAccountRegistry\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    addToAccountRegistry(address: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_eth/accountIndex.ts:57\n                \n            \n\n\n            \n                \n                    Registers an account to the accounts registry.\nRequires availability of the signer address.\n\n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                    Description\n                                \n                            \n                            \n                                \n                                    address\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                    \n                                        \nThe account address to be registered to the accounts registry contract.\n\n\n                                    \n                                \n                            \n                        \n                    \n                    \n                        Example :\n                        \n                            Prints "true" for registration of '0xc0ffee254729296a45a3885639AC7E10F9d54979':\n```typescript\n\nconsole.log(await addToAccountRegistry('0xc0ffee254729296a45a3885639AC7E10F9d54979'));\n```\n\n                        \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        true - If registration is successful or account had already been registered.\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Public\n                            Async\n                            haveAccount\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    haveAccount(address: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_eth/accountIndex.ts:78\n                \n            \n\n\n            \n                \n                    Checks whether a specific account address has been registered in the accounts registry.\nReturns \"true\" for available and \"false\" otherwise.\n\n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                    Description\n                                \n                            \n                            \n                                \n                                    address\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                    \n                                        \nThe account address to be validated.\n\n\n                                    \n                                \n                            \n                        \n                    \n                    \n                        Example :\n                        \n                            Prints "true" or "false" depending on whether '0xc0ffee254729296a45a3885639AC7E10F9d54979' has been registered:\n```typescript\n\nconsole.log(await haveAccount('0xc0ffee254729296a45a3885639AC7E10F9d54979'));\n```\n\n                        \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        true - If the address has been registered in the accounts registry.\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Public\n                            Async\n                            last\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    last(numberOfAccounts: number)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_eth/accountIndex.ts:95\n                \n            \n\n\n            \n                \n                    Returns a specified number of the most recently registered accounts.\n\n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                    Description\n                                \n                            \n                            \n                                \n                                    numberOfAccounts\n                                    \n                                                number\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                    \n                                        \nThe number of accounts to return from the accounts registry.\n\n\n                                    \n                                \n                            \n                        \n                    \n                    \n                        Example :\n                        \n                            Prints an array of accounts:\n```typescript\n\nconsole.log(await last(5));\n```\n\n                        \n                    \n                    \n                        Returns :     Promise>\n\n                    \n                    \n                        An array of registered account addresses.\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Public\n                            Async\n                            totalAccounts\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    totalAccounts()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_eth/accountIndex.ts:121\n                \n            \n\n\n            \n                \n                    Returns the total number of accounts that have been registered in the network.\n\n\n                    \n                        Example :\n                        \n                            Prints the total number of registered accounts:\n```typescript\n\nconsole.log(await totalAccounts());\n```\n\n                        \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        The total number of registered accounts.\n\n                    \n                \n            \n        \n    \n\n\n\n\n\n\n    \n\n\n    \n        import Web3 from 'web3';\n\n// Application imports\nimport {environment} from '@src/environments/environment';\n\n/** Fetch the account registry contract's ABI. */\nconst abi: Array = require('@src/assets/js/block-sync/data/AccountRegistry.json');\n/** Establish a connection to the blockchain network. */\nconst web3: Web3 = new Web3(environment.web3Provider);\n\n/**\n * Provides an instance of the accounts registry contract.\n * Allows querying of accounts that have been registered as valid accounts in the network.\n *\n * @remarks\n * This is our interface to the accounts registry contract.\n */\nexport class AccountIndex {\n  /** The instance of the account registry contract. */\n  contract: any;\n  /** The deployed account registry contract's address. */\n  contractAddress: string;\n  /** The account address of the account that deployed the account registry contract. */\n  signerAddress: string;\n\n  /**\n   * Create a connection to the deployed account registry contract.\n   *\n   * @param contractAddress - The deployed account registry contract's address.\n   * @param signerAddress - The account address of the account that deployed the account registry contract.\n   */\n  constructor(contractAddress: string, signerAddress?: string) {\n    this.contractAddress = contractAddress;\n    this.contract = new web3.eth.Contract(abi, this.contractAddress);\n    if (signerAddress) {\n      this.signerAddress = signerAddress;\n    } else {\n      this.signerAddress = web3.eth.accounts[0];\n    }\n  }\n\n  /**\n   * Registers an account to the accounts registry.\n   * Requires availability of the signer address.\n   *\n   * @async\n   * @example\n   * Prints \"true\" for registration of '0xc0ffee254729296a45a3885639AC7E10F9d54979':\n   * ```typescript\n   * console.log(await addToAccountRegistry('0xc0ffee254729296a45a3885639AC7E10F9d54979'));\n   * ```\n   *\n   * @param address - The account address to be registered to the accounts registry contract.\n   * @returns true - If registration is successful or account had already been registered.\n   */\n  public async addToAccountRegistry(address: string): Promise {\n    if (!await this.haveAccount(address)) {\n      return await this.contract.methods.add(address).send({from: this.signerAddress});\n    }\n    return true;\n  }\n\n  /**\n   * Checks whether a specific account address has been registered in the accounts registry.\n   * Returns \"true\" for available and \"false\" otherwise.\n   *\n   * @async\n   * @example\n   * Prints \"true\" or \"false\" depending on whether '0xc0ffee254729296a45a3885639AC7E10F9d54979' has been registered:\n   * ```typescript\n   * console.log(await haveAccount('0xc0ffee254729296a45a3885639AC7E10F9d54979'));\n   * ```\n   *\n   * @param address - The account address to be validated.\n   * @returns true - If the address has been registered in the accounts registry.\n   */\n  public async haveAccount(address: string): Promise {\n    return await this.contract.methods.accountIndex(address).call() !== 0;\n  }\n\n  /**\n   * Returns a specified number of the most recently registered accounts.\n   *\n   * @async\n   * @example\n   * Prints an array of accounts:\n   * ```typescript\n   * console.log(await last(5));\n   * ```\n   *\n   * @param numberOfAccounts - The number of accounts to return from the accounts registry.\n   * @returns An array of registered account addresses.\n   */\n  public async last(numberOfAccounts: number): Promise> {\n    const count: number = await this.totalAccounts();\n    let lowest: number = count - numberOfAccounts - 1;\n    if (lowest  = [];\n    for (let i = count - 1; i > lowest; i--) {\n      const account: string = await this.contract.methods.accounts(i).call();\n      accounts.push(account);\n    }\n    return accounts;\n  }\n\n  /**\n   * Returns the total number of accounts that have been registered in the network.\n   *\n   * @async\n   * @example\n   * Prints the total number of registered accounts:\n   * ```typescript\n   * console.log(await totalAccounts());\n   * ```\n   *\n   * @returns The total number of registered accounts.\n   */\n  public async totalAccounts(): Promise {\n    return await this.contract.methods.count().call();\n  }\n}\n\n    \n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"components/AccountSearchComponent.html":{"url":"components/AccountSearchComponent.html","title":"component - AccountSearchComponent","body":"\n                   \n\n\n\n\n\n  Components\n  AccountSearchComponent\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n        \n            Template\n        \n        \n            Styles\n        \n        \n            DOM Tree\n        \n\n\n\n    \n    File\n\n\n    src/app/pages/accounts/account-search/account-search.component.ts\n\n\n\n\n    \n        Implements\n    \n    \n                    OnInit\n    \n\n\n\n    Metadata\n    \n        \n\n            \n                changeDetection\n                ChangeDetectionStrategy.OnPush\n            \n\n\n\n\n\n\n\n\n\n\n            \n                selector\n                app-account-search\n            \n\n            \n                styleUrls\n                ./account-search.component.scss\n            \n\n\n\n            \n                templateUrl\n                ./account-search.component.html\n            \n\n\n\n\n\n\n\n\n        \n    \n\n\n    \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                addressSearchForm\n                            \n                            \n                                addressSearchLoading\n                            \n                            \n                                addressSearchSubmitted\n                            \n                            \n                                matcher\n                            \n                            \n                                nameSearchForm\n                            \n                            \n                                nameSearchLoading\n                            \n                            \n                                nameSearchSubmitted\n                            \n                            \n                                phoneSearchForm\n                            \n                            \n                                phoneSearchLoading\n                            \n                            \n                                phoneSearchSubmitted\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                ngOnInit\n                            \n                            \n                                    Async\n                                onAddressSearch\n                            \n                            \n                                onNameSearch\n                            \n                            \n                                    Async\n                                onPhoneSearch\n                            \n                        \n                    \n                \n\n\n\n\n\n                    \n                        \n                            Accessors\n                        \n                    \n                    \n                        \n                            \n                                \n                                    nameSearchFormStub\n                                \n                                \n                                    phoneSearchFormStub\n                                \n                                \n                                    addressSearchFormStub\n                                \n                            \n                        \n                    \n        \n    \n\n\n    \n    Constructor\n        \n            \n                \n                    \nconstructor(formBuilder: FormBuilder, userService: UserService, router: Router)\n                    \n                \n                        \n                            \n                                Defined in src/app/pages/accounts/account-search/account-search.component.ts:25\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        formBuilder\n                                                  \n                                                        \n                                                                        FormBuilder\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        userService\n                                                  \n                                                        \n                                                                        UserService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        router\n                                                  \n                                                        \n                                                                        Router\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n\n\n\n\n    \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            ngOnInit\n                        \n                        \n                    \n                \n            \n            \n                \nngOnInit()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/accounts/account-search/account-search.component.ts:33\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            onAddressSearch\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    onAddressSearch()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/accounts/account-search/account-search.component.ts:71\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Promise\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            onNameSearch\n                        \n                        \n                    \n                \n            \n            \n                \nonNameSearch()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/accounts/account-search/account-search.component.ts:49\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            onPhoneSearch\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    onPhoneSearch()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/accounts/account-search/account-search.component.ts:57\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Promise\n\n                    \n                \n            \n        \n    \n\n    \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            addressSearchForm\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         FormGroup\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/account-search/account-search.component.ts:22\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            addressSearchLoading\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         boolean\n\n                        \n                    \n                    \n                        \n                            Default value : false\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/account-search/account-search.component.ts:24\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            addressSearchSubmitted\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         boolean\n\n                        \n                    \n                    \n                        \n                            Default value : false\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/account-search/account-search.component.ts:23\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            matcher\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         CustomErrorStateMatcher\n\n                        \n                    \n                    \n                        \n                            Default value : new CustomErrorStateMatcher()\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/account-search/account-search.component.ts:25\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            nameSearchForm\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         FormGroup\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/account-search/account-search.component.ts:16\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            nameSearchLoading\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         boolean\n\n                        \n                    \n                    \n                        \n                            Default value : false\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/account-search/account-search.component.ts:18\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            nameSearchSubmitted\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         boolean\n\n                        \n                    \n                    \n                        \n                            Default value : false\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/account-search/account-search.component.ts:17\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            phoneSearchForm\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         FormGroup\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/account-search/account-search.component.ts:19\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            phoneSearchLoading\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         boolean\n\n                        \n                    \n                    \n                        \n                            Default value : false\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/account-search/account-search.component.ts:21\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            phoneSearchSubmitted\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         boolean\n\n                        \n                    \n                    \n                        \n                            Default value : false\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/account-search/account-search.component.ts:20\n                            \n                        \n\n\n            \n        \n\n\n    \n    \n        Accessors\n    \n        \n            \n                \n                    \n                        \n                        nameSearchFormStub\n                    \n                \n\n                \n                    \n                        getnameSearchFormStub()\n                    \n                \n                            \n                                \n                                    Defined in src/app/pages/accounts/account-search/account-search.component.ts:45\n                                \n                            \n\n            \n        \n        \n            \n                \n                    \n                        \n                        phoneSearchFormStub\n                    \n                \n\n                \n                    \n                        getphoneSearchFormStub()\n                    \n                \n                            \n                                \n                                    Defined in src/app/pages/accounts/account-search/account-search.component.ts:46\n                                \n                            \n\n            \n        \n        \n            \n                \n                    \n                        \n                        addressSearchFormStub\n                    \n                \n\n                \n                    \n                        getaddressSearchFormStub()\n                    \n                \n                            \n                                \n                                    Defined in src/app/pages/accounts/account-search/account-search.component.ts:47\n                                \n                            \n\n            \n        \n\n\n\n\n    \n        import { Component, OnInit, ChangeDetectionStrategy } from '@angular/core';\nimport {FormBuilder, FormGroup, Validators} from '@angular/forms';\nimport {CustomErrorStateMatcher} from '@app/_helpers';\nimport {UserService} from '@app/_services';\nimport {Router} from '@angular/router';\nimport {strip0x} from '@src/assets/js/ethtx/dist/hex';\nimport {environment} from '@src/environments/environment';\n\n@Component({\n  selector: 'app-account-search',\n  templateUrl: './account-search.component.html',\n  styleUrls: ['./account-search.component.scss'],\n  changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class AccountSearchComponent implements OnInit {\n  nameSearchForm: FormGroup;\n  nameSearchSubmitted: boolean = false;\n  nameSearchLoading: boolean = false;\n  phoneSearchForm: FormGroup;\n  phoneSearchSubmitted: boolean = false;\n  phoneSearchLoading: boolean = false;\n  addressSearchForm: FormGroup;\n  addressSearchSubmitted: boolean = false;\n  addressSearchLoading: boolean = false;\n  matcher: CustomErrorStateMatcher = new CustomErrorStateMatcher();\n\n  constructor(\n    private formBuilder: FormBuilder,\n    private userService: UserService,\n    private router: Router,\n  ) { }\n\n  ngOnInit(): void {\n    this.nameSearchForm = this.formBuilder.group({\n      name: ['', Validators.required],\n    });\n    this.phoneSearchForm = this.formBuilder.group({\n      phoneNumber: ['', Validators.required],\n    });\n    this.addressSearchForm = this.formBuilder.group({\n      address: ['', Validators.required],\n    });\n  }\n\n  get nameSearchFormStub(): any { return this.nameSearchForm.controls; }\n  get phoneSearchFormStub(): any { return this.phoneSearchForm.controls; }\n  get addressSearchFormStub(): any { return this.addressSearchForm.controls; }\n\n  onNameSearch(): void {\n    this.nameSearchSubmitted = true;\n    if (this.nameSearchForm.invalid) { return; }\n    this.nameSearchLoading = true;\n    this.userService.searchAccountByName(this.nameSearchFormStub.name.value);\n    this.nameSearchLoading = false;\n  }\n\n  async onPhoneSearch(): Promise {\n    this.phoneSearchSubmitted = true;\n    if (this.phoneSearchForm.invalid) { return; }\n    this.phoneSearchLoading = true;\n    (await this.userService.getAccountByPhone(this.phoneSearchFormStub.phoneNumber.value, 100)).subscribe(async res => {\n      if (res !== undefined) {\n        await this.router.navigateByUrl(`/accounts/${strip0x(res.identities.evm[`bloxberg:${environment.bloxbergChainId}`][0])}`);\n      } else {\n        alert('Account not found!');\n      }\n    });\n    this.phoneSearchLoading = false;\n  }\n\n  async onAddressSearch(): Promise {\n    this.addressSearchSubmitted = true;\n    if (this.addressSearchForm.invalid) { return; }\n    this.addressSearchLoading = true;\n    (await this.userService.getAccountByAddress(this.addressSearchFormStub.address.value, 100)).subscribe(async res => {\n      if (res !== undefined) {\n        await this.router.navigateByUrl(`/accounts/${strip0x(res.identities.evm[`bloxberg:${environment.bloxbergChainId}`][0])}`);\n      } else {\n        alert('Account not found!');\n      }\n    });\n    this.addressSearchLoading = false;\n  }\n}\n\n    \n\n    \n        \n\n  \n\n  \n  \n  \n\n  \n    \n    \n    \n      \n        \n          Home\n          Accounts\n          Search\n        \n      \n      \n        \n          Accounts\n        \n        \n          \n            \n              \n                \n                   Search \n                  \n                  Phone Number is required.\n                  phone\n                  Phone Number\n                \n                 SEARCH \n              \n            \n            \n              \n                \n                   Search \n                  \n                  Account Address is required.\n                  view_in_ar\n                  Account Address\n                \n                 SEARCH \n              \n            \n          \n        \n      \n    \n    \n  \n  \n  \n  \n\n\n    \n\n    \n                \n                    ./account-search.component.scss\n                \n                \n    \n\n    \n        \n        \n            \n                Legend\n            \n            \n                Html element\n            \n            \n                Component\n            \n            \n                Html element with directive\n            \n        \n    \n\n    \n\n\n\n\n\n\n        var COMPONENT_TEMPLATE = '                                              Home          Accounts          Search                                      Accounts                                                                                       Search                                     Phone Number is required.                  phone                  Phone Number                                 SEARCH                                                                                        Search                                     Account Address is required.                  view_in_ar                  Account Address                                 SEARCH                                                                   '\n    var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n    var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[routerLink]'}];\n    var ACTUAL_COMPONENT = {'name': 'AccountSearchComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"components/AccountsComponent.html":{"url":"components/AccountsComponent.html","title":"component - AccountsComponent","body":"\n                   \n\n\n\n\n\n  Components\n  AccountsComponent\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n        \n            Template\n        \n        \n            Styles\n        \n        \n            DOM Tree\n        \n\n\n\n    \n    File\n\n\n    src/app/pages/accounts/accounts.component.ts\n\n\n\n\n    \n        Implements\n    \n    \n                    OnInit\n    \n\n\n\n    Metadata\n    \n        \n\n            \n                changeDetection\n                ChangeDetectionStrategy.OnPush\n            \n\n\n\n\n\n\n\n\n\n\n            \n                selector\n                app-accounts\n            \n\n            \n                styleUrls\n                ./accounts.component.scss\n            \n\n\n\n            \n                templateUrl\n                ./accounts.component.html\n            \n\n\n\n\n\n\n\n\n        \n    \n\n\n    \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                accounts\n                            \n                            \n                                accountsType\n                            \n                            \n                                accountTypes\n                            \n                            \n                                dataSource\n                            \n                            \n                                defaultPageSize\n                            \n                            \n                                displayedColumns\n                            \n                            \n                                pageSizeOptions\n                            \n                            \n                                paginator\n                            \n                            \n                                sort\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                doFilter\n                            \n                            \n                                downloadCsv\n                            \n                            \n                                filterAccounts\n                            \n                            \n                                ngOnInit\n                            \n                            \n                                refreshPaginator\n                            \n                            \n                                    Async\n                                viewAccount\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n    \n    Constructor\n        \n            \n                \n                    \nconstructor(userService: UserService, loggingService: LoggingService, router: Router)\n                    \n                \n                        \n                            \n                                Defined in src/app/pages/accounts/accounts.component.ts:29\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        userService\n                                                  \n                                                        \n                                                                        UserService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        loggingService\n                                                  \n                                                        \n                                                                        LoggingService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        router\n                                                  \n                                                        \n                                                                        Router\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n\n\n\n\n    \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            doFilter\n                        \n                        \n                    \n                \n            \n            \n                \ndoFilter(value: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/accounts/accounts.component.ts:57\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    value\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            downloadCsv\n                        \n                        \n                    \n                \n            \n            \n                \ndownloadCsv()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/accounts/accounts.component.ts:84\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            filterAccounts\n                        \n                        \n                    \n                \n            \n            \n                \nfilterAccounts()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/accounts/accounts.component.ts:65\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            ngOnInit\n                        \n                        \n                    \n                \n            \n            \n                \nngOnInit()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/accounts/accounts.component.ts:48\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            refreshPaginator\n                        \n                        \n                    \n                \n            \n            \n                \nrefreshPaginator()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/accounts/accounts.component.ts:76\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            viewAccount\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    viewAccount(account)\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/accounts/accounts.component.ts:61\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Optional\n                                \n                            \n                            \n                                \n                                    account\n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n    \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            accounts\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         Array\n\n                        \n                    \n                    \n                        \n                            Default value : []\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/accounts.component.ts:21\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            accountsType\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                    \n                        \n                            Default value : 'all'\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/accounts.component.ts:25\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            accountTypes\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     Array\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/accounts.component.ts:26\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            dataSource\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     MatTableDataSource\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/accounts.component.ts:20\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            defaultPageSize\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         number\n\n                        \n                    \n                    \n                        \n                            Default value : 10\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/accounts.component.ts:23\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            displayedColumns\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     Array\n\n                        \n                    \n                    \n                        \n                            Default value : ['name', 'phone', 'created', 'balance', 'location']\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/accounts.component.ts:22\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            pageSizeOptions\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     Array\n\n                        \n                    \n                    \n                        \n                            Default value : [10, 20, 50, 100]\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/accounts.component.ts:24\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            paginator\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     MatPaginator\n\n                        \n                    \n                    \n                        \n                            Decorators : \n                            \n                            \n                                @ViewChild(MatPaginator)\n                            \n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/accounts.component.ts:28\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            sort\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     MatSort\n\n                        \n                    \n                    \n                        \n                            Decorators : \n                            \n                            \n                                @ViewChild(MatSort)\n                            \n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/accounts.component.ts:29\n                            \n                        \n\n\n            \n        \n\n\n\n\n\n    \n        import {ChangeDetectionStrategy, Component, OnInit, ViewChild} from '@angular/core';\nimport {MatTableDataSource} from '@angular/material/table';\nimport {MatPaginator} from '@angular/material/paginator';\nimport {MatSort} from '@angular/material/sort';\nimport {LoggingService, UserService} from '@app/_services';\nimport {Router} from '@angular/router';\nimport {exportCsv} from '@app/_helpers';\nimport {strip0x} from '@src/assets/js/ethtx/dist/hex';\nimport {first} from 'rxjs/operators';\nimport {environment} from '@src/environments/environment';\nimport {AccountDetails} from '@app/_models';\n\n@Component({\n  selector: 'app-accounts',\n  templateUrl: './accounts.component.html',\n  styleUrls: ['./accounts.component.scss'],\n  changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class AccountsComponent implements OnInit {\n  dataSource: MatTableDataSource;\n  accounts: Array = [];\n  displayedColumns: Array = ['name', 'phone', 'created', 'balance', 'location'];\n  defaultPageSize: number = 10;\n  pageSizeOptions: Array = [10, 20, 50, 100];\n  accountsType: string = 'all';\n  accountTypes: Array;\n\n  @ViewChild(MatPaginator) paginator: MatPaginator;\n  @ViewChild(MatSort) sort: MatSort;\n\n  constructor(\n    private userService: UserService,\n    private loggingService: LoggingService,\n    private router: Router\n  )\n  {\n    (async () => {\n      try {\n          // TODO it feels like this should be in the onInit handler\n        await this.userService.loadAccounts(100);\n      } catch (error) {\n        this.loggingService.sendErrorLevelMessage('Failed to load accounts', this, {error});\n      }\n    })();\n    this.userService.getAccountTypes().pipe(first()).subscribe(res => this.accountTypes = res);\n  }\n\n  ngOnInit(): void {\n    this.userService.accountsSubject.subscribe(accounts => {\n      this.dataSource = new MatTableDataSource(accounts);\n      this.dataSource.paginator = this.paginator;\n      this.dataSource.sort = this.sort;\n      this.accounts = accounts;\n    });\n  }\n\n  doFilter(value: string): void {\n    this.dataSource.filter = value.trim().toLocaleLowerCase();\n  }\n\n  async viewAccount(account): Promise {\n    await this.router.navigateByUrl(`/accounts/${strip0x(account.identities.evm[`bloxberg:${environment.bloxbergChainId}`][0])}`);\n  }\n\n  filterAccounts(): void {\n    if (this.accountsType === 'all') {\n      this.userService.accountsSubject.subscribe(accounts => {\n        this.dataSource.data = accounts;\n        this.accounts = accounts;\n      });\n    } else {\n      this.dataSource.data = this.accounts.filter(account => account.type === this.accountsType);\n    }\n  }\n\n  refreshPaginator(): void {\n    if (!this.dataSource.paginator) {\n      this.dataSource.paginator = this.paginator;\n    }\n\n    this.paginator._changePageSize(this.paginator.pageSize);\n  }\n\n  downloadCsv(): void {\n    exportCsv(this.accounts, 'accounts');\n  }\n}\n\n    \n\n    \n        \n\n  \n\n  \n  \n  \n\n  \n    \n    \n    \n      \n        \n          Home\n          Accounts\n        \n      \n      \n        \n          Accounts\n        \n        \n          \n            \n               ACCOUNT TYPE \n              \n                ALL\n                \n                  {{accountType | uppercase}}\n                \n              \n            \n             SEARCH \n             EXPORT \n          \n\n          \n             Filter \n            \n            search\n          \n\n          \n\n            \n               NAME \n               {{user?.vcard.fn[0].value}} \n            \n\n            \n               PHONE NUMBER \n               {{user?.vcard.tel[0].value}} \n            \n\n            \n               CREATED \n               {{user?.date_registered | date}} \n            \n\n            \n               BALANCE \n               {{user?.balance | tokenRatio}} \n            \n\n            \n               LOCATION \n               {{user?.location.area_name}} \n            \n\n            \n            \n          \n\n          \n        \n      \n    \n    \n  \n  \n  \n  \n\n\n    \n\n    \n                \n                    ./accounts.component.scss\n                \n                \n    \n\n    \n        \n        \n            \n                Legend\n            \n            \n                Html element\n            \n            \n                Component\n            \n            \n                Html element with directive\n            \n        \n    \n\n    \n\n\n\n\n\n\n        var COMPONENT_TEMPLATE = '                                              Home          Accounts                                      Accounts                                                     ACCOUNT TYPE                               ALL                                  {{accountType | uppercase}}                                                       SEARCH              EXPORT                                  Filter                         search                                               NAME                {{user?.vcard.fn[0].value}}                                        PHONE NUMBER                {{user?.vcard.tel[0].value}}                                        CREATED                {{user?.date_registered | date}}                                        BALANCE                {{user?.balance | tokenRatio}}                                        LOCATION                {{user?.location.area_name}}                                                                                       '\n    var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n    var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[routerLink]'}];\n    var ACTUAL_COMPONENT = {'name': 'AccountsComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"modules/AccountsModule.html":{"url":"modules/AccountsModule.html","title":"module - AccountsModule","body":"\n                   \n\n\n\n\n    Modules\n    AccountsModule\n\n\n\n    \n        \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_AccountsModule\n\n\n\ncluster_AccountsModule_declarations\n\n\n\ncluster_AccountsModule_imports\n\n\n\n\nAccountDetailsComponent\n\nAccountDetailsComponent\n\n\n\nAccountsModule\n\nAccountsModule\n\nAccountsModule -->\n\nAccountDetailsComponent->AccountsModule\n\n\n\n\n\nAccountSearchComponent\n\nAccountSearchComponent\n\nAccountsModule -->\n\nAccountSearchComponent->AccountsModule\n\n\n\n\n\nAccountsComponent\n\nAccountsComponent\n\nAccountsModule -->\n\nAccountsComponent->AccountsModule\n\n\n\n\n\nCreateAccountComponent\n\nCreateAccountComponent\n\nAccountsModule -->\n\nCreateAccountComponent->AccountsModule\n\n\n\n\n\nAccountsRoutingModule\n\nAccountsRoutingModule\n\nAccountsModule -->\n\nAccountsRoutingModule->AccountsModule\n\n\n\n\n\nSharedModule\n\nSharedModule\n\nAccountsModule -->\n\nSharedModule->AccountsModule\n\n\n\n\n\nTransactionsModule\n\nTransactionsModule\n\nAccountsModule -->\n\nTransactionsModule->AccountsModule\n\n\n\n\n\n\n    \n    \n    \n        Zoom in\n        Reset\n        Zoom out\n    \n\n\n\n\n\n    \n        Info\n    \n    \n        Source\n    \n\n\n\n    \n\n        \n            File\n        \n        \n            src/app/pages/accounts/accounts.module.ts\n        \n\n\n\n\n        \n            \n                \n                    Declarations\n                    \n                        \n                            AccountDetailsComponent\n                        \n                        \n                            AccountSearchComponent\n                        \n                        \n                            AccountsComponent\n                        \n                        \n                            CreateAccountComponent\n                        \n                    \n                \n                \n                    Imports\n                    \n                        \n                            AccountsRoutingModule\n                        \n                        \n                            SharedModule\n                        \n                        \n                            TransactionsModule\n                        \n                    \n                \n            \n        \n\n\n    \n\n\n    \n        import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { AccountsRoutingModule } from '@pages/accounts/accounts-routing.module';\nimport { AccountsComponent } from '@pages/accounts/accounts.component';\nimport {SharedModule} from '@app/shared/shared.module';\nimport { AccountDetailsComponent } from '@pages/accounts/account-details/account-details.component';\nimport {DataTablesModule} from 'angular-datatables';\nimport { CreateAccountComponent } from '@pages/accounts/create-account/create-account.component';\nimport {MatTableModule} from '@angular/material/table';\nimport {MatSortModule} from '@angular/material/sort';\nimport {MatCheckboxModule} from '@angular/material/checkbox';\nimport {MatPaginatorModule} from '@angular/material/paginator';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatCardModule} from '@angular/material/card';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatSelectModule} from '@angular/material/select';\nimport {TransactionsModule} from '@pages/transactions/transactions.module';\nimport {MatTabsModule} from '@angular/material/tabs';\nimport {MatRippleModule} from '@angular/material/core';\nimport {MatProgressSpinnerModule} from '@angular/material/progress-spinner';\nimport {ReactiveFormsModule} from '@angular/forms';\nimport { AccountSearchComponent } from './account-search/account-search.component';\nimport {MatSnackBarModule} from '@angular/material/snack-bar';\n\n\n@NgModule({\n  declarations: [\n    AccountsComponent,\n    AccountDetailsComponent,\n    CreateAccountComponent,\n    AccountSearchComponent\n  ],\n  imports: [\n    CommonModule,\n    AccountsRoutingModule,\n    SharedModule,\n    DataTablesModule,\n    MatTableModule,\n    MatSortModule,\n    MatCheckboxModule,\n    MatPaginatorModule,\n    MatInputModule,\n    MatFormFieldModule,\n    MatButtonModule,\n    MatCardModule,\n    MatIconModule,\n    MatSelectModule,\n    TransactionsModule,\n    MatTabsModule,\n    MatRippleModule,\n    MatProgressSpinnerModule,\n    ReactiveFormsModule,\n    MatSnackBarModule,\n  ]\n})\nexport class AccountsModule { }\n\n    \n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"modules/AccountsRoutingModule.html":{"url":"modules/AccountsRoutingModule.html","title":"module - AccountsRoutingModule","body":"\n                   \n\n\n\n\n    Modules\n    AccountsRoutingModule\n\n\n\n\n    \n        Info\n    \n    \n        Source\n    \n\n\n\n    \n\n        \n            File\n        \n        \n            src/app/pages/accounts/accounts-routing.module.ts\n        \n\n\n\n\n        \n            \n            \n        \n\n\n    \n\n\n    \n        import { NgModule } from '@angular/core';\nimport { Routes, RouterModule } from '@angular/router';\n\nimport { AccountsComponent } from '@pages/accounts/accounts.component';\nimport {CreateAccountComponent} from '@pages/accounts/create-account/create-account.component';\nimport {AccountDetailsComponent} from '@pages/accounts/account-details/account-details.component';\nimport {AccountSearchComponent} from '@pages/accounts/account-search/account-search.component';\n\nconst routes: Routes = [\n  { path: '', component: AccountsComponent },\n  { path: 'search', component: AccountSearchComponent },\n  // { path: 'create', component: CreateAccountComponent },\n  { path: ':id', component: AccountDetailsComponent },\n  { path: '**', redirectTo: '', pathMatch: 'full' }\n];\n\n@NgModule({\n  imports: [RouterModule.forChild(routes)],\n  exports: [RouterModule]\n})\nexport class AccountsRoutingModule { }\n\n    \n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"interfaces/Action.html":{"url":"interfaces/Action.html","title":"interface - Action","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n\n  Interfaces\n  Action\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_models/mappings.ts\n        \n\n\n\n        \n            Index\n            \n                \n                    \n                        \n                            Properties\n                        \n                    \n                    \n                        \n                            \n                                \n                                        action\n                                \n                                \n                                        approval\n                                \n                                \n                                        id\n                                \n                                \n                                        role\n                                \n                                \n                                        user\n                                \n                            \n                        \n                    \n                \n            \n        \n\n\n\n            \n                Properties\n                    \n                        \n                                \n                                    \n                                        \n                                        action\n                                    \n                                \n                                \n                                    \n                                        action:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        approval\n                                    \n                                \n                                \n                                    \n                                        approval:         boolean\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         boolean\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        id\n                                    \n                                \n                                \n                                    \n                                        id:         number\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         number\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        role\n                                    \n                                \n                                \n                                    \n                                        role:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        user\n                                    \n                                \n                                \n                                    \n                                        user:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n            \n    \n\n\n    \n        interface Action {\n  id: number;\n  user: string;\n  role: string;\n  action: string;\n  approval: boolean;\n}\n\ninterface Category {\n  name: string;\n  products: Array;\n}\n\ninterface AreaName {\n  name: string;\n  locations: Array;\n}\n\ninterface AreaType {\n  name: string;\n  area: Array;\n}\n\nexport {\n  Action,\n  Category,\n  AreaName,\n  AreaType\n};\n\n    \n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"classes/ActivatedRouteStub.html":{"url":"classes/ActivatedRouteStub.html","title":"class - ActivatedRouteStub","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n  Classes\n  ActivatedRouteStub\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/testing/activated-route-stub.ts\n        \n\n            \n                Description\n            \n            \n                An ActivateRoute test double with a paramMap observable.\nUse the setParamMap() method to add the next paramMap value.\n\n            \n\n\n\n\n            \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                    Readonly\n                                paramMap\n                            \n                            \n                                    Private\n                                subject\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                setParamMap\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n            \n    Constructor\n        \n            \n                \n                    \nconstructor(initialParams?: Params)\n                    \n                \n                        \n                            \n                                Defined in src/testing/activated-route-stub.ts:11\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        initialParams\n                                                  \n                                                        \n                                                                        Params\n                                                        \n                                                  \n                                                    \n                                                            Yes\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n            \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                                Readonly\n                            paramMap\n                            \n                        \n                    \n                \n                    \n                        \n                            Default value : this.subject.asObservable()\n                        \n                    \n                        \n                            \n                                    Defined in src/testing/activated-route-stub.ts:18\n                            \n                        \n\n                \n                    \n                        The mock paramMap observable \n\n                    \n                \n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                                Private\n                            subject\n                            \n                        \n                    \n                \n                    \n                        \n                            Default value : new ReplaySubject()\n                        \n                    \n                        \n                            \n                                    Defined in src/testing/activated-route-stub.ts:11\n                            \n                        \n\n\n            \n        \n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            setParamMap\n                        \n                        \n                    \n                \n            \n            \n                \nsetParamMap(params?: Params)\n                \n            \n\n\n            \n                \n                    Defined in src/testing/activated-route-stub.ts:21\n                \n            \n\n\n            \n                \n                    Set the paramMap observables's next value \n\n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    params\n                                    \n                                                Params\n                                    \n\n                                    \n                                        Yes\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n\n\n\n\n\n    \n\n\n    \n        import { convertToParamMap, ParamMap, Params } from '@angular/router';\nimport { ReplaySubject } from 'rxjs';\n\n/**\n * An ActivateRoute test double with a `paramMap` observable.\n * Use the `setParamMap()` method to add the next `paramMap` value.\n */\nexport class ActivatedRouteStub {\n  // Use a ReplaySubject to share previous values with subscribers\n  // and pump new values into the `paramMap` observable\n  private subject = new ReplaySubject();\n\n  constructor(initialParams?: Params) {\n    this.setParamMap(initialParams);\n  }\n\n  /** The mock paramMap observable */\n  readonly paramMap = this.subject.asObservable();\n\n  /** Set the paramMap observables's next value */\n  setParamMap(params?: Params): void {\n    this.subject.next(convertToParamMap(params));\n  }\n}\n\n    \n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"components/AdminComponent.html":{"url":"components/AdminComponent.html","title":"component - AdminComponent","body":"\n                   \n\n\n\n\n\n  Components\n  AdminComponent\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n        \n            Template\n        \n        \n            Styles\n        \n        \n            DOM Tree\n        \n\n\n\n    \n    File\n\n\n    src/app/pages/admin/admin.component.ts\n\n\n\n\n    \n        Implements\n    \n    \n                    OnInit\n    \n\n\n\n    Metadata\n    \n        \n\n            \n                changeDetection\n                ChangeDetectionStrategy.OnPush\n            \n\n\n\n\n\n\n\n\n\n\n            \n                selector\n                app-admin\n            \n\n            \n                styleUrls\n                ./admin.component.scss\n            \n\n\n\n            \n                templateUrl\n                ./admin.component.html\n            \n\n\n\n\n\n\n\n\n        \n    \n\n\n    \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                action\n                            \n                            \n                                actions\n                            \n                            \n                                dataSource\n                            \n                            \n                                displayedColumns\n                            \n                            \n                                paginator\n                            \n                            \n                                sort\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                approvalStatus\n                            \n                            \n                                approveAction\n                            \n                            \n                                disapproveAction\n                            \n                            \n                                doFilter\n                            \n                            \n                                downloadCsv\n                            \n                            \n                                expandCollapse\n                            \n                            \n                                ngOnInit\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n    \n    Constructor\n        \n            \n                \n                    \nconstructor(userService: UserService, loggingService: LoggingService)\n                    \n                \n                        \n                            \n                                Defined in src/app/pages/admin/admin.component.ts:31\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        userService\n                                                  \n                                                        \n                                                                        UserService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        loggingService\n                                                  \n                                                        \n                                                                        LoggingService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n\n\n\n\n    \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            approvalStatus\n                        \n                        \n                    \n                \n            \n            \n                \napprovalStatus(status: boolean)\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/admin/admin.component.ts:53\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    status\n                                    \n                                                boolean\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         string\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            approveAction\n                        \n                        \n                    \n                \n            \n            \n                \napproveAction(action: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/admin/admin.component.ts:57\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    action\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            disapproveAction\n                        \n                        \n                    \n                \n            \n            \n                \ndisapproveAction(action: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/admin/admin.component.ts:63\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    action\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            doFilter\n                        \n                        \n                    \n                \n            \n            \n                \ndoFilter(value: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/admin/admin.component.ts:49\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    value\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            downloadCsv\n                        \n                        \n                    \n                \n            \n            \n                \ndownloadCsv()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/admin/admin.component.ts:73\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            expandCollapse\n                        \n                        \n                    \n                \n            \n            \n                \nexpandCollapse(row)\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/admin/admin.component.ts:69\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Optional\n                                \n                            \n                            \n                                \n                                    row\n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            ngOnInit\n                        \n                        \n                    \n                \n            \n            \n                \nngOnInit()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/admin/admin.component.ts:46\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n\n    \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            action\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         Action\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/admin/admin.component.ts:27\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            actions\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         Array\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/admin/admin.component.ts:28\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            dataSource\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     MatTableDataSource\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/admin/admin.component.ts:25\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            displayedColumns\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     Array\n\n                        \n                    \n                    \n                        \n                            Default value : ['expand', 'user', 'role', 'action', 'status', 'approve']\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/admin/admin.component.ts:26\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            paginator\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     MatPaginator\n\n                        \n                    \n                    \n                        \n                            Decorators : \n                            \n                            \n                                @ViewChild(MatPaginator)\n                            \n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/admin/admin.component.ts:30\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            sort\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     MatSort\n\n                        \n                    \n                    \n                        \n                            Decorators : \n                            \n                            \n                                @ViewChild(MatSort)\n                            \n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/admin/admin.component.ts:31\n                            \n                        \n\n\n            \n        \n\n\n\n\n\n    \n        import {ChangeDetectionStrategy, Component, OnInit, ViewChild} from '@angular/core';\nimport {MatTableDataSource} from '@angular/material/table';\nimport {MatPaginator} from '@angular/material/paginator';\nimport {MatSort} from '@angular/material/sort';\nimport {LoggingService, UserService} from '@app/_services';\nimport {animate, state, style, transition, trigger} from '@angular/animations';\nimport {first} from 'rxjs/operators';\nimport {exportCsv} from '@app/_helpers';\nimport {Action} from '../../_models';\n\n@Component({\n  selector: 'app-admin',\n  templateUrl: './admin.component.html',\n  styleUrls: ['./admin.component.scss'],\n  changeDetection: ChangeDetectionStrategy.OnPush,\n  animations: [\n    trigger('detailExpand', [\n      state('collapsed', style({height: '0px', minHeight: 0, visibility: 'hidden'})),\n      state('expanded', style({height: '*', visibility: 'visible'})),\n      transition('expanded  collapsed', animate('225ms cubic-bezier(0.4, 0.0, 0.2, 1)')),\n    ])\n  ]\n})\nexport class AdminComponent implements OnInit {\n  dataSource: MatTableDataSource;\n  displayedColumns: Array = ['expand', 'user', 'role', 'action', 'status', 'approve'];\n  action: Action;\n  actions: Array;\n\n  @ViewChild(MatPaginator) paginator: MatPaginator;\n  @ViewChild(MatSort) sort: MatSort;\n\n  constructor(\n    private userService: UserService,\n    private loggingService: LoggingService\n  ) {\n    this.userService.getActions();\n    this.userService.actionsSubject.subscribe(actions => {\n      this.dataSource = new MatTableDataSource(actions);\n      this.dataSource.paginator = this.paginator;\n      this.dataSource.sort = this.sort;\n      this.actions = actions;\n    });\n  }\n\n  ngOnInit(): void {\n  }\n\n  doFilter(value: string): void {\n    this.dataSource.filter = value.trim().toLocaleLowerCase();\n  }\n\n  approvalStatus(status: boolean): string {\n    return status ? 'Approved' : 'Unapproved';\n  }\n\n  approveAction(action: any): void {\n    if (!confirm('Approve action?')) { return; }\n    this.userService.approveAction(action.id).pipe(first()).subscribe(res => this.loggingService.sendInfoLevelMessage(res));\n    this.userService.getActions();\n  }\n\n  disapproveAction(action: any): void {\n    if (!confirm('Disapprove action?')) { return; }\n    this.userService.revokeAction(action.id).pipe(first()).subscribe(res => this.loggingService.sendInfoLevelMessage(res));\n    this.userService.getActions();\n  }\n\n  expandCollapse(row): void {\n    row.isExpanded = !row.isExpanded;\n  }\n\n  downloadCsv(): void {\n    exportCsv(this.actions, 'actions');\n  }\n}\n\n    \n\n    \n        \n\n  \n\n  \n  \n  \n\n  \n    \n    \n    \n      \n        \n          Home\n          Admin\n        \n      \n      \n        \n          \n            Actions\n             EXPORT \n          \n        \n        \n\n          \n             Filter \n            \n            search\n          \n\n          \n\n            \n            \n               Expand \n              \n                 + \n                 - \n              \n            \n\n            \n               NAME \n               {{action.user}} \n            \n\n            \n               ROLE \n               {{action.role}} \n            \n\n            \n               ACTION \n               {{action.action}} \n            \n\n            \n               STATUS \n              \n                 {{approvalStatus(action.approval)}} \n                 {{approvalStatus(action.approval)}} \n              \n            \n\n            \n               APPROVE \n              \n                 Approve \n                 Disapprove \n              \n            \n\n            \n            \n              \n                \n                  Staff Name: {{action.user}}\n                  Role: {{action.role}}\n                  Action Details: {{action.action}}\n                  Approval Status: {{action.approval}}\n                \n              \n            \n\n            \n            \n            \n          \n\n          \n        \n      \n    \n    \n  \n  \n  \n  \n\n\n\n    \n\n    \n                \n                    ./admin.component.scss\n                \n                button {\n  width: 6rem;\n}\n\n    \n\n    \n        \n        \n            \n                Legend\n            \n            \n                Html element\n            \n            \n                Component\n            \n            \n                Html element with directive\n            \n        \n    \n\n    \n\n\n\n\n\n\n        var COMPONENT_TEMPLATE = '                                              Home          Admin                                                  Actions             EXPORT                                                  Filter                         search                                                           Expand                                +                  -                                                      NAME                {{action.user}}                                        ROLE                {{action.role}}                                        ACTION                {{action.action}}                                        STATUS                                {{approvalStatus(action.approval)}}                  {{approvalStatus(action.approval)}}                                                      APPROVE                                Approve                  Disapprove                                                                                                   Staff Name: {{action.user}}                  Role: {{action.role}}                  Action Details: {{action.action}}                  Approval Status: {{action.approval}}                                                                                                                                '\n    var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n    var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[routerLink]'}];\n    var ACTUAL_COMPONENT = {'name': 'AdminComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"modules/AdminModule.html":{"url":"modules/AdminModule.html","title":"module - AdminModule","body":"\n                   \n\n\n\n\n    Modules\n    AdminModule\n\n\n\n    \n        \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_AdminModule\n\n\n\ncluster_AdminModule_declarations\n\n\n\ncluster_AdminModule_imports\n\n\n\n\nAdminComponent\n\nAdminComponent\n\n\n\nAdminModule\n\nAdminModule\n\nAdminModule -->\n\nAdminComponent->AdminModule\n\n\n\n\n\nAdminRoutingModule\n\nAdminRoutingModule\n\nAdminModule -->\n\nAdminRoutingModule->AdminModule\n\n\n\n\n\nSharedModule\n\nSharedModule\n\nAdminModule -->\n\nSharedModule->AdminModule\n\n\n\n\n\n\n    \n    \n    \n        Zoom in\n        Reset\n        Zoom out\n    \n\n\n\n\n\n    \n        Info\n    \n    \n        Source\n    \n\n\n\n    \n\n        \n            File\n        \n        \n            src/app/pages/admin/admin.module.ts\n        \n\n\n\n\n        \n            \n                \n                    Declarations\n                    \n                        \n                            AdminComponent\n                        \n                    \n                \n                \n                    Imports\n                    \n                        \n                            AdminRoutingModule\n                        \n                        \n                            SharedModule\n                        \n                    \n                \n            \n        \n\n\n    \n\n\n    \n        import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { AdminRoutingModule } from '@pages/admin/admin-routing.module';\nimport { AdminComponent } from '@pages/admin/admin.component';\nimport {SharedModule} from '@app/shared/shared.module';\nimport {MatCardModule} from '@angular/material/card';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatTableModule} from '@angular/material/table';\nimport {MatSortModule} from '@angular/material/sort';\nimport {MatPaginatorModule} from '@angular/material/paginator';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatRippleModule} from '@angular/material/core';\n\n\n@NgModule({\n  declarations: [AdminComponent],\n    imports: [\n        CommonModule,\n        AdminRoutingModule,\n        SharedModule,\n        MatCardModule,\n        MatFormFieldModule,\n        MatInputModule,\n        MatIconModule,\n        MatTableModule,\n        MatSortModule,\n        MatPaginatorModule,\n        MatButtonModule,\n        MatRippleModule\n    ]\n})\nexport class AdminModule { }\n\n    \n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"modules/AdminRoutingModule.html":{"url":"modules/AdminRoutingModule.html","title":"module - AdminRoutingModule","body":"\n                   \n\n\n\n\n    Modules\n    AdminRoutingModule\n\n\n\n\n    \n        Info\n    \n    \n        Source\n    \n\n\n\n    \n\n        \n            File\n        \n        \n            src/app/pages/admin/admin-routing.module.ts\n        \n\n\n\n\n        \n            \n            \n        \n\n\n    \n\n\n    \n        import { NgModule } from '@angular/core';\nimport { Routes, RouterModule } from '@angular/router';\n\nimport { AdminComponent } from '@pages/admin/admin.component';\n\nconst routes: Routes = [{ path: '', component: AdminComponent }];\n\n@NgModule({\n  imports: [RouterModule.forChild(routes)],\n  exports: [RouterModule]\n})\nexport class AdminRoutingModule { }\n\n    \n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"components/AppComponent.html":{"url":"components/AppComponent.html","title":"component - AppComponent","body":"\n                   \n\n\n\n\n\n  Components\n  AppComponent\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n        \n            Template\n        \n        \n            Styles\n        \n        \n            DOM Tree\n        \n\n\n\n    \n    File\n\n\n    src/app/app.component.ts\n\n\n\n\n\n\n\n    Metadata\n    \n        \n\n            \n                changeDetection\n                ChangeDetectionStrategy.OnPush\n            \n\n\n\n\n\n\n\n\n\n\n            \n                selector\n                app-root\n            \n\n            \n                styleUrls\n                ./app.component.scss\n            \n\n\n\n            \n                templateUrl\n                ./app.component.html\n            \n\n\n\n\n\n\n\n\n        \n    \n\n\n    \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                mediaQuery\n                            \n                            \n                                readyState\n                            \n                            \n                                readyStateTarget\n                            \n                            \n                                title\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                onResize\n                            \n                        \n                    \n                \n\n\n\n\n                \n                    \n                        HostListeners\n                    \n                \n                \n                    \n                        \n                            \n                                window:cic_convert\n                            \n                            \n                                window:cic_transfer\n                            \n                        \n                    \n                \n\n        \n    \n\n\n    \n    Constructor\n        \n            \n                \n                    \nconstructor(authService: AuthService, transactionService: TransactionService, loggingService: LoggingService, errorDialogService: ErrorDialogService)\n                    \n                \n                        \n                            \n                                Defined in src/app/app.component.ts:15\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        authService\n                                                  \n                                                        \n                                                                        AuthService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        transactionService\n                                                  \n                                                        \n                                                                        TransactionService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        loggingService\n                                                  \n                                                        \n                                                                        LoggingService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        errorDialogService\n                                                  \n                                                        \n                                                                        ErrorDialogService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n\n\n\n    \n    HostListeners    \n        \n            \n                \n                    \n                    \n                        \n                            window:cic_convert\n                        \n                        \n                    \n                \n            \n            \n                \n                    Arguments : '$event' \n                \n            \n            \n                \nwindow:cic_convert(event: CustomEvent)\n                \n            \n\n\n            \n                \n                    Defined in src/app/app.component.ts:74\n                \n            \n\n\n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            window:cic_transfer\n                        \n                        \n                    \n                \n            \n            \n                \n                    Arguments : '$event' \n                \n            \n            \n                \nwindow:cic_transfer(event: CustomEvent)\n                \n            \n\n\n            \n                \n                    Defined in src/app/app.component.ts:68\n                \n            \n\n\n        \n    \n\n    \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            onResize\n                        \n                        \n                    \n                \n            \n            \n                \nonResize(e)\n                \n            \n\n\n            \n                \n                    Defined in src/app/app.component.ts:43\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Optional\n                                \n                            \n                            \n                                \n                                    e\n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n    \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            mediaQuery\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     MediaQueryList\n\n                        \n                    \n                    \n                        \n                            Default value : window.matchMedia('(max-width: 768px)')\n                        \n                    \n                        \n                            \n                                    Defined in src/app/app.component.ts:15\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            readyState\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         number\n\n                        \n                    \n                    \n                        \n                            Default value : 0\n                        \n                    \n                        \n                            \n                                    Defined in src/app/app.component.ts:14\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            readyStateTarget\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         number\n\n                        \n                    \n                    \n                        \n                            Default value : 3\n                        \n                    \n                        \n                            \n                                    Defined in src/app/app.component.ts:13\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            title\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                    \n                        \n                            Default value : 'CICADA'\n                        \n                    \n                        \n                            \n                                    Defined in src/app/app.component.ts:12\n                            \n                        \n\n\n            \n        \n\n\n\n\n\n    \n        import {ChangeDetectionStrategy, Component, HostListener} from '@angular/core';\nimport {AuthService, ErrorDialogService, LoggingService, TransactionService} from '@app/_services';\nimport {catchError} from 'rxjs/operators';\n\n@Component({\n  selector: 'app-root',\n  templateUrl: './app.component.html',\n  styleUrls: ['./app.component.scss'],\n  changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class AppComponent {\n  title = 'CICADA';\n  readyStateTarget: number = 3;\n  readyState: number = 0;\n  mediaQuery: MediaQueryList = window.matchMedia('(max-width: 768px)');\n\n  constructor(\n    private authService: AuthService,\n    private transactionService: TransactionService,\n    private loggingService: LoggingService,\n    private errorDialogService: ErrorDialogService\n  ) {\n    (async () => {\n      try {\n        await this.authService.init();\n        // this.authService.getPublicKeys()\n        //   .pipe(catchError(async (error) => {\n        //     this.loggingService.sendErrorLevelMessage('Unable to load trusted public keys.', this, {error});\n        //     this.errorDialogService.openDialog({message: 'Trusted keys endpoint can\\'t be reached. Please try again later.'});\n        // })).subscribe(this.authService.mutableKeyStore.importPublicKey);\n        const publicKeys = await this.authService.getPublicKeys();\n        await this.authService.mutableKeyStore.importPublicKey(publicKeys);\n      } catch (error) {\n        this.errorDialogService.openDialog({message: 'Trusted keys endpoint can\\'t be reached. Please try again later.'});\n        // TODO do something to halt user progress...show a sad cicada page 🦗?\n      }\n    })();\n    this.mediaQuery.addListener(this.onResize);\n    this.onResize(this.mediaQuery);\n  }\n\n  // Load resize\n  onResize(e): void {\n    const sidebar: HTMLElement = document.getElementById('sidebar');\n    const content: HTMLElement = document.getElementById('content');\n    const sidebarCollapse: HTMLElement = document.getElementById('sidebarCollapse');\n    if (sidebarCollapse?.classList.contains('active')) {\n      sidebarCollapse?.classList.remove('active');\n    }\n    if (e.matches) {\n      if (!sidebar?.classList.contains('active')) {\n        sidebar?.classList.add('active');\n      }\n      if (!content?.classList.contains('active')) {\n        content?.classList.add('active');\n      }\n    } else {\n      if (sidebar?.classList.contains('active')) {\n        sidebar?.classList.remove('active');\n      }\n      if (content?.classList.contains('active')) {\n        content?.classList.remove('active');\n      }\n    }\n  }\n\n  @HostListener('window:cic_transfer', ['$event'])\n  async cicTransfer(event: CustomEvent): Promise {\n    const transaction: any = event.detail.tx;\n    await this.transactionService.setTransaction(transaction, 100);\n  }\n\n  @HostListener('window:cic_convert', ['$event'])\n  async cicConvert(event: CustomEvent): Promise {\n    const conversion: any = event.detail.tx;\n    await this.transactionService.setConversion(conversion, 100);\n  }\n}\n\n    \n\n    \n        \n\n    \n\n    \n                \n                    ./app.component.scss\n                \n                \n    \n\n    \n        \n        \n            \n                Legend\n            \n            \n                Html element\n            \n            \n                Component\n            \n            \n                Html element with directive\n            \n        \n    \n\n    \n\n\n\n\n\n\n        var COMPONENT_TEMPLATE = ''\n    var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n    var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[routerLink]'}];\n    var ACTUAL_COMPONENT = {'name': 'AppComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"modules/AppModule.html":{"url":"modules/AppModule.html","title":"module - AppModule","body":"\n                   \n\n\n\n\n    Modules\n    AppModule\n\n\n\n    \n        \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_AppModule\n\n\n\ncluster_AppModule_imports\n\n\n\ncluster_AppModule_providers\n\n\n\ncluster_AppModule_declarations\n\n\n\ncluster_AppModule_bootstrap\n\n\n\n\nAppComponent\n\nAppComponent\n\n\n\nAppModule\n\nAppModule\n\nAppModule -->\n\nAppComponent->AppModule\n\n\n\n\n\nAppComponent \n\nAppComponent \n\nAppComponent  -->\n\nAppModule->AppComponent \n\n\n\n\n\nAppRoutingModule\n\nAppRoutingModule\n\nAppModule -->\n\nAppRoutingModule->AppModule\n\n\n\n\n\nSharedModule\n\nSharedModule\n\nAppModule -->\n\nSharedModule->AppModule\n\n\n\n\n\nErrorInterceptor\n\nErrorInterceptor\n\nAppModule -->\n\nErrorInterceptor->AppModule\n\n\n\n\n\nGlobalErrorHandler\n\nGlobalErrorHandler\n\nAppModule -->\n\nGlobalErrorHandler->AppModule\n\n\n\n\n\nHttpConfigInterceptor\n\nHttpConfigInterceptor\n\nAppModule -->\n\nHttpConfigInterceptor->AppModule\n\n\n\n\n\nLoggingInterceptor\n\nLoggingInterceptor\n\nAppModule -->\n\nLoggingInterceptor->AppModule\n\n\n\n\n\n\n    \n    \n    \n        Zoom in\n        Reset\n        Zoom out\n    \n\n\n\n\n\n    \n        Info\n    \n    \n        Source\n    \n\n\n\n    \n\n        \n            File\n        \n        \n            src/app/app.module.ts\n        \n\n\n\n\n        \n            \n                \n                    Declarations\n                    \n                        \n                            AppComponent\n                        \n                    \n                \n                \n                    Providers\n                    \n                        \n                            ErrorInterceptor\n                        \n                        \n                            GlobalErrorHandler\n                        \n                        \n                            HttpConfigInterceptor\n                        \n                        \n                            LoggingInterceptor\n                        \n                    \n                \n                \n                    Imports\n                    \n                        \n                            AppRoutingModule\n                        \n                        \n                            SharedModule\n                        \n                    \n                \n                \n                    Bootstrap\n                    \n                        \n                            AppComponent\n                        \n                    \n                \n            \n        \n\n\n    \n\n\n    \n        import {BrowserModule} from '@angular/platform-browser';\nimport {ErrorHandler, NgModule} from '@angular/core';\n\nimport {AppRoutingModule} from '@app/app-routing.module';\nimport {AppComponent} from '@app/app.component';\nimport {BrowserAnimationsModule} from '@angular/platform-browser/animations';\nimport {HTTP_INTERCEPTORS, HttpClientModule} from '@angular/common/http';\nimport {\n  GlobalErrorHandler,\n  MockBackendProvider,\n} from '@app/_helpers';\nimport {DataTablesModule} from 'angular-datatables';\nimport {SharedModule} from '@app/shared/shared.module';\nimport {MatTableModule} from '@angular/material/table';\nimport {AuthGuard} from '@app/_guards';\nimport {LoggerModule} from 'ngx-logger';\nimport {environment} from '@src/environments/environment';\nimport {ErrorInterceptor, HttpConfigInterceptor, LoggingInterceptor} from '@app/_interceptors';\nimport {MutablePgpKeyStore} from '@app/_pgp';\n\n@NgModule({\n  declarations: [\n    AppComponent\n  ],\n  imports: [\n    BrowserModule,\n    AppRoutingModule,\n    BrowserAnimationsModule,\n    HttpClientModule,\n    DataTablesModule,\n    SharedModule,\n    MatTableModule,\n    LoggerModule.forRoot({\n      level: environment.logLevel,\n      serverLogLevel: environment.serverLogLevel,\n      serverLoggingUrl: `${environment.loggingUrl}/api/logs/`,\n      disableConsoleLogging: false\n    })\n  ],\n  providers: [\n    AuthGuard,\n    MutablePgpKeyStore,\n    MockBackendProvider,\n    GlobalErrorHandler,\n    { provide: ErrorHandler, useClass: GlobalErrorHandler },\n    { provide: HTTP_INTERCEPTORS, useClass: HttpConfigInterceptor, multi: true },\n    { provide: HTTP_INTERCEPTORS, useClass: ErrorInterceptor, multi: true },\n    { provide: HTTP_INTERCEPTORS, useClass: LoggingInterceptor, multi: true },\n  ],\n  bootstrap: [AppComponent]\n})\nexport class AppModule { }\n\n    \n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"modules/AppRoutingModule.html":{"url":"modules/AppRoutingModule.html","title":"module - AppRoutingModule","body":"\n                   \n\n\n\n\n    Modules\n    AppRoutingModule\n\n\n\n\n    \n        Info\n    \n    \n        Source\n    \n\n\n\n    \n\n        \n            File\n        \n        \n            src/app/app-routing.module.ts\n        \n\n\n\n\n        \n            \n            \n        \n\n\n    \n\n\n    \n        import { NgModule } from '@angular/core';\nimport {Routes, RouterModule, PreloadAllModules} from '@angular/router';\nimport {AuthGuard} from '@app/_guards';\n\nconst routes: Routes = [\n  { path: 'auth', loadChildren: () => \"import('@app/auth/auth.module').then(m => m.AuthModule)\" },\n  { path: '', loadChildren: () => \"import('@pages/pages.module').then(m => m.PagesModule)\", canActivate: [AuthGuard] },\n  { path: '**', redirectTo: '', pathMatch: 'full' }\n];\n\n@NgModule({\n  imports: [RouterModule.forRoot(routes, {\n    preloadingStrategy: PreloadAllModules\n  })],\n  exports: [RouterModule]\n})\nexport class AppRoutingModule { }\n\n    \n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"interfaces/AreaName.html":{"url":"interfaces/AreaName.html","title":"interface - AreaName","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n\n  Interfaces\n  AreaName\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_models/mappings.ts\n        \n\n\n\n        \n            Index\n            \n                \n                    \n                        \n                            Properties\n                        \n                    \n                    \n                        \n                            \n                                \n                                        locations\n                                \n                                \n                                        name\n                                \n                            \n                        \n                    \n                \n            \n        \n\n\n\n            \n                Properties\n                    \n                        \n                                \n                                    \n                                        \n                                        locations\n                                    \n                                \n                                \n                                    \n                                        locations:     Array\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :     Array\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        name\n                                    \n                                \n                                \n                                    \n                                        name:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n            \n    \n\n\n    \n        interface Action {\n  id: number;\n  user: string;\n  role: string;\n  action: string;\n  approval: boolean;\n}\n\ninterface Category {\n  name: string;\n  products: Array;\n}\n\ninterface AreaName {\n  name: string;\n  locations: Array;\n}\n\ninterface AreaType {\n  name: string;\n  area: Array;\n}\n\nexport {\n  Action,\n  Category,\n  AreaName,\n  AreaType\n};\n\n    \n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"interfaces/AreaType.html":{"url":"interfaces/AreaType.html","title":"interface - AreaType","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n\n  Interfaces\n  AreaType\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_models/mappings.ts\n        \n\n\n\n        \n            Index\n            \n                \n                    \n                        \n                            Properties\n                        \n                    \n                    \n                        \n                            \n                                \n                                        area\n                                \n                                \n                                        name\n                                \n                            \n                        \n                    \n                \n            \n        \n\n\n\n            \n                Properties\n                    \n                        \n                                \n                                    \n                                        \n                                        area\n                                    \n                                \n                                \n                                    \n                                        area:     Array\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :     Array\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        name\n                                    \n                                \n                                \n                                    \n                                        name:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n            \n    \n\n\n    \n        interface Action {\n  id: number;\n  user: string;\n  role: string;\n  action: string;\n  approval: boolean;\n}\n\ninterface Category {\n  name: string;\n  products: Array;\n}\n\ninterface AreaName {\n  name: string;\n  locations: Array;\n}\n\ninterface AreaType {\n  name: string;\n  area: Array;\n}\n\nexport {\n  Action,\n  Category,\n  AreaName,\n  AreaType\n};\n\n    \n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"components/AuthComponent.html":{"url":"components/AuthComponent.html","title":"component - AuthComponent","body":"\n                   \n\n\n\n\n\n  Components\n  AuthComponent\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n        \n            Template\n        \n        \n            Styles\n        \n        \n            DOM Tree\n        \n\n\n\n    \n    File\n\n\n    src/app/auth/auth.component.ts\n\n\n\n\n    \n        Implements\n    \n    \n                    OnInit\n    \n\n\n\n    Metadata\n    \n        \n\n            \n                changeDetection\n                ChangeDetectionStrategy.OnPush\n            \n\n\n\n\n\n\n\n\n\n\n            \n                selector\n                app-auth\n            \n\n            \n                styleUrls\n                ./auth.component.scss\n            \n\n\n\n            \n                templateUrl\n                ./auth.component.html\n            \n\n\n\n\n\n\n\n\n        \n    \n\n\n    \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                keyForm\n                            \n                            \n                                loading\n                            \n                            \n                                matcher\n                            \n                            \n                                submitted\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                login\n                            \n                            \n                                    Async\n                                ngOnInit\n                            \n                            \n                                    Async\n                                onSubmit\n                            \n                            \n                                switchWindows\n                            \n                            \n                                toggleDisplay\n                            \n                        \n                    \n                \n\n\n\n\n\n                    \n                        \n                            Accessors\n                        \n                    \n                    \n                        \n                            \n                                \n                                    keyFormStub\n                                \n                            \n                        \n                    \n        \n    \n\n\n    \n    Constructor\n        \n            \n                \n                    \nconstructor(authService: AuthService, formBuilder: FormBuilder, router: Router)\n                    \n                \n                        \n                            \n                                Defined in src/app/auth/auth.component.ts:17\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        authService\n                                                  \n                                                        \n                                                                        AuthService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        formBuilder\n                                                  \n                                                        \n                                                                        FormBuilder\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        router\n                                                  \n                                                        \n                                                                        Router\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n\n\n\n\n    \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            login\n                        \n                        \n                    \n                \n            \n            \n                \nlogin()\n                \n            \n\n\n            \n                \n                    Defined in src/app/auth/auth.component.ts:48\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            ngOnInit\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    ngOnInit()\n                \n            \n\n\n            \n                \n                    Defined in src/app/auth/auth.component.ts:25\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Promise\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            onSubmit\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    onSubmit()\n                \n            \n\n\n            \n                \n                    Defined in src/app/auth/auth.component.ts:38\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Promise\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            switchWindows\n                        \n                        \n                    \n                \n            \n            \n                \nswitchWindows()\n                \n            \n\n\n            \n                \n                    Defined in src/app/auth/auth.component.ts:59\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            toggleDisplay\n                        \n                        \n                    \n                \n            \n            \n                \ntoggleDisplay(element: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/auth/auth.component.ts:67\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    element\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n    \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            keyForm\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         FormGroup\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/auth/auth.component.ts:14\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            loading\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         boolean\n\n                        \n                    \n                    \n                        \n                            Default value : false\n                        \n                    \n                        \n                            \n                                    Defined in src/app/auth/auth.component.ts:16\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            matcher\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         CustomErrorStateMatcher\n\n                        \n                    \n                    \n                        \n                            Default value : new CustomErrorStateMatcher()\n                        \n                    \n                        \n                            \n                                    Defined in src/app/auth/auth.component.ts:17\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            submitted\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         boolean\n\n                        \n                    \n                    \n                        \n                            Default value : false\n                        \n                    \n                        \n                            \n                                    Defined in src/app/auth/auth.component.ts:15\n                            \n                        \n\n\n            \n        \n\n\n    \n    \n        Accessors\n    \n        \n            \n                \n                    \n                        \n                        keyFormStub\n                    \n                \n\n                \n                    \n                        getkeyFormStub()\n                    \n                \n                            \n                                \n                                    Defined in src/app/auth/auth.component.ts:36\n                                \n                            \n\n            \n        \n\n\n\n\n    \n        import {ChangeDetectionStrategy, Component, OnInit} from '@angular/core';\nimport {FormBuilder, FormGroup, Validators} from '@angular/forms';\nimport {CustomErrorStateMatcher} from '@app/_helpers';\nimport {AuthService} from '@app/_services';\nimport {Router} from '@angular/router';\n\n@Component({\n  selector: 'app-auth',\n  templateUrl: './auth.component.html',\n  styleUrls: ['./auth.component.scss'],\n  changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class AuthComponent implements OnInit {\n  keyForm: FormGroup;\n  submitted: boolean = false;\n  loading: boolean = false;\n  matcher: CustomErrorStateMatcher = new CustomErrorStateMatcher();\n\n  constructor(\n    private authService: AuthService,\n    private formBuilder: FormBuilder,\n    private router: Router\n  ) { }\n\n  async ngOnInit(): Promise {\n    this.keyForm = this.formBuilder.group({\n      key: ['', Validators.required],\n    });\n    await this.authService.init();\n    // if (this.authService.privateKey !== undefined) {\n    //   const setKey = await this.authService.setKey(this.authService.privateKey);\n    //   }\n    // }\n  }\n\n  get keyFormStub(): any { return this.keyForm.controls; }\n\n  async onSubmit(): Promise {\n    this.submitted = true;\n\n    if (this.keyForm.invalid) { return; }\n\n    this.loading = true;\n    await this.authService.setKey(this.keyFormStub.key.value);\n    this.loading = false;\n  }\n\n  login(): void {\n     // TODO check if we have privatekey\n     // Send us to home if we have a private key\n     // talk to meta somehow\n     // in the error interceptor if 401/403 handle it\n     // if 200 go /home\n    if (this.authService.getPrivateKey()) {\n      this.router.navigate(['/home']);\n    }\n  }\n\n  switchWindows(): void {\n    this.authService.sessionToken = undefined;\n    const divOne: HTMLElement = document.getElementById('one');\n    const divTwo: HTMLElement = document.getElementById('two');\n    this.toggleDisplay(divOne);\n    this.toggleDisplay(divTwo);\n  }\n\n  toggleDisplay(element: any): void {\n    const style: string = window.getComputedStyle(element).display;\n    if (style === 'block') {\n      element.style.display = 'none';\n    } else {\n      element.style.display = 'block';\n    }\n  }\n}\n\n    \n\n    \n        \n  \n    \n      \n        \n          \n            CICADA\n          \n        \n        \n\n          \n            Add Private Key\n          \n\n          \n\n            \n              Private Key\n              \n              \n                Private Key is required.\n              \n            \n\n            \n              \n              Add Key\n            \n\n          \n        \n        \n\n          \n            \n             Login \n          \n\n          \n            \n              Change private key? Enter private key\n             \n          \n          \n        \n      \n    \n  \n\n\n    \n\n    \n                \n                    ./auth.component.scss\n                \n                \n    \n\n    \n        \n        \n            \n                Legend\n            \n            \n                Html element\n            \n            \n                Component\n            \n            \n                Html element with directive\n            \n        \n    \n\n    \n\n\n\n\n\n\n        var COMPONENT_TEMPLATE = '                                          CICADA                                                Add Private Key                                              Private Key                                            Private Key is required.                                                                  Add Key                                                                         Login                                               Change private key? Enter private key                                                     '\n    var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n    var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[routerLink]'}];\n    var ACTUAL_COMPONENT = {'name': 'AuthComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"guards/AuthGuard.html":{"url":"guards/AuthGuard.html","title":"guard - AuthGuard","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n    Guards\n    AuthGuard\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n        \n            \n            File\n            \n            \n                src/app/_guards/auth.guard.ts\n            \n\n                \n                Description\n                \n                \n                    Auth guard implementation.\nDictates access to routes depending on the authentication status.\n\n                \n\n\n\n                \n                Example\n                \n                \n                \n\n                \n    Index\n    \n        \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                canActivate\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n                \n    Constructor\n        \n            \n                \n                    \nconstructor(router: Router)\n                    \n                \n                        \n                            \n                                Defined in src/app/_guards/auth.guard.ts:17\n                            \n                        \n\n                \n                    \n                            Instantiates the auth guard class.\n\n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                                    Description\n                                            \n                                        \n                                        \n                                                \n                                                        router\n                                                  \n                                                        \n                                                                        Router\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                        \n                                                                \nA service that provides navigation among views and URL manipulation capabilities.\n\n\n                                                        \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n                \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            canActivate\n                        \n                        \n                    \n                \n            \n            \n                \ncanActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_guards/auth.guard.ts:35\n                \n            \n\n\n            \n                \n                    Returns whether navigation to a specific route is acceptable.\nChecks if the user has uploaded a private key.\n\n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                    Description\n                                \n                            \n                            \n                                \n                                    route\n                                    \n                                                ActivatedRouteSnapshot\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                    \n                                        \nContains the information about a route associated with a component loaded in an outlet at a particular moment in time.\nActivatedRouteSnapshot can also be used to traverse the router state tree.\n\n\n                                    \n                                \n                                \n                                    state\n                                    \n                                                RouterStateSnapshot\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                    \n                                        \nRepresents the state of the router at a moment in time.\n\n\n                                    \n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Observable | Promise | boolean | UrlTree\n\n                    \n                    \n                        true - If there is an active private key in the user's localStorage.\n\n                    \n                \n            \n        \n    \n\n        \n\n\n        \n            import { Injectable } from '@angular/core';\nimport {ActivatedRouteSnapshot, CanActivate, Router, RouterStateSnapshot, UrlTree} from '@angular/router';\n\n// Third party imports\nimport { Observable } from 'rxjs';\n\n/**\n * Auth guard implementation.\n * Dictates access to routes depending on the authentication status.\n *\n * @implements CanActivate\n */\n@Injectable({\n  providedIn: 'root'\n})\nexport class AuthGuard implements CanActivate {\n\n  /**\n   * Instantiates the auth guard class.\n   *\n   * @param router - A service that provides navigation among views and URL manipulation capabilities.\n   */\n  constructor(private router: Router) {}\n\n  /**\n   * Returns whether navigation to a specific route is acceptable.\n   * Checks if the user has uploaded a private key.\n   *\n   * @param route - Contains the information about a route associated with a component loaded in an outlet at a particular moment in time.\n   * ActivatedRouteSnapshot can also be used to traverse the router state tree.\n   * @param state - Represents the state of the router at a moment in time.\n   * @returns true - If there is an active private key in the user's localStorage.\n   */\n  canActivate(\n    route: ActivatedRouteSnapshot,\n    state: RouterStateSnapshot): Observable | Promise | boolean | UrlTree {\n    if (localStorage.getItem(btoa('CICADA_PRIVATE_KEY'))) {\n      return true;\n    }\n    this.router.navigate(['/auth']);\n    return false;\n  }\n\n}\n\n        \n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"modules/AuthModule.html":{"url":"modules/AuthModule.html","title":"module - AuthModule","body":"\n                   \n\n\n\n\n    Modules\n    AuthModule\n\n\n\n    \n        \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_AuthModule\n\n\n\ncluster_AuthModule_imports\n\n\n\ncluster_AuthModule_declarations\n\n\n\n\nAuthComponent\n\nAuthComponent\n\n\n\nAuthModule\n\nAuthModule\n\nAuthModule -->\n\nAuthComponent->AuthModule\n\n\n\n\n\nPasswordToggleDirective\n\nPasswordToggleDirective\n\nAuthModule -->\n\nPasswordToggleDirective->AuthModule\n\n\n\n\n\nAuthRoutingModule\n\nAuthRoutingModule\n\nAuthModule -->\n\nAuthRoutingModule->AuthModule\n\n\n\n\n\n\n    \n    \n    \n        Zoom in\n        Reset\n        Zoom out\n    \n\n\n\n\n\n    \n        Info\n    \n    \n        Source\n    \n\n\n\n    \n\n        \n            File\n        \n        \n            src/app/auth/auth.module.ts\n        \n\n\n\n\n        \n            \n                \n                    Declarations\n                    \n                        \n                            AuthComponent\n                        \n                        \n                            PasswordToggleDirective\n                        \n                    \n                \n                \n                    Imports\n                    \n                        \n                            AuthRoutingModule\n                        \n                    \n                \n            \n        \n\n\n    \n\n\n    \n        import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { AuthRoutingModule } from '@app/auth/auth-routing.module';\nimport { AuthComponent } from '@app/auth/auth.component';\nimport {ReactiveFormsModule} from '@angular/forms';\nimport {PasswordToggleDirective} from '@app/auth/_directives/password-toggle.directive';\nimport {MatCardModule} from '@angular/material/card';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatRippleModule} from '@angular/material/core';\n\n\n@NgModule({\n  declarations: [AuthComponent, PasswordToggleDirective],\n  imports: [\n    CommonModule,\n    AuthRoutingModule,\n    ReactiveFormsModule,\n    MatCardModule,\n    MatSelectModule,\n    MatInputModule,\n    MatButtonModule,\n    MatRippleModule,\n  ]\n})\nexport class AuthModule { }\n\n    \n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"modules/AuthRoutingModule.html":{"url":"modules/AuthRoutingModule.html","title":"module - AuthRoutingModule","body":"\n                   \n\n\n\n\n    Modules\n    AuthRoutingModule\n\n\n\n\n    \n        Info\n    \n    \n        Source\n    \n\n\n\n    \n\n        \n            File\n        \n        \n            src/app/auth/auth-routing.module.ts\n        \n\n\n\n\n        \n            \n            \n        \n\n\n    \n\n\n    \n        import { NgModule } from '@angular/core';\nimport { Routes, RouterModule } from '@angular/router';\n\nimport { AuthComponent } from '@app/auth/auth.component';\n\nconst routes: Routes = [\n  { path: '', component: AuthComponent },\n  { path: '**', redirectTo: '', pathMatch: 'full'},\n];\n\n@NgModule({\n  imports: [RouterModule.forChild(routes)],\n  exports: [RouterModule]\n})\nexport class AuthRoutingModule { }\n\n    \n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"injectables/AuthService.html":{"url":"injectables/AuthService.html","title":"injectable - AuthService","body":"\n                   \n\n\n\n\n\n\n\n\n  Injectables\n  AuthService\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_services/auth.service.ts\n        \n\n\n\n\n            \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                mutableKeyStore\n                            \n                            \n                                sessionLoginCount\n                            \n                            \n                                sessionToken\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                getChallenge\n                            \n                            \n                                getPrivateKey\n                            \n                            \n                                    Async\n                                getPublicKeys\n                            \n                            \n                                getTrustedUsers\n                            \n                            \n                                getWithToken\n                            \n                            \n                                    Async\n                                init\n                            \n                            \n                                login\n                            \n                            \n                                    Async\n                                loginResponse\n                            \n                            \n                                loginView\n                            \n                            \n                                logout\n                            \n                            \n                                sendResponse\n                            \n                            \n                                    Async\n                                setKey\n                            \n                            \n                                setState\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n            \n    Constructor\n        \n            \n                \n                    \nconstructor(httpClient: HttpClient, loggingService: LoggingService, errorDialogService: ErrorDialogService)\n                    \n                \n                        \n                            \n                                Defined in src/app/_services/auth.service.ts:17\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        httpClient\n                                                  \n                                                        \n                                                                        HttpClient\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        loggingService\n                                                  \n                                                        \n                                                                        LoggingService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        errorDialogService\n                                                  \n                                                        \n                                                                        ErrorDialogService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getChallenge\n                        \n                        \n                    \n                \n            \n            \n                \ngetChallenge()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/auth.service.ts:84\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getPrivateKey\n                        \n                        \n                    \n                \n            \n            \n                \ngetPrivateKey()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/auth.service.ts:204\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         any\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            getPublicKeys\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    getPublicKeys()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/auth.service.ts:193\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Promise\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getTrustedUsers\n                        \n                        \n                    \n                \n            \n            \n                \ngetTrustedUsers()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/auth.service.ts:187\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         any\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getWithToken\n                        \n                        \n                    \n                \n            \n            \n                \ngetWithToken()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/auth.service.ts:42\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            init\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    init()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/auth.service.ts:27\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Promise\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            login\n                        \n                        \n                    \n                \n            \n            \n                \nlogin()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/auth.service.ts:99\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         boolean\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            loginResponse\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    loginResponse(o: literal type)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/auth.service.ts:118\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    o\n                                    \n                                            literal type\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            loginView\n                        \n                        \n                    \n                \n            \n            \n                \nloginView()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/auth.service.ts:147\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            logout\n                        \n                        \n                    \n                \n            \n            \n                \nlogout()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/auth.service.ts:181\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            sendResponse\n                        \n                        \n                    \n                \n            \n            \n                \nsendResponse(hobaResponseEncoded: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/auth.service.ts:61\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    hobaResponseEncoded\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            setKey\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    setKey(privateKeyArmored)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/auth.service.ts:157\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Optional\n                                \n                            \n                            \n                                \n                                    privateKeyArmored\n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            setState\n                        \n                        \n                    \n                \n            \n            \n                \nsetState(s)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/auth.service.ts:38\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Optional\n                                \n                            \n                            \n                                \n                                    s\n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n            \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            mutableKeyStore\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         MutableKeyStore\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_services/auth.service.ts:17\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            sessionLoginCount\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         number\n\n                        \n                    \n                    \n                        \n                            Default value : 0\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_services/auth.service.ts:16\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            sessionToken\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         any\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_services/auth.service.ts:15\n                            \n                        \n\n\n            \n        \n\n\n    \n\n\n    \n        import {Injectable} from '@angular/core';\nimport {hobaParseChallengeHeader} from '@src/assets/js/hoba.js';\nimport {signChallenge} from '@src/assets/js/hoba-pgp.js';\nimport {environment} from '@src/environments/environment';\nimport {LoggingService} from '@app/_services/logging.service';\nimport {MutableKeyStore, MutablePgpKeyStore} from '@app/_pgp';\nimport {ErrorDialogService} from '@app/_services/error-dialog.service';\nimport {HttpClient} from '@angular/common/http';\nimport {HttpError} from '@app/_helpers/global-error-handler';\n\n@Injectable({\n  providedIn: 'root'\n})\nexport class AuthService {\n  sessionToken: any;\n  sessionLoginCount: number = 0;\n  mutableKeyStore: MutableKeyStore;\n\n  constructor(\n    private httpClient: HttpClient,\n    private loggingService: LoggingService,\n    private errorDialogService: ErrorDialogService\n  ) {\n    this.mutableKeyStore = new MutablePgpKeyStore();\n  }\n\n  async init(): Promise {\n    await this.mutableKeyStore.loadKeyring();\n    // TODO setting these together should be atomic\n    if (sessionStorage.getItem(btoa('CICADA_SESSION_TOKEN'))) {\n      this.sessionToken = sessionStorage.getItem(btoa('CICADA_SESSION_TOKEN'));\n    }\n    if (localStorage.getItem(btoa('CICADA_PRIVATE_KEY'))) {\n      await this.mutableKeyStore.importPrivateKey(localStorage.getItem(btoa('CICADA_PRIVATE_KEY')));\n    }\n  }\n\n  setState(s): void {\n    document.getElementById('state').innerHTML = s;\n  }\n\n  getWithToken(): void {\n    const xhr: XMLHttpRequest = new XMLHttpRequest();\n    xhr.responseType = 'text';\n    xhr.open('GET', environment.cicMetaUrl + window.location.search.substring(1));\n    xhr.setRequestHeader('Authorization', 'Bearer ' + this.sessionToken);\n    xhr.setRequestHeader('Content-Type', 'application/json');\n    xhr.setRequestHeader('x-cic-automerge', 'none');\n    xhr.addEventListener('load', (e) => {\n      if (xhr.status === 401) {\n        throw new Error('login rejected');\n      }\n      this.sessionLoginCount++;\n      this.setState('Click button to log in');\n      return;\n    });\n    xhr.send();\n  }\n\n  // TODO rename to send signed challenge and set session. Also separate these responsibilities\n  sendResponse(hobaResponseEncoded: any): Promise {\n    return new Promise((resolve, reject) => {\n      const xhr: XMLHttpRequest = new XMLHttpRequest();\n      xhr.responseType = 'text';\n      xhr.open('GET', environment.cicMetaUrl + window.location.search.substring(1));\n      xhr.setRequestHeader('Authorization', 'HOBA ' + hobaResponseEncoded);\n      xhr.setRequestHeader('Content-Type', 'application/json');\n      xhr.setRequestHeader('x-cic-automerge', 'none');\n      xhr.addEventListener('load', (e) => {\n        if (xhr.status !== 200) {\n            const error = new HttpError(xhr.statusText, xhr.status);\n            return reject(error);\n        }\n        this.sessionToken = xhr.getResponseHeader('Token');\n        sessionStorage.setItem(btoa('CICADA_SESSION_TOKEN'), this.sessionToken);\n        this.sessionLoginCount++;\n        this.setState('Click button to log in');\n        return resolve(true);\n      });\n      xhr.send();\n    });\n  }\n\n  getChallenge(): void {\n    const xhr: XMLHttpRequest = new XMLHttpRequest();\n    xhr.responseType = 'arraybuffer';\n    xhr.open('GET', environment.cicMetaUrl + window.location.search.substring(1));\n    xhr.onload = async (e) => {\n      if (xhr.status === 401) {\n        const authHeader = xhr.getResponseHeader('WWW-Authenticate');\n        const o = hobaParseChallengeHeader(authHeader);\n        this.loginResponse(o);\n      }\n    };\n    xhr.send();\n  }\n\n\n  login(): boolean {\n    if (this.sessionToken !== undefined) {\n      try {\n        this.getWithToken();\n        return true;\n      } catch (e) {\n        this.loggingService.sendErrorLevelMessage('Login token failed', this, {error: e});\n      }\n    } else {\n      try {\n        this.getChallenge();\n      } catch (e) {\n        this.loggingService.sendErrorLevelMessage('Login challenge failed', this, {error: e});\n      }\n    }\n    return false;\n  }\n\n\n  async loginResponse(o: { challenge: string, realm: any }): Promise {\n    return new Promise(async (resolve, reject) => {\n      try {\n        const r = await signChallenge(o.challenge,\n                                      o.realm,\n                                      environment.cicMetaUrl,\n                                      this.mutableKeyStore);\n        const sessionTokenResult: boolean = await this.sendResponse(r);\n      } catch (error) {\n        if (error instanceof HttpError) {\n          if (error.status === 403) {\n            this.errorDialogService.openDialog({ message: 'You are not authorized to use this system' });\n          }\n          if (error.status === 401) {\n            this.errorDialogService.openDialog({\n              message: 'Unable to authenticate with the service. ' +\n                'Please speak with the staff at Grassroots ' +\n                'Economics for requesting access ' +\n                'staff@grassrootseconomics.net.'\n            });\n          }\n        }\n        // TODO define this error\n        this.errorDialogService.openDialog({message: 'Incorrect key passphrase.'});\n        resolve(false);\n      }\n    });\n  }\n\n  loginView(): void {\n    document.getElementById('one').style.display = 'none';\n    document.getElementById('two').style.display = 'block';\n    this.setState('Click button to log in with PGP key ' + this.mutableKeyStore.getPrivateKeyId());\n  }\n\n  /**\n   * @throws\n   * @param privateKeyArmored\n   */\n  async setKey(privateKeyArmored): Promise {\n    try {\n      const isValidKeyCheck = await this.mutableKeyStore.isValidKey(privateKeyArmored);\n      if (!isValidKeyCheck) {\n        throw Error('The private key is invalid');\n      }\n      // TODO leaving this out for now.\n      // const isEncryptedKeyCheck = await this.mutableKeyStore.isEncryptedPrivateKey(privateKeyArmored);\n      // if (!isEncryptedKeyCheck) {\n      //   throw Error('The private key doesn\\'t have a password!');\n      // }\n      const key = await this.mutableKeyStore.importPrivateKey(privateKeyArmored);\n      localStorage.setItem(btoa('CICADA_PRIVATE_KEY'), privateKeyArmored);\n    } catch (err) {\n      this.loggingService.sendErrorLevelMessage(`Failed to set key: ${err.message || err.statusText}`, this, {error: err});\n      this.errorDialogService.openDialog({\n        message: `Failed to set key: ${err.message || err.statusText}`,\n      });\n      return false;\n    }\n    this.loginView();\n    return true;\n  }\n\n  logout(): void {\n    sessionStorage.removeItem(btoa('CICADA_SESSION_TOKEN'));\n    this.sessionToken = undefined;\n    window.location.reload(true);\n  }\n\n  getTrustedUsers(): any {\n    const trustedUsers: Array = [];\n    this.mutableKeyStore.getPublicKeys().forEach(key => trustedUsers.push(key.users[0].userId));\n    return trustedUsers;\n  }\n\n  async getPublicKeys(): Promise {\n    return await fetch(environment.publicKeysUrl)\n      .then(res => {\n        if (!res.ok) {\n          // TODO does angular recommend an error interface?\n          throw Error(`${res.statusText} - ${res.status}`);\n        }\n        return res.text();\n      });\n  }\n\n  getPrivateKey(): any {\n      return this.mutableKeyStore.getPrivateKey();\n  }\n}\n\n    \n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"injectables/BlockSyncService.html":{"url":"injectables/BlockSyncService.html","title":"injectable - BlockSyncService","body":"\n                   \n\n\n\n\n\n\n\n\n  Injectables\n  BlockSyncService\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_services/block-sync.service.ts\n        \n\n\n\n\n            \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                readyState\n                            \n                            \n                                readyStateTarget\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                blockSync\n                            \n                            \n                                fetcher\n                            \n                            \n                                newConversionEvent\n                            \n                            \n                                newTransferEvent\n                            \n                            \n                                readyStateProcessor\n                            \n                            \n                                    Async\n                                scan\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n            \n    Constructor\n        \n            \n                \n                    \nconstructor(transactionService: TransactionService, loggingService: LoggingService, registryService: RegistryService)\n                    \n                \n                        \n                            \n                                Defined in src/app/_services/block-sync.service.ts:15\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        transactionService\n                                                  \n                                                        \n                                                                        TransactionService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        loggingService\n                                                  \n                                                        \n                                                                        LoggingService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        registryService\n                                                  \n                                                        \n                                                                        RegistryService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            blockSync\n                        \n                        \n                    \n                \n            \n            \n                \nblockSync(address: string, offset: number, limit: number)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/block-sync.service.ts:23\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                    Default value\n                                \n                            \n                            \n                                \n                                    address\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n                                    \n                                        null\n                                    \n\n                                \n                                \n                                    offset\n                                    \n                                                number\n                                    \n\n                                    \n                                        No\n                                    \n\n                                    \n                                        0\n                                    \n\n                                \n                                \n                                    limit\n                                    \n                                                number\n                                    \n\n                                    \n                                        No\n                                    \n\n                                    \n                                        100\n                                    \n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            fetcher\n                        \n                        \n                    \n                \n            \n            \n                \nfetcher(settings: Settings, transactionsInfo: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/block-sync.service.ts:101\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    settings\n                                    \n                                                Settings\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    transactionsInfo\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            newConversionEvent\n                        \n                        \n                    \n                \n            \n            \n                \nnewConversionEvent(tx: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/block-sync.service.ts:76\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    tx\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         any\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            newTransferEvent\n                        \n                        \n                    \n                \n            \n            \n                \nnewTransferEvent(tx: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/block-sync.service.ts:68\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    tx\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         any\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            readyStateProcessor\n                        \n                        \n                    \n                \n            \n            \n                \nreadyStateProcessor(settings: Settings, bit: number, address: string, offset: number, limit: number)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/block-sync.service.ts:46\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    settings\n                                    \n                                                Settings\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    bit\n                                    \n                                                number\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    address\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    offset\n                                    \n                                                number\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    limit\n                                    \n                                                number\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            scan\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    scan(settings: Settings, lo: number, hi: number, bloomBlockBytes: Uint8Array, bloomBlocktxBytes: Uint8Array, bloomRounds: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/block-sync.service.ts:84\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    settings\n                                    \n                                                Settings\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    lo\n                                    \n                                                number\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    hi\n                                    \n                                                number\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    bloomBlockBytes\n                                    \n                                            Uint8Array\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    bloomBlocktxBytes\n                                    \n                                            Uint8Array\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    bloomRounds\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n            \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            readyState\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         number\n\n                        \n                    \n                    \n                        \n                            Default value : 0\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_services/block-sync.service.ts:15\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            readyStateTarget\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         number\n\n                        \n                    \n                    \n                        \n                            Default value : 2\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_services/block-sync.service.ts:14\n                            \n                        \n\n\n            \n        \n\n\n    \n\n\n    \n        import {Injectable} from '@angular/core';\nimport {Settings} from '@app/_models';\nimport {TransactionHelper} from 'cic-client';\nimport {first} from 'rxjs/operators';\nimport {TransactionService} from '@app/_services/transaction.service';\nimport {environment} from '@src/environments/environment';\nimport {LoggingService} from '@app/_services/logging.service';\nimport {RegistryService} from '@app/_services/registry.service';\n\n@Injectable({\n  providedIn: 'root'\n})\nexport class BlockSyncService {\n  readyStateTarget: number = 2;\n  readyState: number = 0;\n\n  constructor(\n    private transactionService: TransactionService,\n    private loggingService: LoggingService,\n    private registryService: RegistryService,\n  ) { }\n\n  blockSync(address: string = null, offset: number = 0, limit: number = 100): void {\n    this.transactionService.resetTransactionsList();\n    const settings: Settings = new Settings(this.scan);\n    const readyStateElements: { network: number } = { network: 2 };\n    settings.w3.provider = environment.web3Provider;\n    settings.w3.engine = this.registryService.getWeb3();\n    settings.registry = this.registryService.getRegistry();\n    settings.txHelper = new TransactionHelper(settings.w3.engine, settings.registry);\n\n    settings.txHelper.ontransfer = async (transaction: any): Promise => {\n      window.dispatchEvent(this.newTransferEvent(transaction));\n    };\n    settings.txHelper.onconversion = async (transaction: any): Promise => {\n      window.dispatchEvent(this.newConversionEvent(transaction));\n    };\n    settings.registry.onload = (addressReturned: number): void => {\n      this.loggingService.sendInfoLevelMessage(`Loaded network contracts ${addressReturned}`);\n      this.readyStateProcessor(settings, readyStateElements.network, address, offset, limit);\n    };\n\n    settings.registry.load();\n  }\n\n  readyStateProcessor(settings: Settings, bit: number, address: string, offset: number, limit: number): void {\n    this.readyState |= bit;\n    if (this.readyStateTarget === this.readyState && this.readyStateTarget) {\n      const wHeadSync: Worker = new Worker('./../assets/js/block-sync/head.js');\n      wHeadSync.onmessage = (m) => {\n        settings.txHelper.processReceipt(m.data);\n      };\n      wHeadSync.postMessage({\n        w3_provider: settings.w3.provider,\n      });\n      if (address === null) {\n        this.transactionService.getAllTransactions(offset, limit).pipe(first()).subscribe(res => {\n          this.fetcher(settings, res);\n        });\n      } else {\n        this.transactionService.getAddressTransactions(address, offset, limit).pipe(first()).subscribe(res => {\n          this.fetcher(settings, res);\n        });\n      }\n    }\n  }\n\n  newTransferEvent(tx: any): any {\n    return new CustomEvent('cic_transfer', {\n      detail: {\n        tx,\n      },\n    });\n  }\n\n  newConversionEvent(tx: any): any {\n    return new CustomEvent('cic_convert', {\n      detail: {\n        tx,\n      },\n    });\n  }\n\n  async scan(settings: Settings, lo: number, hi: number, bloomBlockBytes: Uint8Array, bloomBlocktxBytes: Uint8Array, bloomRounds: any): Promise {\n    const w: Worker = new Worker('./../assets/js/block-sync/ondemand.js');\n    w.onmessage = (m) => {\n      settings.txHelper.processReceipt(m.data);\n    };\n    w.postMessage({\n      w3_provider: settings.w3.provider,\n      lo,\n      hi,\n      filters: [\n        bloomBlockBytes,\n        bloomBlocktxBytes,\n      ],\n      filter_rounds: bloomRounds,\n    });\n  }\n\n  fetcher(settings: Settings, transactionsInfo: any): void {\n    const blockFilterBinstr: string = window.atob(transactionsInfo.block_filter);\n    const bOne: Uint8Array = new Uint8Array(blockFilterBinstr.length);\n    bOne.map((e, i, v) => v[i] = blockFilterBinstr.charCodeAt(i));\n\n    const blocktxFilterBinstr: string = window.atob(transactionsInfo.blocktx_filter);\n    const bTwo: Uint8Array = new Uint8Array(blocktxFilterBinstr.length);\n    bTwo.map((e, i, v) => v[i] = blocktxFilterBinstr.charCodeAt(i));\n\n    settings.scanFilter(settings, transactionsInfo.low, transactionsInfo.high, bOne, bTwo, transactionsInfo.filter_rounds);\n  }\n}\n\n    \n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"classes/BlocksBloom.html":{"url":"classes/BlocksBloom.html","title":"class - BlocksBloom","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n  Classes\n  BlocksBloom\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_models/transaction.ts\n        \n\n\n\n\n\n            \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                alg\n                            \n                            \n                                blockFilter\n                            \n                            \n                                blocktxFilter\n                            \n                            \n                                filterRounds\n                            \n                            \n                                low\n                            \n                        \n                    \n                \n\n\n\n\n\n\n        \n    \n\n\n\n            \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            alg\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:7\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            blockFilter\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:5\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            blocktxFilter\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:6\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            filterRounds\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         number\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:8\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            low\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         number\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:4\n                            \n                        \n\n\n            \n        \n\n\n\n\n\n\n\n\n    \n\n\n    \n        import {AccountDetails} from '@app/_models/account';\n\nclass BlocksBloom {\n  low: number;\n  blockFilter: string;\n  blocktxFilter: string;\n  alg: string;\n  filterRounds: number;\n}\n\nclass TxToken {\n  address: string;\n  name: string;\n  symbol: string;\n}\n\nclass Tx {\n  block: number;\n  success: boolean;\n  timestamp: number;\n  txHash: string;\n  txIndex: number;\n}\n\nclass Transaction {\n  from: string;\n  sender: AccountDetails;\n  to: string;\n  recipient: AccountDetails;\n  token: TxToken;\n  tx: Tx;\n  value: number;\n  type?: string;\n}\n\nclass Conversion {\n  destinationToken: TxToken;\n  fromValue: number;\n  sourceToken: TxToken;\n  toValue: number;\n  trader: string;\n  user: AccountDetails;\n  tx: Tx;\n}\n\nexport {\n  BlocksBloom,\n  TxToken,\n  Tx,\n  Transaction,\n  Conversion\n};\n\n    \n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"interfaces/Category.html":{"url":"interfaces/Category.html","title":"interface - Category","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n\n  Interfaces\n  Category\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_models/mappings.ts\n        \n\n\n\n        \n            Index\n            \n                \n                    \n                        \n                            Properties\n                        \n                    \n                    \n                        \n                            \n                                \n                                        name\n                                \n                                \n                                        products\n                                \n                            \n                        \n                    \n                \n            \n        \n\n\n\n            \n                Properties\n                    \n                        \n                                \n                                    \n                                        \n                                        name\n                                    \n                                \n                                \n                                    \n                                        name:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        products\n                                    \n                                \n                                \n                                    \n                                        products:     Array\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :     Array\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n            \n    \n\n\n    \n        interface Action {\n  id: number;\n  user: string;\n  role: string;\n  action: string;\n  approval: boolean;\n}\n\ninterface Category {\n  name: string;\n  products: Array;\n}\n\ninterface AreaName {\n  name: string;\n  locations: Array;\n}\n\ninterface AreaType {\n  name: string;\n  area: Array;\n}\n\nexport {\n  Action,\n  Category,\n  AreaName,\n  AreaType\n};\n\n    \n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"classes/Conversion.html":{"url":"classes/Conversion.html","title":"class - Conversion","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n  Classes\n  Conversion\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_models/transaction.ts\n        \n\n\n\n\n\n            \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                destinationToken\n                            \n                            \n                                fromValue\n                            \n                            \n                                sourceToken\n                            \n                            \n                                toValue\n                            \n                            \n                                trader\n                            \n                            \n                                tx\n                            \n                            \n                                user\n                            \n                        \n                    \n                \n\n\n\n\n\n\n        \n    \n\n\n\n            \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            destinationToken\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         TxToken\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:37\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            fromValue\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         number\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:38\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            sourceToken\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         TxToken\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:39\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            toValue\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         number\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:40\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            trader\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:41\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            tx\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         Tx\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:43\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            user\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         AccountDetails\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:42\n                            \n                        \n\n\n            \n        \n\n\n\n\n\n\n\n\n    \n\n\n    \n        import {AccountDetails} from '@app/_models/account';\n\nclass BlocksBloom {\n  low: number;\n  blockFilter: string;\n  blocktxFilter: string;\n  alg: string;\n  filterRounds: number;\n}\n\nclass TxToken {\n  address: string;\n  name: string;\n  symbol: string;\n}\n\nclass Tx {\n  block: number;\n  success: boolean;\n  timestamp: number;\n  txHash: string;\n  txIndex: number;\n}\n\nclass Transaction {\n  from: string;\n  sender: AccountDetails;\n  to: string;\n  recipient: AccountDetails;\n  token: TxToken;\n  tx: Tx;\n  value: number;\n  type?: string;\n}\n\nclass Conversion {\n  destinationToken: TxToken;\n  fromValue: number;\n  sourceToken: TxToken;\n  toValue: number;\n  trader: string;\n  user: AccountDetails;\n  tx: Tx;\n}\n\nexport {\n  BlocksBloom,\n  TxToken,\n  Tx,\n  Transaction,\n  Conversion\n};\n\n    \n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"components/CreateAccountComponent.html":{"url":"components/CreateAccountComponent.html","title":"component - CreateAccountComponent","body":"\n                   \n\n\n\n\n\n  Components\n  CreateAccountComponent\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n        \n            Template\n        \n        \n            Styles\n        \n        \n            DOM Tree\n        \n\n\n\n    \n    File\n\n\n    src/app/pages/accounts/create-account/create-account.component.ts\n\n\n\n\n    \n        Implements\n    \n    \n                    OnInit\n    \n\n\n\n    Metadata\n    \n        \n\n            \n                changeDetection\n                ChangeDetectionStrategy.OnPush\n            \n\n\n\n\n\n\n\n\n\n\n            \n                selector\n                app-create-account\n            \n\n            \n                styleUrls\n                ./create-account.component.scss\n            \n\n\n\n            \n                templateUrl\n                ./create-account.component.html\n            \n\n\n\n\n\n\n\n\n        \n    \n\n\n    \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                accountTypes\n                            \n                            \n                                areaNames\n                            \n                            \n                                categories\n                            \n                            \n                                createForm\n                            \n                            \n                                genders\n                            \n                            \n                                matcher\n                            \n                            \n                                submitted\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                ngOnInit\n                            \n                            \n                                onSubmit\n                            \n                        \n                    \n                \n\n\n\n\n\n                    \n                        \n                            Accessors\n                        \n                    \n                    \n                        \n                            \n                                \n                                    createFormStub\n                                \n                            \n                        \n                    \n        \n    \n\n\n    \n    Constructor\n        \n            \n                \n                    \nconstructor(formBuilder: FormBuilder, locationService: LocationService, userService: UserService)\n                    \n                \n                        \n                            \n                                Defined in src/app/pages/accounts/create-account/create-account.component.ts:21\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        formBuilder\n                                                  \n                                                        \n                                                                        FormBuilder\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        locationService\n                                                  \n                                                        \n                                                                        LocationService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        userService\n                                                  \n                                                        \n                                                                        UserService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n\n\n\n\n    \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            ngOnInit\n                        \n                        \n                    \n                \n            \n            \n                \nngOnInit()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/accounts/create-account/create-account.component.ts:29\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            onSubmit\n                        \n                        \n                    \n                \n            \n            \n                \nonSubmit()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/accounts/create-account/create-account.component.ts:50\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n\n    \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            accountTypes\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     Array\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/create-account/create-account.component.ts:20\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            areaNames\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         Array\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/create-account/create-account.component.ts:19\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            categories\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         Array\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/create-account/create-account.component.ts:18\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            createForm\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         FormGroup\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/create-account/create-account.component.ts:15\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            genders\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     Array\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/create-account/create-account.component.ts:21\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            matcher\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         CustomErrorStateMatcher\n\n                        \n                    \n                    \n                        \n                            Default value : new CustomErrorStateMatcher()\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/create-account/create-account.component.ts:16\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            submitted\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         boolean\n\n                        \n                    \n                    \n                        \n                            Default value : false\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/accounts/create-account/create-account.component.ts:17\n                            \n                        \n\n\n            \n        \n\n\n    \n    \n        Accessors\n    \n        \n            \n                \n                    \n                        \n                        createFormStub\n                    \n                \n\n                \n                    \n                        getcreateFormStub()\n                    \n                \n                            \n                                \n                                    Defined in src/app/pages/accounts/create-account/create-account.component.ts:48\n                                \n                            \n\n            \n        \n\n\n\n\n    \n        import {ChangeDetectionStrategy, Component, OnInit} from '@angular/core';\nimport {FormBuilder, FormGroup, Validators} from '@angular/forms';\nimport {LocationService, UserService} from '@app/_services';\nimport {CustomErrorStateMatcher} from '@app/_helpers';\nimport {first} from 'rxjs/operators';\nimport {AreaName, Category} from '@app/_models';\n\n@Component({\n  selector: 'app-create-account',\n  templateUrl: './create-account.component.html',\n  styleUrls: ['./create-account.component.scss'],\n  changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class CreateAccountComponent implements OnInit {\n  createForm: FormGroup;\n  matcher: CustomErrorStateMatcher = new CustomErrorStateMatcher();\n  submitted: boolean = false;\n  categories: Array;\n  areaNames: Array;\n  accountTypes: Array;\n  genders: Array;\n\n  constructor(\n    private formBuilder: FormBuilder,\n    private locationService: LocationService,\n    private userService: UserService\n  ) { }\n\n  ngOnInit(): void {\n    this.createForm = this.formBuilder.group({\n      accountType: ['', Validators.required],\n      idNumber: ['', Validators.required],\n      phoneNumber: ['', Validators.required],\n      givenName: ['', Validators.required],\n      surname: ['', Validators.required],\n      directoryEntry: ['', Validators.required],\n      location: ['', Validators.required],\n      gender: ['', Validators.required],\n      referrer: ['', Validators.required],\n      businessCategory: ['', Validators.required]\n    });\n    this.userService.getCategories().pipe(first()).subscribe(res => this.categories = res);\n    this.locationService.getAreaNames().pipe(first()).subscribe(res => this.areaNames = res);\n    this.userService.getAccountTypes().pipe(first()).subscribe(res => this.accountTypes = res);\n    this.userService.getGenders().pipe(first()).subscribe(res => this.genders = res);\n  }\n\n  get createFormStub(): any { return this.createForm.controls; }\n\n  onSubmit(): void {\n    this.submitted = true;\n    if (this.createForm.invalid || !confirm('Create account?')) { return; }\n    this.submitted = false;\n  }\n}\n\n    \n\n    \n        \n\n  \n\n  \n  \n  \n\n  \n    \n    \n    \n      \n        \n          Home\n          Accounts\n          Create Account\n        \n      \n      \n        \n          CREATE A USER ACCOUNT\n        \n        \n          \n            \n              \n                Account Type: \n                \n                  \n                    {{accountType | uppercase}}\n                  \n                \n                Account type is required.\n              \n            \n\n            \n              \n                ID Number: \n                \n                ID Number is required.\n              \n            \n\n            \n              \n                Phone Number: \n                \n                Phone Number is required.\n              \n            \n\n            \n              \n                Given Name(s):* \n                \n                Given Names are required.\n              \n            \n\n            \n              \n                Family/Surname: \n                \n                Surname is required.\n              \n            \n\n            \n              \n                Directory Entry: \n                \n                Directory Entry is required.\n              \n            \n\n            \n              \n                Location: \n                \n                  \n                    {{area | uppercase}}\n                  \n                \n                Location is required.\n              \n            \n\n            \n              \n                Gender: \n                \n                  \n                    {{gender | uppercase}}\n                  \n                \n                Gender is required.\n              \n            \n\n            \n              \n                Referrer Phone Number: \n                \n                Referrer is required.\n              \n            \n\n            \n              \n                Business Category: \n                \n                  \n                    {{category | titlecase}}\n                  \n                \n                Business Category is required.\n              \n            \n\n            Submit\n          \n        \n      \n    \n    \n  \n  \n  \n  \n\n\n    \n\n    \n                \n                    ./create-account.component.scss\n                \n                \n    \n\n    \n        \n        \n            \n                Legend\n            \n            \n                Html element\n            \n            \n                Component\n            \n            \n                Html element with directive\n            \n        \n    \n\n    \n\n\n\n\n\n\n        var COMPONENT_TEMPLATE = '                                              Home          Accounts          Create Account                                      CREATE A USER ACCOUNT                                                                    Account Type:                                                       {{accountType | uppercase}}                                                  Account type is required.                                                                    ID Number:                                 ID Number is required.                                                                    Phone Number:                                 Phone Number is required.                                                                    Given Name(s):*                                 Given Names are required.                                                                    Family/Surname:                                 Surname is required.                                                                    Directory Entry:                                 Directory Entry is required.                                                                    Location:                                                       {{area | uppercase}}                                                  Location is required.                                                                    Gender:                                                       {{gender | uppercase}}                                                  Gender is required.                                                                    Referrer Phone Number:                                 Referrer is required.                                                                    Business Category:                                                       {{category | titlecase}}                                                  Business Category is required.                                      Submit                                        '\n    var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n    var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[routerLink]'}];\n    var ACTUAL_COMPONENT = {'name': 'CreateAccountComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"classes/CustomErrorStateMatcher.html":{"url":"classes/CustomErrorStateMatcher.html","title":"class - CustomErrorStateMatcher","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n  Classes\n  CustomErrorStateMatcher\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_helpers/custom-error-state-matcher.ts\n        \n\n            \n                Description\n            \n            \n                Custom provider that defines how form controls behave with regards to displaying error messages.\n\n            \n\n\n            \n                Implements\n            \n            \n                        ErrorStateMatcher\n            \n\n            \n                Example\n            \n            \n            \n\n            \n    Index\n    \n        \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                isErrorState\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            isErrorState\n                        \n                        \n                    \n                \n            \n            \n                \nisErrorState(control: FormControl | null, form: FormGroupDirective | NgForm | null)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_helpers/custom-error-state-matcher.ts:18\n                \n            \n\n\n            \n                \n                    Checks whether an invalid input has been made and an error should be made.\n\n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                    Description\n                                \n                            \n                            \n                                \n                                    control\n                                    \n                                            FormControl | null\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                    \n                                        \nTracks the value and validation status of an individual form control.\n\n\n                                    \n                                \n                                \n                                    form\n                                    \n                                            FormGroupDirective | NgForm | null\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                    \n                                        \nBinding of an existing FormGroup to a DOM element.\n\n\n                                    \n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         boolean\n\n                    \n                    \n                        true - If an invalid input has been made to the form control.\n\n                    \n                \n            \n        \n    \n\n\n\n\n\n\n    \n\n\n    \n        import {FormControl, FormGroupDirective, NgForm} from '@angular/forms';\nimport {ErrorStateMatcher} from '@angular/material/core';\n\n/**\n * Custom provider that defines how form controls behave with regards to displaying error messages.\n *\n * @implements ErrorStateMatcher\n */\nexport class CustomErrorStateMatcher implements ErrorStateMatcher{\n  /**\n   * Checks whether an invalid input has been made and an error should be made.\n   *\n   * @param control - Tracks the value and validation status of an individual form control.\n   * @param form - Binding of an existing FormGroup to a DOM element.\n   * @returns true - If an invalid input has been made to the form control.\n   */\n  isErrorState(control: FormControl | null, form: FormGroupDirective | NgForm | null): boolean {\n    const isSubmitted: boolean = form && form.submitted;\n    return !!(control && control.invalid && (control.dirty || control.touched || isSubmitted));\n  }\n}\n\n    \n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"classes/CustomValidator.html":{"url":"classes/CustomValidator.html","title":"class - CustomValidator","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n  Classes\n  CustomValidator\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_helpers/custom.validator.ts\n        \n\n            \n                Description\n            \n            \n                Provides methods to perform custom validation to form inputs.\n\n            \n\n\n\n\n            \n    Index\n    \n        \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                    Static\n                                passwordMatchValidator\n                            \n                            \n                                    Static\n                                patternValidator\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Static\n                            passwordMatchValidator\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    passwordMatchValidator(control: AbstractControl)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_helpers/custom.validator.ts:13\n                \n            \n\n\n            \n                \n                    Sets errors to the confirm password input field if it does not match with the value in the password input field.\n\n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                    Description\n                                \n                            \n                            \n                                \n                                    control\n                                    \n                                                AbstractControl\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                    \n                                        \nThe control object of the form being validated.\n\n\n                                    \n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Static\n                            patternValidator\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    patternValidator(regex: RegExp, error: ValidationErrors)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_helpers/custom.validator.ts:28\n                \n            \n\n\n            \n                \n                    Sets errors to a form field if it does not match with the regular expression given.\n\n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                    Description\n                                \n                            \n                            \n                                \n                                    regex\n                                    \n                                            RegExp\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                    \n                                        \nThe regular expression to match with the form field.\n\n\n                                    \n                                \n                                \n                                    error\n                                    \n                                                ValidationErrors\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                    \n                                        \nDefines the map of errors to return from failed validation checks.\n\n\n                                    \n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     ValidationErrors | null\n\n                    \n                    \n                        The map of errors returned from failed validation checks.\n\n                    \n                \n            \n        \n    \n\n\n\n\n\n\n    \n\n\n    \n        import {AbstractControl, ValidationErrors} from '@angular/forms';\n\n/**\n * Provides methods to perform custom validation to form inputs.\n */\nexport class CustomValidator {\n  /**\n   * Sets errors to the confirm password input field if it does not match with the value in the password input field.\n   *\n   * @param control - The control object of the form being validated.\n   */\n  static passwordMatchValidator(control: AbstractControl): void {\n    const password: string = control.get('password').value;\n    const confirmPassword: string = control.get('confirmPassword').value;\n    if (password !== confirmPassword) {\n      control.get('confirmPassword').setErrors({ NoPasswordMatch: true });\n    }\n  }\n\n  /**\n   * Sets errors to a form field if it does not match with the regular expression given.\n   *\n   * @param regex - The regular expression to match with the form field.\n   * @param error - Defines the map of errors to return from failed validation checks.\n   * @returns The map of errors returned from failed validation checks.\n   */\n  static patternValidator(regex: RegExp, error: ValidationErrors): ValidationErrors | null {\n    return (control: AbstractControl): { [key: string]: any } => {\n      if (!control.value) {\n        return null;\n      }\n\n      const valid: boolean = regex.test(control.value);\n      return valid ? null : error;\n    };\n  }\n}\n\n    \n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"components/ErrorDialogComponent.html":{"url":"components/ErrorDialogComponent.html","title":"component - ErrorDialogComponent","body":"\n                   \n\n\n\n\n\n  Components\n  ErrorDialogComponent\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n        \n            Template\n        \n        \n            Styles\n        \n        \n            DOM Tree\n        \n\n\n\n    \n    File\n\n\n    src/app/shared/error-dialog/error-dialog.component.ts\n\n\n\n\n\n\n\n    Metadata\n    \n        \n\n            \n                changeDetection\n                ChangeDetectionStrategy.OnPush\n            \n\n\n\n\n\n\n\n\n\n\n            \n                selector\n                app-error-dialog\n            \n\n            \n                styleUrls\n                ./error-dialog.component.scss\n            \n\n\n\n            \n                templateUrl\n                ./error-dialog.component.html\n            \n\n\n\n\n\n\n\n\n        \n    \n\n\n    \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                    Public\n                                data\n                            \n                        \n                    \n                \n\n\n\n\n\n\n        \n    \n\n\n    \n    Constructor\n        \n            \n                \n                    \nconstructor(data: any)\n                    \n                \n                        \n                            \n                                Defined in src/app/shared/error-dialog/error-dialog.component.ts:10\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        data\n                                                  \n                                                        \n                                                                        any\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n\n\n\n\n\n    \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                                Public\n                            data\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         any\n\n                        \n                    \n                    \n                        \n                            Decorators : \n                            \n                            \n                                @Inject(MAT_DIALOG_DATA)\n                            \n                        \n                    \n                        \n                            \n                                    Defined in src/app/shared/error-dialog/error-dialog.component.ts:12\n                            \n                        \n\n\n            \n        \n\n\n\n\n\n    \n        import {Component, ChangeDetectionStrategy, Inject} from '@angular/core';\nimport {MAT_DIALOG_DATA} from '@angular/material/dialog';\n\n@Component({\n  selector: 'app-error-dialog',\n  templateUrl: './error-dialog.component.html',\n  styleUrls: ['./error-dialog.component.scss'],\n  changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class ErrorDialogComponent {\n\n  constructor(@Inject(MAT_DIALOG_DATA) public data: any) { }\n\n}\n\n    \n\n    \n        \n  \n    \n      Message: {{ data.message }}\n    \n    \n      Status: {{ data?.status }}\n    \n  \n\n\n    \n\n    \n                \n                    ./error-dialog.component.scss\n                \n                \n    \n\n    \n        \n        \n            \n                Legend\n            \n            \n                Html element\n            \n            \n                Component\n            \n            \n                Html element with directive\n            \n        \n    \n\n    \n\n\n\n\n\n\n        var COMPONENT_TEMPLATE = '            Message: {{ data.message }}              Status: {{ data?.status }}      '\n    var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n    var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[routerLink]'}];\n    var ACTUAL_COMPONENT = {'name': 'ErrorDialogComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"injectables/ErrorDialogService.html":{"url":"injectables/ErrorDialogService.html","title":"injectable - ErrorDialogService","body":"\n                   \n\n\n\n\n\n\n\n\n  Injectables\n  ErrorDialogService\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_services/error-dialog.service.ts\n        \n\n\n\n\n            \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                    Public\n                                dialog\n                            \n                            \n                                    Public\n                                isDialogOpen\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                openDialog\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n            \n    Constructor\n        \n            \n                \n                    \nconstructor(dialog: MatDialog)\n                    \n                \n                        \n                            \n                                Defined in src/app/_services/error-dialog.service.ts:9\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        dialog\n                                                  \n                                                        \n                                                                    MatDialog\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            openDialog\n                        \n                        \n                    \n                \n            \n            \n                \nopenDialog(data)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/error-dialog.service.ts:15\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Optional\n                                \n                            \n                            \n                                \n                                    data\n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         any\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n            \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                                Public\n                            dialog\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     MatDialog\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_services/error-dialog.service.ts:12\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                                Public\n                            isDialogOpen\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         boolean\n\n                        \n                    \n                    \n                        \n                            Default value : false\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_services/error-dialog.service.ts:9\n                            \n                        \n\n\n            \n        \n\n\n    \n\n\n    \n        import { Injectable } from '@angular/core';\nimport {MatDialog, MatDialogRef} from '@angular/material/dialog';\nimport {ErrorDialogComponent} from '@app/shared/error-dialog/error-dialog.component';\n\n@Injectable({\n  providedIn: 'root'\n})\nexport class ErrorDialogService {\n  public isDialogOpen: boolean = false;\n\n  constructor(\n    public dialog: MatDialog,\n  ) { }\n\n  openDialog(data): any {\n    if (this.isDialogOpen) {\n      return false;\n    }\n    this.isDialogOpen = true;\n    const dialogRef: MatDialogRef = this.dialog.open(ErrorDialogComponent, {\n      width: '300px',\n      data\n    });\n\n    dialogRef.afterClosed().subscribe(() => this.isDialogOpen = false);\n  }\n}\n\n    \n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"interceptors/ErrorInterceptor.html":{"url":"interceptors/ErrorInterceptor.html","title":"interceptor - ErrorInterceptor","body":"\n                   \n\n\n\n\n\n\n\n\n\n  Interceptors\n  ErrorInterceptor\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_interceptors/error.interceptor.ts\n        \n\n\n\n            \n    Index\n    \n        \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                intercept\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n            \n    Constructor\n        \n            \n                \n                    \nconstructor(errorDialogService: ErrorDialogService, loggingService: LoggingService, router: Router)\n                    \n                \n                        \n                            \n                                Defined in src/app/_interceptors/error.interceptor.ts:14\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        errorDialogService\n                                                  \n                                                        \n                                                                        ErrorDialogService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        loggingService\n                                                  \n                                                        \n                                                                        LoggingService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        router\n                                                  \n                                                        \n                                                                        Router\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            intercept\n                        \n                        \n                    \n                \n            \n            \n                \nintercept(request: HttpRequest, next: HttpHandler)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_interceptors/error.interceptor.ts:22\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    request\n                                    \n                                            HttpRequest\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    next\n                                    \n                                                HttpHandler\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Observable>\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n\n    \n\n\n    \n        import {Injectable} from '@angular/core';\nimport {\n  HttpRequest,\n  HttpHandler,\n  HttpEvent,\n  HttpInterceptor, HttpErrorResponse\n} from '@angular/common/http';\nimport {Observable, throwError} from 'rxjs';\nimport {catchError} from 'rxjs/operators';\nimport {ErrorDialogService, LoggingService} from '@app/_services';\nimport {Router} from '@angular/router';\n\n@Injectable()\nexport class ErrorInterceptor implements HttpInterceptor {\n\n  constructor(\n    private errorDialogService: ErrorDialogService,\n    private loggingService: LoggingService,\n    private router: Router\n  ) {}\n\n  intercept(request: HttpRequest, next: HttpHandler): Observable> {\n    return next.handle(request).pipe(\n      catchError((err: HttpErrorResponse) => {\n        let errorMessage: string;\n        if (err.error instanceof ErrorEvent) {\n          // A client-side or network error occurred. Handle it accordingly.\n          errorMessage = `An error occurred: ${err.error.message}`;\n        } else {\n          // The backend returned an unsuccessful response code.\n          // The response body may contain clues as to what went wrong.\n          errorMessage = `Backend returned code ${err.status}, body was: ${JSON.stringify(err.error)}`;\n        }\n        this.loggingService.sendErrorLevelMessage(errorMessage, this, {error: err});\n        switch (err.status) {\n          case 401:  // unauthorized\n            this.router.navigateByUrl('/auth').then();\n            break;\n          case 403: // forbidden\n            alert('Access to resource is not allowed!');\n            break;\n        }\n        // Return an observable with a user-facing error message.\n        return throwError(err);\n      })\n    );\n  }\n}\n\n    \n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"components/FooterComponent.html":{"url":"components/FooterComponent.html","title":"component - FooterComponent","body":"\n                   \n\n\n\n\n\n  Components\n  FooterComponent\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n        \n            Template\n        \n        \n            Styles\n        \n        \n            DOM Tree\n        \n\n\n\n    \n    File\n\n\n    src/app/shared/footer/footer.component.ts\n\n\n\n\n    \n        Implements\n    \n    \n                    OnInit\n    \n\n\n\n    Metadata\n    \n        \n\n            \n                changeDetection\n                ChangeDetectionStrategy.OnPush\n            \n\n\n\n\n\n\n\n\n\n\n            \n                selector\n                app-footer\n            \n\n            \n                styleUrls\n                ./footer.component.scss\n            \n\n\n\n            \n                templateUrl\n                ./footer.component.html\n            \n\n\n\n\n\n\n\n\n        \n    \n\n\n    \n    Index\n    \n        \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                ngOnInit\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n    \n    Constructor\n        \n            \n                \n                    \nconstructor()\n                    \n                \n                        \n                            \n                                Defined in src/app/shared/footer/footer.component.ts:9\n                            \n                        \n\n            \n        \n\n\n\n\n\n\n    \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            ngOnInit\n                        \n                        \n                    \n                \n            \n            \n                \nngOnInit()\n                \n            \n\n\n            \n                \n                    Defined in src/app/shared/footer/footer.component.ts:13\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n\n\n\n\n\n    \n        import {ChangeDetectionStrategy, Component, OnInit} from '@angular/core';\n\n@Component({\n  selector: 'app-footer',\n  templateUrl: './footer.component.html',\n  styleUrls: ['./footer.component.scss'],\n  changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class FooterComponent implements OnInit {\n\n  constructor() { }\n\n  ngOnInit(): void {\n  }\n\n}\n\n    \n\n    \n        \n\n  2020 © Grassroots Economics\n\n\n\n    \n\n    \n                \n                    ./footer.component.scss\n                \n                \n    \n\n    \n        \n        \n            \n                Legend\n            \n            \n                Html element\n            \n            \n                Component\n            \n            \n                Html element with directive\n            \n        \n    \n\n    \n\n\n\n\n\n\n        var COMPONENT_TEMPLATE = '  2020 © Grassroots Economics'\n    var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n    var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[routerLink]'}];\n    var ACTUAL_COMPONENT = {'name': 'FooterComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"components/FooterStubComponent.html":{"url":"components/FooterStubComponent.html","title":"component - FooterStubComponent","body":"\n                   \n\n\n\n\n\n  Components\n  FooterStubComponent\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n        \n            DOM Tree\n        \n\n\n\n    \n    File\n\n\n    src/testing/shared-module-stub.ts\n\n\n\n\n\n\n\n    Metadata\n    \n        \n\n\n\n\n\n\n\n\n\n\n\n            \n                selector\n                app-footer\n            \n\n\n\n\n\n\n\n\n\n\n\n\n        \n    \n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n        import {Component} from '@angular/core';\n\n@Component({selector: 'app-sidebar', template: ''})\nexport class SidebarStubComponent {}\n\n@Component({selector: 'app-topbar', template: ''})\nexport class TopbarStubComponent {}\n\n@Component({selector: 'app-footer', template: ''})\nexport class FooterStubComponent {}\n\n    \n\n\n\n    \n        \n        \n            \n                Legend\n            \n            \n                Html element\n            \n            \n                Component\n            \n            \n                Html element with directive\n            \n        \n    \n\n    \n\n\n\n\n\n\n        var COMPONENT_TEMPLATE = ''\n    var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n    var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[routerLink]'}];\n    var ACTUAL_COMPONENT = {'name': 'FooterStubComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"injectables/GlobalErrorHandler.html":{"url":"injectables/GlobalErrorHandler.html","title":"injectable - GlobalErrorHandler","body":"\n                   \n\n\n\n\n\n\n\n\n  Injectables\n  GlobalErrorHandler\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_helpers/global-error-handler.ts\n        \n\n            \n                Description\n            \n            \n                Provides a hook for centralized exception handling.\n\n            \n\n            \n                Extends\n            \n            \n                        ErrorHandler\n            \n\n            \n                Example\n            \n            \n            \n\n            \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                    Private\n                                sentencesForWarningLogging\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                handleError\n                            \n                            \n                                    Private\n                                isWarning\n                            \n                            \n                                logError\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n            \n    Constructor\n        \n            \n                \n                    \nconstructor(loggingService: LoggingService, router: Router)\n                    \n                \n                        \n                            \n                                Defined in src/app/_helpers/global-error-handler.ts:42\n                            \n                        \n\n                \n                    \n                            Initialization of the Global Error Handler.\n\n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                                    Description\n                                            \n                                        \n                                        \n                                                \n                                                        loggingService\n                                                  \n                                                        \n                                                                        LoggingService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                        \n                                                                \nA service that provides logging capabilities.\n\n\n                                                        \n                                                \n                                                \n                                                        router\n                                                  \n                                                        \n                                                                        Router\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                        \n                                                                \nA service that provides navigation among views and URL manipulation capabilities.\n\n\n                                                        \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            handleError\n                        \n                        \n                    \n                \n            \n            \n                \nhandleError(error: Error)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_helpers/global-error-handler.ts:62\n                \n            \n\n\n            \n                \n                    Handles different types of errors.\n\n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                    Description\n                                \n                            \n                            \n                                \n                                    error\n                                    \n                                            Error\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                    \n                                        \nAn error objects thrown when a runtime errors occurs.\n\n\n                                    \n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Private\n                            isWarning\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    isWarning(errorTraceString: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_helpers/global-error-handler.ts:89\n                \n            \n\n\n            \n                \n                    Checks if an error is of type warning.\n\n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                    Description\n                                \n                            \n                            \n                                \n                                    errorTraceString\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                    \n                                        \nA description of the error and it's stack trace.\n\n\n                                    \n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         boolean\n\n                    \n                    \n                        true - If the error is of type warning.\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            logError\n                        \n                        \n                    \n                \n            \n            \n                \nlogError(error: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_helpers/global-error-handler.ts:109\n                \n            \n\n\n            \n                \n                    Write appropriate logs according to the type of error.\n\n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                    Description\n                                \n                            \n                            \n                                \n                                    error\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                    \n                                        \nAn error objects thrown when a runtime errors occurs.\n\n\n                                    \n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n            \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                                Private\n                            sentencesForWarningLogging\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     Array\n\n                        \n                    \n                    \n                        \n                            Default value : []\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_helpers/global-error-handler.ts:42\n                            \n                        \n\n                \n                    \n                        An array of sentence sections that denote warnings.\n\n                    \n                \n\n            \n        \n\n\n    \n\n\n    \n        import {HttpErrorResponse} from '@angular/common/http';\nimport {ErrorHandler, Injectable} from '@angular/core';\nimport {Router} from '@angular/router';\n\n// Application imports\nimport {LoggingService} from '@app/_services/logging.service';\n\n/**\n * A generalized http response error.\n *\n * @extends Error\n */\nexport class HttpError extends Error {\n  /** The error's status code. */\n  public status: number;\n\n  /**\n   * Initialize the HttpError class.\n   *\n   * @param message - The message given by the error.\n   * @param status - The status code given by the error.\n   */\n  constructor(message: string, status: number) {\n    super(message);\n    this.status = status;\n    this.name = 'HttpError';\n  }\n}\n\n/**\n * Provides a hook for centralized exception handling.\n *\n * @extends ErrorHandler\n */\n@Injectable()\nexport class GlobalErrorHandler extends ErrorHandler {\n  /**\n   * An array of sentence sections that denote warnings.\n   * @private\n   */\n  private sentencesForWarningLogging: Array = [];\n\n  /**\n   * Initialization of the Global Error Handler.\n   *\n   * @param loggingService - A service that provides logging capabilities.\n   * @param router - A service that provides navigation among views and URL manipulation capabilities.\n   */\n  constructor(\n    private loggingService: LoggingService,\n    private router: Router\n  ) {\n    super();\n  }\n\n  /**\n   * Handles different types of errors.\n   *\n   * @param error - An error objects thrown when a runtime errors occurs.\n   */\n  handleError(error: Error): void {\n    this.logError(error);\n    const message: string = error.message ? error.message : error.toString();\n\n    // if (error.status) {\n    //   error = new Error(message);\n    // }\n\n    const errorTraceString: string = `Error message:\\n${message}.\\nStack trace: ${error.stack}`;\n\n    const isWarning: boolean = this.isWarning(errorTraceString);\n    if (isWarning) {\n      this.loggingService.sendWarnLevelMessage(errorTraceString, {error});\n    } else {\n      this.loggingService.sendErrorLevelMessage(errorTraceString, this, {error});\n    }\n\n    throw error;\n  }\n\n  /**\n   * Checks if an error is of type warning.\n   *\n   * @param errorTraceString - A description of the error and it's stack trace.\n   * @returns true - If the error is of type warning.\n   * @private\n   */\n  private isWarning(errorTraceString: string): boolean {\n    let isWarning: boolean = true;\n    if (errorTraceString.includes('/src/app/')) {\n      isWarning = false;\n    }\n\n    this.sentencesForWarningLogging.forEach((whiteListSentence: string) => {\n      if (errorTraceString.includes(whiteListSentence)) {\n        isWarning = true;\n      }\n    });\n\n    return isWarning;\n  }\n\n  /**\n   * Write appropriate logs according to the type of error.\n   *\n   * @param error - An error objects thrown when a runtime errors occurs.\n   */\n  logError(error: any): void {\n    const route: string = this.router.url;\n    if (error instanceof HttpErrorResponse) {\n      this.loggingService.sendErrorLevelMessage(\n        `There was an HTTP error on route ${route}.\\n${error.message}.\\nStatus code: ${(error as HttpErrorResponse).status}`,\n        this, {error});\n    } else if (error instanceof TypeError) {\n      this.loggingService.sendErrorLevelMessage(`There was a Type error on route ${route}.\\n${error.message}`, this, {error});\n    } else if (error instanceof Error) {\n      this.loggingService.sendErrorLevelMessage(`There was a general error on route ${route}.\\n${error.message}`, this, {error});\n    } else {\n      this.loggingService.sendErrorLevelMessage(`Nobody threw an error but something happened on route ${route}!`, this, {error});\n    }\n  }\n}\n\n    \n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"interceptors/HttpConfigInterceptor.html":{"url":"interceptors/HttpConfigInterceptor.html","title":"interceptor - HttpConfigInterceptor","body":"\n                   \n\n\n\n\n\n\n\n\n\n  Interceptors\n  HttpConfigInterceptor\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_interceptors/http-config.interceptor.ts\n        \n\n\n\n            \n    Index\n    \n        \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                intercept\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n            \n    Constructor\n        \n            \n                \n                    \nconstructor()\n                    \n                \n                        \n                            \n                                Defined in src/app/_interceptors/http-config.interceptor.ts:11\n                            \n                        \n\n            \n        \n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            intercept\n                        \n                        \n                    \n                \n            \n            \n                \nintercept(request: HttpRequest, next: HttpHandler)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_interceptors/http-config.interceptor.ts:15\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    request\n                                    \n                                            HttpRequest\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    next\n                                    \n                                                HttpHandler\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Observable>\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n\n    \n\n\n    \n        import { Injectable } from '@angular/core';\nimport {\n  HttpRequest,\n  HttpHandler,\n  HttpEvent,\n  HttpInterceptor\n} from '@angular/common/http';\nimport { Observable } from 'rxjs';\n\n@Injectable()\nexport class HttpConfigInterceptor implements HttpInterceptor {\n\n  constructor() {}\n\n  intercept(request: HttpRequest, next: HttpHandler): Observable> {\n    // const token: string = sessionStorage.getItem(btoa('CICADA_SESSION_TOKEN'));\n\n    // if (token) {\n    //   request = request.clone({headers: request.headers.set('Authorization', 'Bearer ' + token)});\n    // }\n\n    return next.handle(request);\n  }\n}\n\n    \n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"classes/HttpError.html":{"url":"classes/HttpError.html","title":"class - HttpError","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n  Classes\n  HttpError\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_helpers/global-error-handler.ts\n        \n\n            \n                Description\n            \n            \n                A generalized http response error.\n\n            \n\n            \n                Extends\n            \n            \n                    Error\n            \n\n\n            \n                Example\n            \n            \n            \n\n            \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                    Public\n                                status\n                            \n                        \n                    \n                \n\n\n\n\n\n\n        \n    \n\n\n            \n    Constructor\n        \n            \n                \n                    \nconstructor(message: string, status: number)\n                    \n                \n                        \n                            \n                                Defined in src/app/_helpers/global-error-handler.ts:16\n                            \n                        \n\n                \n                    \n                            Initialize the HttpError class.\n\n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                                    Description\n                                            \n                                        \n                                        \n                                                \n                                                        message\n                                                  \n                                                        \n                                                                        string\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                        \n                                                                \nThe message given by the error.\n\n\n                                                        \n                                                \n                                                \n                                                        status\n                                                  \n                                                        \n                                                                        number\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                        \n                                                                \nThe status code given by the error.\n\n\n                                                        \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n            \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                                Public\n                            status\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         number\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_helpers/global-error-handler.ts:16\n                            \n                        \n\n                \n                    \n                        The error's status code. \n\n                    \n                \n\n            \n        \n\n\n\n\n\n\n\n\n    \n\n\n    \n        import {HttpErrorResponse} from '@angular/common/http';\nimport {ErrorHandler, Injectable} from '@angular/core';\nimport {Router} from '@angular/router';\n\n// Application imports\nimport {LoggingService} from '@app/_services/logging.service';\n\n/**\n * A generalized http response error.\n *\n * @extends Error\n */\nexport class HttpError extends Error {\n  /** The error's status code. */\n  public status: number;\n\n  /**\n   * Initialize the HttpError class.\n   *\n   * @param message - The message given by the error.\n   * @param status - The status code given by the error.\n   */\n  constructor(message: string, status: number) {\n    super(message);\n    this.status = status;\n    this.name = 'HttpError';\n  }\n}\n\n/**\n * Provides a hook for centralized exception handling.\n *\n * @extends ErrorHandler\n */\n@Injectable()\nexport class GlobalErrorHandler extends ErrorHandler {\n  /**\n   * An array of sentence sections that denote warnings.\n   * @private\n   */\n  private sentencesForWarningLogging: Array = [];\n\n  /**\n   * Initialization of the Global Error Handler.\n   *\n   * @param loggingService - A service that provides logging capabilities.\n   * @param router - A service that provides navigation among views and URL manipulation capabilities.\n   */\n  constructor(\n    private loggingService: LoggingService,\n    private router: Router\n  ) {\n    super();\n  }\n\n  /**\n   * Handles different types of errors.\n   *\n   * @param error - An error objects thrown when a runtime errors occurs.\n   */\n  handleError(error: Error): void {\n    this.logError(error);\n    const message: string = error.message ? error.message : error.toString();\n\n    // if (error.status) {\n    //   error = new Error(message);\n    // }\n\n    const errorTraceString: string = `Error message:\\n${message}.\\nStack trace: ${error.stack}`;\n\n    const isWarning: boolean = this.isWarning(errorTraceString);\n    if (isWarning) {\n      this.loggingService.sendWarnLevelMessage(errorTraceString, {error});\n    } else {\n      this.loggingService.sendErrorLevelMessage(errorTraceString, this, {error});\n    }\n\n    throw error;\n  }\n\n  /**\n   * Checks if an error is of type warning.\n   *\n   * @param errorTraceString - A description of the error and it's stack trace.\n   * @returns true - If the error is of type warning.\n   * @private\n   */\n  private isWarning(errorTraceString: string): boolean {\n    let isWarning: boolean = true;\n    if (errorTraceString.includes('/src/app/')) {\n      isWarning = false;\n    }\n\n    this.sentencesForWarningLogging.forEach((whiteListSentence: string) => {\n      if (errorTraceString.includes(whiteListSentence)) {\n        isWarning = true;\n      }\n    });\n\n    return isWarning;\n  }\n\n  /**\n   * Write appropriate logs according to the type of error.\n   *\n   * @param error - An error objects thrown when a runtime errors occurs.\n   */\n  logError(error: any): void {\n    const route: string = this.router.url;\n    if (error instanceof HttpErrorResponse) {\n      this.loggingService.sendErrorLevelMessage(\n        `There was an HTTP error on route ${route}.\\n${error.message}.\\nStatus code: ${(error as HttpErrorResponse).status}`,\n        this, {error});\n    } else if (error instanceof TypeError) {\n      this.loggingService.sendErrorLevelMessage(`There was a Type error on route ${route}.\\n${error.message}`, this, {error});\n    } else if (error instanceof Error) {\n      this.loggingService.sendErrorLevelMessage(`There was a general error on route ${route}.\\n${error.message}`, this, {error});\n    } else {\n      this.loggingService.sendErrorLevelMessage(`Nobody threw an error but something happened on route ${route}!`, this, {error});\n    }\n  }\n}\n\n    \n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"injectables/LocationService.html":{"url":"injectables/LocationService.html","title":"injectable - LocationService","body":"\n                   \n\n\n\n\n\n\n\n\n  Injectables\n  LocationService\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_services/location.service.ts\n        \n\n\n\n\n            \n    Index\n    \n        \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                getAreaNameByLocation\n                            \n                            \n                                getAreaNames\n                            \n                            \n                                getAreaTypeByArea\n                            \n                            \n                                getAreaTypes\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n            \n    Constructor\n        \n            \n                \n                    \nconstructor(httpClient: HttpClient)\n                    \n                \n                        \n                            \n                                Defined in src/app/_services/location.service.ts:10\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        httpClient\n                                                  \n                                                        \n                                                                        HttpClient\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getAreaNameByLocation\n                        \n                        \n                    \n                \n            \n            \n                \ngetAreaNameByLocation(location: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/location.service.ts:20\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    location\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Observable\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getAreaNames\n                        \n                        \n                    \n                \n            \n            \n                \ngetAreaNames()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/location.service.ts:16\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Observable\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getAreaTypeByArea\n                        \n                        \n                    \n                \n            \n            \n                \ngetAreaTypeByArea(area: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/location.service.ts:28\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    area\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Observable\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getAreaTypes\n                        \n                        \n                    \n                \n            \n            \n                \ngetAreaTypes()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/location.service.ts:24\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Observable\n\n                    \n                \n            \n        \n    \n\n\n    \n\n\n    \n        import { Injectable } from '@angular/core';\nimport {Observable} from 'rxjs';\nimport {environment} from '@src/environments/environment';\nimport {first} from 'rxjs/operators';\nimport {HttpClient} from '@angular/common/http';\n\n@Injectable({\n  providedIn: 'root'\n})\nexport class LocationService {\n\n  constructor(\n    private httpClient: HttpClient,\n  ) { }\n\n  getAreaNames(): Observable {\n    return this.httpClient.get(`${environment.cicMetaUrl}/areanames`);\n  }\n\n  getAreaNameByLocation(location: string): Observable {\n    return this.httpClient.get(`${environment.cicMetaUrl}/areanames/${location.toLowerCase()}`);\n  }\n\n  getAreaTypes(): Observable {\n    return this.httpClient.get(`${environment.cicMetaUrl}/areatypes`).pipe(first());\n  }\n\n  getAreaTypeByArea(area: string): Observable {\n    return this.httpClient.get(`${environment.cicMetaUrl}/areatypes/${area.toLowerCase()}`).pipe(first());\n  }\n}\n\n    \n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"interceptors/LoggingInterceptor.html":{"url":"interceptors/LoggingInterceptor.html","title":"interceptor - LoggingInterceptor","body":"\n                   \n\n\n\n\n\n\n\n\n\n  Interceptors\n  LoggingInterceptor\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_interceptors/logging.interceptor.ts\n        \n\n\n\n            \n    Index\n    \n        \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                intercept\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n            \n    Constructor\n        \n            \n                \n                    \nconstructor(loggingService: LoggingService)\n                    \n                \n                        \n                            \n                                Defined in src/app/_interceptors/logging.interceptor.ts:14\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        loggingService\n                                                  \n                                                        \n                                                                        LoggingService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            intercept\n                        \n                        \n                    \n                \n            \n            \n                \nintercept(request: HttpRequest, next: HttpHandler)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_interceptors/logging.interceptor.ts:20\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    request\n                                    \n                                            HttpRequest\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    next\n                                    \n                                                HttpHandler\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Observable>\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n\n    \n\n\n    \n        import { Injectable } from '@angular/core';\nimport {\n  HttpRequest,\n  HttpHandler,\n  HttpEvent,\n  HttpInterceptor,\n  HttpResponse\n} from '@angular/common/http';\nimport {Observable} from 'rxjs';\nimport {LoggingService} from '@app/_services/logging.service';\nimport {finalize, tap} from 'rxjs/operators';\n\n@Injectable()\nexport class LoggingInterceptor implements HttpInterceptor {\n\n  constructor(\n    private loggingService: LoggingService\n  ) {}\n\n  intercept(request: HttpRequest, next: HttpHandler): Observable> {\n    return next.handle(request);\n    // this.loggingService.sendInfoLevelMessage(request);\n    // const startTime: number = Date.now();\n    // let status: string;\n    //\n    // return next.handle(request).pipe(tap(event => {\n    //   status = '';\n    //   if (event instanceof HttpResponse) {\n    //     status = 'succeeded';\n    //   }\n    // }, error => status = 'failed'),\n    //   finalize(() => {\n    //   const elapsedTime: number = Date.now() - startTime;\n    //   const message: string = `${request.method} request for ${request.urlWithParams} ${status} in ${elapsedTime} ms`;\n    //   this.loggingService.sendInfoLevelMessage(message);\n    // }));\n  }\n}\n\n    \n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"injectables/LoggingService.html":{"url":"injectables/LoggingService.html","title":"injectable - LoggingService","body":"\n                   \n\n\n\n\n\n\n\n\n  Injectables\n  LoggingService\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_services/logging.service.ts\n        \n\n\n\n\n            \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                canDebug\n                            \n                            \n                                env\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                sendDebugLevelMessage\n                            \n                            \n                                sendErrorLevelMessage\n                            \n                            \n                                sendFatalLevelMessage\n                            \n                            \n                                sendInfoLevelMessage\n                            \n                            \n                                sendLogLevelMessage\n                            \n                            \n                                sendTraceLevelMessage\n                            \n                            \n                                sendWarnLevelMessage\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n            \n    Constructor\n        \n            \n                \n                    \nconstructor(logger: NGXLogger)\n                    \n                \n                        \n                            \n                                Defined in src/app/_services/logging.service.ts:9\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        logger\n                                                  \n                                                        \n                                                                    NGXLogger\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            sendDebugLevelMessage\n                        \n                        \n                    \n                \n            \n            \n                \nsendDebugLevelMessage(message: any, source: any, error: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/logging.service.ts:22\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    message\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    source\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    error\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            sendErrorLevelMessage\n                        \n                        \n                    \n                \n            \n            \n                \nsendErrorLevelMessage(message: any, source: any, error: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/logging.service.ts:38\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    message\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    source\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    error\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            sendFatalLevelMessage\n                        \n                        \n                    \n                \n            \n            \n                \nsendFatalLevelMessage(message: any, source: any, error: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/logging.service.ts:42\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    message\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    source\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    error\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            sendInfoLevelMessage\n                        \n                        \n                    \n                \n            \n            \n                \nsendInfoLevelMessage(message: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/logging.service.ts:26\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    message\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            sendLogLevelMessage\n                        \n                        \n                    \n                \n            \n            \n                \nsendLogLevelMessage(message: any, source: any, error: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/logging.service.ts:30\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    message\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    source\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    error\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            sendTraceLevelMessage\n                        \n                        \n                    \n                \n            \n            \n                \nsendTraceLevelMessage(message: any, source: any, error: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/logging.service.ts:18\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    message\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    source\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    error\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            sendWarnLevelMessage\n                        \n                        \n                    \n                \n            \n            \n                \nsendWarnLevelMessage(message: any, error: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/logging.service.ts:34\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    message\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    error\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n            \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            canDebug\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         boolean\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_services/logging.service.ts:9\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            env\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_services/logging.service.ts:8\n                            \n                        \n\n\n            \n        \n\n\n    \n\n\n    \n        import {Injectable, isDevMode} from '@angular/core';\nimport {NGXLogger} from 'ngx-logger';\n\n@Injectable({\n  providedIn: 'root'\n})\nexport class LoggingService {\n  env: string;\n  canDebug: boolean;\n\n  constructor(private logger: NGXLogger) {\n    // TRACE|DEBUG|INFO|LOG|WARN|ERROR|FATAL|OFF\n    if (isDevMode()) {\n      this.sendInfoLevelMessage('Dropping into debug mode');\n    }\n  }\n\n  sendTraceLevelMessage(message: any, source: any, error: any): void {\n    this.logger.trace(message, source, error);\n  }\n\n  sendDebugLevelMessage(message: any, source: any, error: any): void {\n    this.logger.debug(message, source, error);\n  }\n\n  sendInfoLevelMessage(message: any): void {\n    this.logger.info(message);\n  }\n\n  sendLogLevelMessage(message: any, source: any, error: any): void {\n    this.logger.log(message, source, error);\n  }\n\n  sendWarnLevelMessage(message: any, error: any): void {\n    this.logger.warn(message, error);\n  }\n\n  sendErrorLevelMessage(message: any, source: any, error: any): void {\n    this.logger.error(message, source, error);\n  }\n\n  sendFatalLevelMessage(message: any, source: any, error: any): void {\n    this.logger.fatal(message, source, error);\n  }\n}\n\n    \n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"directives/MenuSelectionDirective.html":{"url":"directives/MenuSelectionDirective.html","title":"directive - MenuSelectionDirective","body":"\n                   \n\n\n\n\n\n\n\n  Directives\n  MenuSelectionDirective\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/shared/_directives/menu-selection.directive.ts\n        \n\n\n\n\n        \n            Metadata\n            \n                \n\n                    \n                        Selector\n                        [appMenuSelection]\n                    \n\n                \n            \n        \n\n            \n    Index\n    \n        \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                onMenuSelect\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n            \n    Constructor\n        \n            \n                \n                    \nconstructor(elementRef: ElementRef, renderer: Renderer2)\n                    \n                \n                        \n                            \n                                Defined in src/app/shared/_directives/menu-selection.directive.ts:6\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        elementRef\n                                                  \n                                                        \n                                                                        ElementRef\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        renderer\n                                                  \n                                                        \n                                                                        Renderer2\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n\n\n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            onMenuSelect\n                        \n                        \n                    \n                \n            \n            \n                \nonMenuSelect()\n                \n            \n\n\n            \n                \n                    Defined in src/app/shared/_directives/menu-selection.directive.ts:20\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n\n\n\n    \n\n\n    \n        import {Directive, ElementRef, Renderer2} from '@angular/core';\n\n@Directive({\n  selector: '[appMenuSelection]'\n})\nexport class MenuSelectionDirective {\n\n  constructor(\n    private elementRef: ElementRef,\n    private renderer: Renderer2\n  ) {\n    this.renderer.listen(this.elementRef.nativeElement, 'click', () => {\n      const mediaQuery = window.matchMedia('(max-width: 768px)');\n      if (mediaQuery.matches) {\n        this.onMenuSelect();\n      }\n    });\n  }\n\n  onMenuSelect(): void {\n    const sidebar: HTMLElement = document.getElementById('sidebar');\n    if (!sidebar?.classList.contains('active')) {\n      sidebar?.classList.add('active');\n    }\n    const content: HTMLElement = document.getElementById('content');\n    if (!content?.classList.contains('active')) {\n      content?.classList.add('active');\n    }\n    const sidebarCollapse: HTMLElement = document.getElementById('sidebarCollapse');\n    if (sidebarCollapse?.classList.contains('active')) {\n      sidebarCollapse?.classList.remove('active');\n    }\n  }\n}\n\n    \n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"directives/MenuToggleDirective.html":{"url":"directives/MenuToggleDirective.html","title":"directive - MenuToggleDirective","body":"\n                   \n\n\n\n\n\n\n\n  Directives\n  MenuToggleDirective\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/shared/_directives/menu-toggle.directive.ts\n        \n\n\n\n\n        \n            Metadata\n            \n                \n\n                    \n                        Selector\n                        [appMenuToggle]\n                    \n\n                \n            \n        \n\n            \n    Index\n    \n        \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                onMenuToggle\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n            \n    Constructor\n        \n            \n                \n                    \nconstructor(elementRef: ElementRef, renderer: Renderer2)\n                    \n                \n                        \n                            \n                                Defined in src/app/shared/_directives/menu-toggle.directive.ts:6\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        elementRef\n                                                  \n                                                        \n                                                                        ElementRef\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        renderer\n                                                  \n                                                        \n                                                                        Renderer2\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n\n\n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            onMenuToggle\n                        \n                        \n                    \n                \n            \n            \n                \nonMenuToggle()\n                \n            \n\n\n            \n                \n                    Defined in src/app/shared/_directives/menu-toggle.directive.ts:18\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n\n\n\n    \n\n\n    \n        import {Directive, ElementRef, Renderer2} from '@angular/core';\n\n@Directive({\n  selector: '[appMenuToggle]'\n})\nexport class MenuToggleDirective {\n\n  constructor(\n    private elementRef: ElementRef,\n    private renderer: Renderer2\n  ) {\n    this.renderer.listen(this.elementRef.nativeElement, 'click', () => {\n      this.onMenuToggle();\n    });\n  }\n\n  // Menu Trigger\n  onMenuToggle(): void {\n    const sidebar: HTMLElement = document.getElementById('sidebar');\n    sidebar?.classList.toggle('active');\n    const content: HTMLElement = document.getElementById('content');\n    content?.classList.toggle('active');\n    const sidebarCollapse: HTMLElement = document.getElementById('sidebarCollapse');\n    sidebarCollapse?.classList.toggle('active');\n  }\n}\n\n    \n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"interfaces/Meta.html":{"url":"interfaces/Meta.html","title":"interface - Meta","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n\n  Interfaces\n  Meta\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_models/account.ts\n        \n\n\n\n        \n            Index\n            \n                \n                    \n                        \n                            Properties\n                        \n                    \n                    \n                        \n                            \n                                \n                                        data\n                                \n                                \n                                        id\n                                \n                                \n                                        signature\n                                \n                            \n                        \n                    \n                \n            \n        \n\n\n\n            \n                Properties\n                    \n                        \n                                \n                                    \n                                        \n                                        data\n                                    \n                                \n                                \n                                    \n                                        data:         AccountDetails\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         AccountDetails\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        id\n                                    \n                                \n                                \n                                    \n                                        id:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        signature\n                                    \n                                \n                                \n                                    \n                                        signature:         Signature\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         Signature\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n            \n    \n\n\n    \n        interface AccountDetails {\n  date_registered: number;\n  gender: string;\n  age?: string;\n  type?: string;\n  balance?: number;\n  identities: {\n    evm: {\n      'bloxberg:8996': string[];\n      'oldchain:1': string[];\n    };\n    latitude: number;\n    longitude: number;\n  };\n  location: {\n    area?: string;\n    area_name: string;\n    area_type?: string;\n  };\n  products: string[];\n  category?: string;\n  vcard: {\n    email: [{\n      value: string;\n    }];\n    fn: [{\n      value: string;\n    }];\n    n: [{\n      value: string[];\n    }];\n    tel: [{\n      meta: {\n        TYP: string[];\n      },\n      value: string;\n    }],\n    version: [{\n      value: string;\n    }];\n  };\n}\n\ninterface Signature {\n  algo: string;\n  data: string;\n  digest: string;\n  engine: string;\n}\n\ninterface Meta {\n  data: AccountDetails;\n  id: string;\n  signature: Signature;\n}\n\ninterface MetaResponse {\n  id: string;\n  m: Meta;\n}\n\nconst defaultAccount: AccountDetails = {\n  date_registered: Date.now(),\n  gender: 'other',\n  identities: {\n    evm: {\n      'bloxberg:8996': [''],\n      'oldchain:1': [''],\n    },\n    latitude: 0,\n    longitude: 0,\n  },\n  location: {\n    area_name: 'Kilifi',\n  },\n  products: [],\n  vcard: {\n    email: [{\n      value: '',\n    }],\n    fn: [{\n      value: 'Sarafu Contract',\n    }],\n    n: [{\n      value: ['Sarafu', 'Contract'],\n    }],\n    tel: [{\n      meta: {\n        TYP: [],\n      },\n      value: '',\n    }],\n    version: [{\n      value: '3.0',\n    }],\n  },\n};\n\nexport {\n  AccountDetails,\n  Signature,\n  Meta,\n  MetaResponse,\n  defaultAccount\n};\n\n    \n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"interfaces/MetaResponse.html":{"url":"interfaces/MetaResponse.html","title":"interface - MetaResponse","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n\n  Interfaces\n  MetaResponse\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_models/account.ts\n        \n\n\n\n        \n            Index\n            \n                \n                    \n                        \n                            Properties\n                        \n                    \n                    \n                        \n                            \n                                \n                                        id\n                                \n                                \n                                        m\n                                \n                            \n                        \n                    \n                \n            \n        \n\n\n\n            \n                Properties\n                    \n                        \n                                \n                                    \n                                        \n                                        id\n                                    \n                                \n                                \n                                    \n                                        id:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        m\n                                    \n                                \n                                \n                                    \n                                        m:         Meta\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         Meta\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n            \n    \n\n\n    \n        interface AccountDetails {\n  date_registered: number;\n  gender: string;\n  age?: string;\n  type?: string;\n  balance?: number;\n  identities: {\n    evm: {\n      'bloxberg:8996': string[];\n      'oldchain:1': string[];\n    };\n    latitude: number;\n    longitude: number;\n  };\n  location: {\n    area?: string;\n    area_name: string;\n    area_type?: string;\n  };\n  products: string[];\n  category?: string;\n  vcard: {\n    email: [{\n      value: string;\n    }];\n    fn: [{\n      value: string;\n    }];\n    n: [{\n      value: string[];\n    }];\n    tel: [{\n      meta: {\n        TYP: string[];\n      },\n      value: string;\n    }],\n    version: [{\n      value: string;\n    }];\n  };\n}\n\ninterface Signature {\n  algo: string;\n  data: string;\n  digest: string;\n  engine: string;\n}\n\ninterface Meta {\n  data: AccountDetails;\n  id: string;\n  signature: Signature;\n}\n\ninterface MetaResponse {\n  id: string;\n  m: Meta;\n}\n\nconst defaultAccount: AccountDetails = {\n  date_registered: Date.now(),\n  gender: 'other',\n  identities: {\n    evm: {\n      'bloxberg:8996': [''],\n      'oldchain:1': [''],\n    },\n    latitude: 0,\n    longitude: 0,\n  },\n  location: {\n    area_name: 'Kilifi',\n  },\n  products: [],\n  vcard: {\n    email: [{\n      value: '',\n    }],\n    fn: [{\n      value: 'Sarafu Contract',\n    }],\n    n: [{\n      value: ['Sarafu', 'Contract'],\n    }],\n    tel: [{\n      meta: {\n        TYP: [],\n      },\n      value: '',\n    }],\n    version: [{\n      value: '3.0',\n    }],\n  },\n};\n\nexport {\n  AccountDetails,\n  Signature,\n  Meta,\n  MetaResponse,\n  defaultAccount\n};\n\n    \n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"interceptors/MockBackendInterceptor.html":{"url":"interceptors/MockBackendInterceptor.html","title":"interceptor - MockBackendInterceptor","body":"\n                   \n\n\n\n\n\n\n\n\n\n  Interceptors\n  MockBackendInterceptor\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_helpers/mock-backend.ts\n        \n\n            \n                Description\n            \n            \n                Intercepts HTTP requests and handles some specified requests internally.\nProvides a backend that can handle requests for certain data items.\n\n            \n\n            \n                Example\n            \n            \n            \n\n            \n    Index\n    \n        \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                intercept\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            intercept\n                        \n                        \n                    \n                \n            \n            \n                \nintercept(request: HttpRequest, next: HttpHandler)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_helpers/mock-backend.ts:268\n                \n            \n\n\n            \n                \n                    Intercepts HTTP requests.\n\n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                    Description\n                                \n                            \n                            \n                                \n                                    request\n                                    \n                                            HttpRequest\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                    \n                                        \nAn outgoing HTTP request with an optional typed body.\n\n\n                                    \n                                \n                                \n                                    next\n                                    \n                                                HttpHandler\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                    \n                                        \nThe next HTTP handler or the outgoing request dispatcher.\n\n\n                                    \n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Observable>\n\n                    \n                    \n                        The response from the resolved request.\n\n                    \n                \n            \n        \n    \n\n\n    \n\n\n    \n        import {HTTP_INTERCEPTORS, HttpEvent, HttpHandler, HttpInterceptor, HttpRequest, HttpResponse} from '@angular/common/http';\nimport {Injectable} from '@angular/core';\n\n// Third party imports\nimport {Observable, of, throwError} from 'rxjs';\nimport {delay, dematerialize, materialize, mergeMap} from 'rxjs/operators';\n\n// Application imports\nimport {Action, AreaName, AreaType, Category, Token} from '@app/_models';\n\n/** A mock of the curated account types. */\nconst accountTypes: Array = ['user', 'cashier', 'vendor', 'tokenagent', 'group'];\n\n/** A mock of actions made by the admin staff. */\nconst actions: Array = [\n  { id: 1, user: 'Tom', role: 'enroller', action: 'Disburse RSV 100', approval: false },\n  { id: 2, user: 'Christine', role: 'admin', action: 'Change user phone number', approval: true },\n  { id: 3, user: 'Will', role: 'superadmin', action: 'Reclaim RSV 1000', approval: true },\n  { id: 4, user: 'Vivian', role: 'enroller', action: 'Complete user profile', approval: true },\n  { id: 5, user: 'Jack', role: 'enroller', action: 'Reclaim RSV 200', approval: false },\n  { id: 6, user: 'Patience', role: 'enroller', action: 'Change user information', approval: false }\n];\n\n/** A mock of curated area names. */\nconst areaNames: Array = [\n  {\n    name: 'Mukuru Nairobi',\n    locations: ['kayaba', 'kayba', 'kambi', 'mukuru', 'masai', 'hazina', 'south', 'tetra', 'tetrapak', 'ruben', 'rueben', 'kingston',\n      'korokocho', 'kingstone', 'kamongo', 'lungalunga', 'sinai', 'sigei', 'lungu', 'lunga lunga', 'owino road', 'seigei']\n  },\n  {\n    name: 'Kinango Kwale',\n    locations: ['amani', 'bofu', 'chibuga', 'chikomani', 'chilongoni', 'chigojoni', 'chinguluni', 'chigato', 'chigale', 'chikole',\n      'chilongoni', 'chilumani', 'chigojoni', 'chikomani', 'chizini', 'chikomeni', 'chidzuvini', 'chidzivuni', 'chikuyu', 'chizingo',\n      'doti', 'dzugwe', 'dzivani', 'dzovuni', 'hanje', 'kasemeni', 'katundani', 'kibandaogo', 'kibandaongo', 'kwale', 'kinango',\n      'kidzuvini', 'kalalani', 'kafuduni', 'kaloleni', 'kilibole', 'lutsangani', 'peku', 'gona', 'guro', 'gandini', 'mkanyeni', 'myenzeni',\n      'miyenzeni', 'miatsiani', 'mienzeni', 'mnyenzeni', 'minyenzeni', 'miyani', 'mioleni', 'makuluni', 'mariakani', 'makobeni', 'madewani',\n      'mwangaraba', 'mwashanga', 'miloeni', 'mabesheni', 'mazeras', 'mazera', 'mlola', 'muugano', 'mulunguni', 'mabesheni', 'miatsani',\n      'miatsiani', 'mwache', 'mwangani', 'mwehavikonje', 'miguneni', 'nzora', 'nzovuni', 'vikinduni', 'vikolani', 'vitangani', 'viogato',\n      'vyogato', 'vistangani', 'yapha', 'yava', 'yowani', 'ziwani', 'majengo', 'matuga', 'vigungani', 'vidziweni', 'vinyunduni', 'ukunda',\n      'kokotoni', 'mikindani']\n  },\n  {\n    name: 'Misc Nairobi',\n    locations: ['nairobi', 'west', 'lindi', 'kibera', 'kibira', 'kibra', 'makina', 'soweto', 'olympic', 'kangemi', 'ruiru', 'congo',\n      'kawangware', 'kwangware', 'donholm', 'dagoreti', 'dandora', 'kabete', 'sinai', 'donhom', 'donholm', 'huruma', 'kitengela',\n      'makadara', ',mlolongo', 'kenyatta', 'mlolongo', 'tassia', 'tasia', 'gatina', '56', 'industrial', 'kariobangi', 'kasarani', 'kayole',\n      'mathare', 'pipe', 'juja', 'uchumi', 'jogoo', 'umoja', 'thika', 'kikuyu', 'stadium', 'buru buru', 'ngong', 'starehe', 'mwiki',\n      'fuata', 'kware', 'kabiro', 'embakassi', 'embakasi', 'kmoja', 'east', 'githurai', 'landi', 'langata', 'limuru', 'mathere',\n      'dagoretti', 'kirembe', 'muugano', 'mwiki', 'toi market']\n  },\n  {\n    name: 'Misc Mombasa',\n    locations: ['mombasa', 'likoni', 'bangla', 'bangladesh', 'kizingo', 'old town', 'makupa', 'mvita', 'ngombeni', 'ngómbeni', 'ombeni',\n      'magongo', 'miritini', 'changamwe', 'jomvu', 'ohuru', 'tudor', 'diani']\n  },\n  {\n    name: 'Kisauni',\n    locations: ['bamburi', 'kisauni', 'mworoni', 'nyali', 'shanzu', 'bombolulu', 'mtopanga', 'mjambere', 'majaoni', 'manyani', 'magogoni',\n      'junda', 'mwakirunge', 'mshomoroni']\n  },\n  {\n    name: 'Kilifi',\n    locations: ['kilfi', 'kilifi', 'mtwapa', 'takaungu', 'makongeni', 'mnarani', 'mnarani', 'office', 'g.e', 'ge', 'raibai', 'ribe']\n  },\n  {\n    name: 'Kakuma',\n    locations: ['kakuma']\n  },\n  {\n    name: 'Kitui',\n    locations: ['kitui', 'mwingi']\n  },\n  {\n    name: 'Nyanza',\n    locations: ['busia', 'nyalgunga', 'mbita', 'siaya', 'kisumu', 'nyalenda', 'hawinga', 'rangala', 'uyoma', 'mumias', 'homabay', 'homaboy',\n      'migori', 'kusumu']\n  },\n  {\n    name: 'Misc Rural Counties',\n    locations: ['makueni', 'meru', 'kisii', 'bomet', 'machakos', 'bungoma', 'eldoret', 'kakamega', 'kericho', 'kajiado', 'nandi', 'nyeri',\n      'wote', 'kiambu', 'mwea', 'nakuru', 'narok']\n  },\n  {\n    name: 'other',\n    locations: ['other', 'none', 'unknown']\n  }\n];\n\n/** A mock of curated area types. */\nconst areaTypes: Array = [\n  {\n    name: 'urban',\n    area: ['urban', 'nairobi', 'mombasa']\n  },\n  {\n    name: 'rural',\n    area: ['rural', 'kakuma', 'kwale', 'kinango', 'kitui', 'nyanza']\n  },\n  {\n    name: 'periurban',\n    area: ['kilifi', 'periurban']\n  },\n  {\n    name: 'other',\n    area: ['other']\n  }\n];\n\n/** A mock of the user's business categories */\nconst categories: Array = [\n  {\n    name: 'system',\n    products: ['system', 'office main', 'office main phone']\n  },\n  {\n    name: 'education',\n    products: ['book', 'coach', 'teacher', 'sch', 'school', 'pry', 'education', 'student', 'mwalimu', 'maalim', 'consultant', 'consult',\n      'college', 'university', 'lecturer', 'primary', 'secondary', 'daycare', 'babycare', 'baby care', 'elim', 'eimu', 'nursery',\n      'red cross', 'volunteer', 'instructor', 'journalist', 'lesson', 'academy', 'headmistress', 'headteacher', 'cyber', 'researcher',\n      'professor', 'demo', 'expert', 'tution', 'tuition', 'children', 'headmaster', 'educator', 'Marital counsellor', 'counsellor',\n      'trainer', 'vijana', 'youth', 'intern', 'redcross', 'KRCS', 'danish', 'science', 'data', 'facilitator', 'vitabu', 'kitabu']\n  },\n  {\n    name: 'faith',\n    products: ['pastor', 'imam', 'madrasa', 'religous', 'religious', 'ustadh', 'ustadhi', 'Marital counsellor', 'counsellor', 'church',\n      'kanisa', 'mksiti', 'donor']\n  },\n  {\n    name: 'government',\n    products: ['elder', 'chief', 'police', 'government', 'country', 'county', 'soldier', 'village admin', 'ward', 'leader', 'kra',\n      'mailman', 'immagration', 'immigration']\n  },\n  {\n    name: 'environment',\n    products: ['conservation', 'toilet', 'choo', 'garbage', 'fagio', 'waste', 'tree', 'taka', 'scrap', 'cleaning', 'gardener', 'rubbish',\n      'usafi', 'mazingira', 'miti', 'trash', 'cleaner', 'plastic', 'collection', 'seedling', 'seedlings', 'recycling']\n  },\n  {\n    name: 'farming',\n    products: ['farm', 'farmer', 'farming', 'mkulima', 'kulima', 'ukulima', 'wakulima', 'jembe', 'shamba']\n  },\n  {\n    name: 'labour',\n    products: ['artist', 'agent', 'guard', 'askari', 'accountant', 'baker', 'beadwork', 'beauty', 'business', 'barber', 'casual',\n      'electrian', 'caretaker', 'car wash', 'capenter', 'construction', 'chef', 'catering', 'cobler', 'cobbler', 'carwash', 'dhobi',\n      'landlord', 'design', 'carpenter', 'fundi', 'hawking', 'hawker', 'househelp', 'hsehelp', 'house help', 'help', 'housegirl', 'kushona',\n      'juakali', 'jualikali', 'juacali', 'jua kali', 'shepherd', 'makuti', 'kujenga', 'kinyozi', 'kazi', 'knitting', 'kufua', 'fua',\n      'hustler', 'biashara', 'labour', 'labor', 'laundry', 'repair', 'hair', 'posho', 'mill', 'mtambo', 'uvuvi', 'engineer', 'manager',\n      'tailor', 'nguo', 'mason', 'mtumba', 'garage', 'mechanic', 'mjenzi', 'mfugaji', 'painter', 'receptionist', 'printing', 'programming',\n      'plumb', 'charging', 'salon', 'mpishi', 'msusi', 'mgema', 'footballer', 'photocopy', 'peddler', 'staff', 'sales', 'service', 'saloon',\n      'seremala', 'security', 'insurance', 'secretary', 'shoe', 'shepard', 'shephard', 'tout', 'tv', 'mvuvi', 'mawe', 'majani', 'maembe',\n      'freelance', 'mjengo', 'electronics', 'photographer', 'programmer', 'electrician', 'washing', 'bricks', 'welder', 'welding',\n      'working', 'worker', 'watchman', 'waiter', 'waitress', 'viatu', 'yoga', 'guitarist', 'house', 'artisan', 'musician', 'trade',\n      'makonge', 'ujenzi', 'vendor', 'watchlady', 'marketing', 'beautician', 'photo', 'metal work', 'supplier', 'law firm', 'brewer']\n  },\n  {\n    name: 'food',\n    products: ['avocado', 'bhajia', 'bajia', 'mbonga', 'bofu', 'beans', 'biscuits', 'biringanya', 'banana', 'bananas', 'crisps', 'chakula',\n      'coconut', 'chapati', 'cereal', 'chipo', 'chapo', 'chai', 'chips', 'cassava', 'cake', 'cereals', 'cook', 'corn', 'coffee', 'chicken',\n      'dagaa', 'donut', 'dough', 'groundnuts', 'hotel', 'holel', 'hoteli', 'butcher', 'butchery', 'fruit', 'food', 'fruits', 'fish',\n      'githeri', 'grocery', 'grocer', 'pojo', 'papa', 'goats', 'mabenda', 'mbenda', 'poultry', 'soda', 'peanuts', 'potatoes', 'samosa',\n      'soko', 'samaki', 'tomato', 'tomatoes', 'mchele', 'matunda', 'mango', 'melon', 'mellon', 'nyanya', 'nyama', 'omena', 'umena', 'ndizi',\n      'njugu', 'kamba kamba', 'khaimati', 'kaimati', 'kunde', 'kuku', 'kahawa', 'keki', 'muguka', 'miraa', 'milk', 'choma', 'maziwa',\n      'mboga', 'mbog', 'busaa', 'chumvi', 'cabbages', 'mabuyu', 'machungwa', 'mbuzi', 'mnazi', 'mchicha', 'ngombe', 'ngano', 'nazi',\n      'oranges', 'peanuts', 'mkate', 'bread', 'mikate', 'vitungu', 'sausages', 'maize', 'mbata', 'mchuzi', 'mchuuzi', 'mandazi', 'mbaazi',\n      'mahindi', 'maandazi', 'mogoka', 'meat', 'mhogo', 'mihogo', 'muhogo', 'maharagwe', 'miwa', 'mahamri', 'mitumba', 'simsim', 'porridge',\n      'pilau', 'vegetable', 'egg', 'mayai', 'mifugo', 'unga', 'good', 'sima', 'sweet', 'sweats', 'sambusa', 'snacks', 'sugar', 'suger',\n      'ugoro', 'sukari', 'soup', 'spinach', 'smokie', 'smokies', 'sukuma', 'tea', 'uji', 'ugali', 'uchuzi', 'uchuuzi', 'viazi', 'yoghurt',\n      'yogurt', 'wine', 'marondo', 'maandzi', 'matoke', 'omeno', 'onions', 'nzugu', 'korosho', 'barafu', 'juice']\n  },\n  {\n    name: 'water',\n    products: ['maji', 'water']\n  },\n  {\n    name: 'health',\n    products: ['agrovet', 'dispensary', 'barakoa', 'chemist', 'Chemicals', 'chv', 'doctor', 'daktari', 'dawa', 'hospital', 'herbalist',\n      'mganga', 'sabuni', 'soap', 'nurse', 'heath', 'community health worker', 'clinic', 'clinical', 'mask', 'medicine', 'lab technician',\n      'pharmacy', 'cosmetics', 'veterinary', 'vet', 'sickly', 'emergency response', 'emergency']\n  },\n  {\n    name: 'savings',\n    products: ['chama', 'group', 'savings', 'loan', 'silc', 'vsla', 'credit', 'finance']\n  },\n  {\n    name: 'shop',\n    products: ['bag', 'bead', 'belt', 'bedding', 'jik', 'bed', 'cement', 'botique', 'boutique', 'lines', 'kibanda', 'kiosk', 'spareparts',\n      'candy', 'cloth', 'electricals', 'mutumba', 'cafe', 'leso', 'lesso', 'duka', 'spare parts', 'socks', 'malimali', 'mitungi',\n      'mali mali', 'hardware', 'detergent', 'detergents', 'dera', 'retail', 'kamba', 'pombe', 'pampers', 'pool', 'phone', 'simu', 'mangwe',\n      'mikeka', 'movie', 'shop', 'acces', 'mchanga', 'uto', 'airtime', 'matress', 'mattress', 'mattresses', 'mpsea', 'mpesa', 'shirt',\n      'wholesaler', 'perfume', 'playstation', 'tissue', 'vikapu', 'uniform', 'flowers', 'vitenge', 'utencils', 'utensils', 'station',\n      'jewel', 'pool table', 'club', 'pub', 'bar', 'furniture', 'm-pesa', 'vyombo']\n  },\n  {\n    name: 'transport',\n    products: ['kebeba', 'beba', 'bebabeba', 'bike', 'bicycle', 'matatu', 'boda', 'bodaboda', 'cart', 'carrier', 'tour', 'travel', 'driver',\n      'dereva', 'tout', 'conductor', 'kubeba', 'tuktuk', 'taxi', 'piki', 'pikipiki', 'manamba', 'trasportion', 'mkokoteni', 'mover',\n      'motorist', 'motorbike', 'transport', 'transpoter', 'gari', 'magari', 'makanga', 'car']\n  },\n  {\n    name: 'fuel/energy',\n    products: ['timber', 'timberyard', 'biogas', 'charcol', 'charcoal', 'kuni', 'mbao', 'fuel', 'makaa', 'mafuta', 'moto', 'solar', 'stima',\n      'fire', 'firewood', 'wood', 'oil', 'taa', 'gas', 'paraffin', 'parrafin', 'parafin', 'petrol', 'petro', 'kerosine', 'kerosene',\n      'diesel']\n  },\n  {\n    name: 'other',\n    products: ['other', 'none', 'unknown', 'none']\n  }\n];\n\n/** A mock of curated genders */\nconst genders: Array = ['male', 'female', 'other'];\n\n/** A mock of the tokens in the system. */\nconst tokens: Array = [\n  {\n    name: 'Giftable Reserve', symbol: 'GRZ', address: '0xa686005CE37Dce7738436256982C3903f2E4ea8E', supply: '1000000001000000000000000000',\n    decimals: '18', reserves: {}\n  },\n  {\n    name: 'Demo Token', symbol: 'DEMO', address: '0xc80D6aFF8194114c52AEcD84c9f15fd5c8abb187', supply: '99999999999999998976',\n    decimals: '18', reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '99999999999999998976'}},\n    reserveRatio: '1000000', owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'\n  },\n  {\n    name: 'Foo Token', symbol: 'FOO', address: '0x9ceD86089f7aBB5A97B40eb0E7521e7aa308d354', supply: '1000000000000000001014',\n    decimals: '18', reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '1000000000000000001014'}},\n    reserveRatio: '1000000', owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'\n  },\n  {\n    name: 'testb', symbol: 'tstb', address: '0xC63cFA91A3BFf41cE31Ff436f67D3ACBC977DB95', supply: '99000', decimals: '18',\n    reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '99000'}}, reserveRatio: '1000000',\n    owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'\n  },\n  {\n    name: 'testa', symbol: 'tsta', address: '0x8fA4101ef19D0a078239d035659e92b278bD083C', supply: '9981', decimals: '18',\n    reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '9981'}}, reserveRatio: '1000000',\n    owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'\n  },\n  {\n    name: 'testc', symbol: 'tstc', address: '0x4A6fA6bc3BfE4C9661bC692D9798425350C9e3D4', supply: '100990', decimals: '18',\n    reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '100990'}}, reserveRatio: '1000000',\n    owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'\n  }\n];\n\n/** A mock of curated  transaction types. */\nconst transactionTypes: Array = ['transactions', 'conversions', 'disbursements', 'rewards', 'reclamation'];\n\n/**\n * Intercepts HTTP requests and handles some specified requests internally.\n * Provides a backend that can handle requests for certain data items.\n *\n * @implements HttpInterceptor\n */\n@Injectable()\nexport class MockBackendInterceptor implements HttpInterceptor {\n  /**\n   * Intercepts HTTP requests.\n   *\n   * @param request - An outgoing HTTP request with an optional typed body.\n   * @param next - The next HTTP handler or the outgoing request dispatcher.\n   * @returns The response from the resolved request.\n   */\n  intercept(request: HttpRequest, next: HttpHandler): Observable> {\n    const { url, method, headers, body } = request;\n\n    // wrap in delayed observable to simulate server api call\\\n    // call materialize and dematerialize to ensure delay even is thrown\n    return of(null)\n      .pipe(mergeMap(handleRoute))\n      .pipe(materialize())\n      .pipe(delay(500))\n      .pipe(dematerialize());\n\n    /** Forward requests from select routes to their internal handlers. */\n    function handleRoute(): Observable {\n      switch (true) {\n        case url.endsWith('/accounttypes') && method === 'GET':\n          return getAccountTypes();\n        case url.endsWith('/actions') && method === 'GET':\n          return getActions();\n        case url.match(/\\/actions\\/\\d+$/) && method === 'GET':\n          return getActionById();\n        case url.match(/\\/actions\\/\\d+$/) && method === 'POST':\n          return approveAction();\n        case url.endsWith('/areanames') && method === 'GET':\n          return getAreaNames();\n        case url.match(/\\/areanames\\/\\w+$/) && method === 'GET':\n          return getAreaNameByLocation();\n        case url.endsWith('/areatypes') && method === 'GET':\n          return getAreaTypes();\n        case url.match(/\\/areatypes\\/\\w+$/) && method === 'GET':\n          return getAreaTypeByArea();\n        case url.endsWith('/categories') && method === 'GET':\n          return getCategories();\n        case url.match(/\\/categories\\/\\w+$/) && method === 'GET':\n          return getCategoryByProduct();\n        case url.endsWith('/genders') && method === 'GET':\n          return getGenders();\n        case url.endsWith('/tokens') && method === 'GET':\n          return getTokens();\n        case url.match(/\\/tokens\\/\\w+$/) && method === 'GET':\n          return getTokenBySymbol();\n        case url.endsWith('/transactiontypes') && method === 'GET':\n          return getTransactionTypes();\n        default:\n          // pass through any requests not handled above\n          return next.handle(request);\n      }\n    }\n\n    // route functions\n\n    function approveAction(): Observable> {\n      const queriedAction: Action = actions.find(action => action.id === idFromUrl());\n      queriedAction.approval = body.approval;\n      const message: string = `Action approval status set to ${body.approval} successfully!`;\n      return ok(message);\n    }\n\n    function getAccountTypes(): Observable> {\n      return ok(accountTypes);\n    }\n\n    function getActions(): Observable> {\n      return ok(actions);\n    }\n\n    function getActionById(): Observable> {\n      const queriedAction: Action = actions.find(action => action.id === idFromUrl());\n      return ok(queriedAction);\n    }\n\n    function getAreaNames(): Observable> {\n      const areaNameList: Array = areaNames.map(areaName => areaName.name);\n      return ok(areaNameList);\n    }\n\n    function getAreaNameByLocation(): Observable> {\n      const queriedAreaName: AreaName = areaNames.find(areaName => areaName.locations.includes(stringFromUrl()));\n      return ok(queriedAreaName.name);\n    }\n\n    function getAreaTypes(): Observable> {\n      const areaTypeList: Array = areaTypes.map(areaType => areaType.name);\n      return ok(areaTypeList);\n    }\n\n    function getAreaTypeByArea(): Observable> {\n      const queriedAreaType: AreaType = areaTypes.find(areaType => areaType.area.includes(stringFromUrl()));\n      return ok(queriedAreaType.name);\n    }\n\n    function getCategories(): Observable> {\n      const categoryList: Array = categories.map(category => category.name);\n      return ok(categoryList);\n    }\n\n    function getCategoryByProduct(): Observable> {\n      const queriedCategory: Category = categories.find(category => category.products.includes(stringFromUrl()));\n      return ok(queriedCategory.name);\n    }\n\n    function getGenders(): Observable> {\n      return ok(genders);\n    }\n\n    function getTokens(): Observable> {\n      return ok(tokens);\n    }\n\n    function getTokenBySymbol(): Observable> {\n      const queriedToken: Token = tokens.find(token => token.symbol === stringFromUrl());\n      return ok(queriedToken);\n    }\n\n    function getTransactionTypes(): Observable> {\n      return ok(transactionTypes);\n    }\n\n    // helper functions\n\n    function error(message): Observable {\n      return throwError({ status: 400, error: { message } });\n    }\n\n    function idFromUrl(): number {\n      const urlParts: Array = url.split('/');\n      return parseInt(urlParts[urlParts.length - 1], 10);\n    }\n\n    function ok(responseBody: any): Observable> {\n      return of(new HttpResponse({ status: 200, body: responseBody }));\n    }\n\n    function stringFromUrl(): string {\n      const urlParts: Array = url.split('/');\n      return urlParts[urlParts.length - 1];\n    }\n  }\n}\n\n/**\n * Exports the MockBackendInterceptor as an Angular provider.\n *\n * @exports\n */\nexport const MockBackendProvider = {\n  provide: HTTP_INTERCEPTORS,\n  useClass: MockBackendInterceptor,\n  multi: true\n};\n\n    \n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"interfaces/MutableKeyStore.html":{"url":"interfaces/MutableKeyStore.html","title":"interface - MutableKeyStore","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n\n  Interfaces\n  MutableKeyStore\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_pgp/pgp-key-store.ts\n        \n\n\n            \n                Extends\n            \n            \n                    KeyStore\n            \n\n        \n            Index\n            \n                \n                    \n                        \n                            Methods\n                        \n                    \n                    \n                        \n                            \n                                \n                                    clearKeysInKeyring\n                                \n                                \n                                    getEncryptKeys\n                                \n                                \n                                    getFingerprint\n                                \n                                \n                                    getKeyId\n                                \n                                \n                                    getKeysForId\n                                \n                                \n                                    getPrivateKey\n                                \n                                \n                                    getPrivateKeyForId\n                                \n                                \n                                    getPrivateKeyId\n                                \n                                \n                                    getPrivateKeys\n                                \n                                \n                                    getPublicKeyForId\n                                \n                                \n                                    getPublicKeyForSubkeyId\n                                \n                                \n                                    getPublicKeys\n                                \n                                \n                                    getPublicKeysForAddress\n                                \n                                \n                                    getTrustedActiveKeys\n                                \n                                \n                                    getTrustedKeys\n                                \n                                \n                                    importKeyPair\n                                \n                                \n                                    importPrivateKey\n                                \n                                \n                                    importPublicKey\n                                \n                                \n                                    isEncryptedPrivateKey\n                                \n                                \n                                    isValidKey\n                                \n                                \n                                    loadKeyring\n                                \n                                \n                                    removeKeysForId\n                                \n                                \n                                    removePublicKey\n                                \n                                \n                                    removePublicKeyForId\n                                \n                                \n                                    sign\n                                \n                            \n                        \n                    \n                \n            \n        \n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            clearKeysInKeyring\n                        \n                        \n                    \n                \n            \n            \n                \nclearKeysInKeyring()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:33\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getEncryptKeys\n                        \n                        \n                    \n                \n            \n            \n                \ngetEncryptKeys()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:17\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Array\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getFingerprint\n                        \n                        \n                    \n                \n            \n            \n                \ngetFingerprint()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:22\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         string\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getKeyId\n                        \n                        \n                    \n                \n            \n            \n                \ngetKeyId(key: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:23\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    key\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         string\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getKeysForId\n                        \n                        \n                    \n                \n            \n            \n                \ngetKeysForId(keyId: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:25\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    keyId\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Array\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getPrivateKey\n                        \n                        \n                    \n                \n            \n            \n                \ngetPrivateKey()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:19\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         any\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getPrivateKeyForId\n                        \n                        \n                    \n                \n            \n            \n                \ngetPrivateKeyForId(keyId: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:27\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    keyId\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         any\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getPrivateKeyId\n                        \n                        \n                    \n                \n            \n            \n                \ngetPrivateKeyId()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:24\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         string\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getPrivateKeys\n                        \n                        \n                    \n                \n            \n            \n                \ngetPrivateKeys()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:18\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Array\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getPublicKeyForId\n                        \n                        \n                    \n                \n            \n            \n                \ngetPublicKeyForId(keyId: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:26\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    keyId\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         any\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getPublicKeyForSubkeyId\n                        \n                        \n                    \n                \n            \n            \n                \ngetPublicKeyForSubkeyId(subkeyId: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:28\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    subkeyId\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         any\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getPublicKeys\n                        \n                        \n                    \n                \n            \n            \n                \ngetPublicKeys()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:14\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Array\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getPublicKeysForAddress\n                        \n                        \n                    \n                \n            \n            \n                \ngetPublicKeysForAddress(address: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:29\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    address\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Array\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getTrustedActiveKeys\n                        \n                        \n                    \n                \n            \n            \n                \ngetTrustedActiveKeys()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:16\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Array\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getTrustedKeys\n                        \n                        \n                    \n                \n            \n            \n                \ngetTrustedKeys()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:15\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Array\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            importKeyPair\n                        \n                        \n                    \n                \n            \n            \n                \nimportKeyPair(publicKey: any, privateKey: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:11\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    publicKey\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    privateKey\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            importPrivateKey\n                        \n                        \n                    \n                \n            \n            \n                \nimportPrivateKey(privateKey: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:13\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    privateKey\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            importPublicKey\n                        \n                        \n                    \n                \n            \n            \n                \nimportPublicKey(publicKey: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:12\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    publicKey\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            isEncryptedPrivateKey\n                        \n                        \n                    \n                \n            \n            \n                \nisEncryptedPrivateKey(privateKey: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:21\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    privateKey\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            isValidKey\n                        \n                        \n                    \n                \n            \n            \n                \nisValidKey(key: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:20\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    key\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            loadKeyring\n                        \n                        \n                    \n                \n            \n            \n                \nloadKeyring()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:10\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            removeKeysForId\n                        \n                        \n                    \n                \n            \n            \n                \nremoveKeysForId(keyId: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:30\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    keyId\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Array\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            removePublicKey\n                        \n                        \n                    \n                \n            \n            \n                \nremovePublicKey(publicKey: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:32\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    publicKey\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         any\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            removePublicKeyForId\n                        \n                        \n                    \n                \n            \n            \n                \nremovePublicKeyForId(keyId: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:31\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    keyId\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         any\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            sign\n                        \n                        \n                    \n                \n            \n            \n                \nsign(plainText: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:34\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    plainText\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n\n    \n\n\n    \n        import { KeyStore } from 'cic-client-meta';\n// TODO should we put this on the mutable key store object\nimport * as openpgp from 'openpgp';\nconst keyring = new openpgp.Keyring();\n\n/**\n * @extends\n */\ninterface MutableKeyStore extends KeyStore {\n  loadKeyring(): void;\n  importKeyPair(publicKey: any, privateKey: any): Promise;\n  importPublicKey(publicKey: any): void;\n  importPrivateKey(privateKey: any): Promise;\n  getPublicKeys(): Array;\n  getTrustedKeys(): Array;\n  getTrustedActiveKeys(): Array;\n  getEncryptKeys(): Array;\n  getPrivateKeys(): Array;\n  getPrivateKey(): any;\n  isValidKey(key: any): Promise;\n  isEncryptedPrivateKey(privateKey: any): Promise;\n  getFingerprint(): string;\n  getKeyId(key: any): string;\n  getPrivateKeyId(): string;\n  getKeysForId(keyId: string): Array;\n  getPublicKeyForId(keyId: string): any;\n  getPrivateKeyForId(keyId: string): any;\n  getPublicKeyForSubkeyId(subkeyId: string): any;\n  getPublicKeysForAddress(address: string): Array;\n  removeKeysForId(keyId: string): Array;\n  removePublicKeyForId(keyId: string): any;\n  removePublicKey(publicKey: any): any;\n  clearKeysInKeyring(): void;\n  sign(plainText: string): Promise;\n}\n\n/**\n * @implements\n */\nclass MutablePgpKeyStore implements MutableKeyStore{\n\n  async loadKeyring(): Promise {\n    await keyring.load();\n    await keyring.store();\n  }\n\n  async importKeyPair(publicKey: any, privateKey: any): Promise {\n    await keyring.publicKeys.importKey(publicKey);\n    await keyring.privateKeys.importKey(privateKey);\n  }\n\n  importPublicKey(publicKey: any): void {\n    keyring.publicKeys.importKey(publicKey);\n  }\n\n  async importPrivateKey(privateKey: any): Promise {\n    await keyring.privateKeys.importKey(privateKey);\n  }\n\n  getPublicKeys(): Array {\n    return keyring.publicKeys.keys;\n  }\n\n  getTrustedKeys(): Array {\n    return keyring.publicKeys.keys;\n  }\n\n  getTrustedActiveKeys(): Array {\n    return keyring.publicKeys.keys;\n  }\n\n  getEncryptKeys(): Array {\n    return [];\n  }\n\n  getPrivateKeys(): Array {\n    return keyring.privateKeys.keys;\n  }\n\n  getPrivateKey(): any {\n    return keyring.privateKeys && keyring.privateKeys.keys[0];\n  }\n\n  async isValidKey(key): Promise {\n    // There is supposed to be an openpgp.readKey() method but I can't find it?\n    const _key = await openpgp.key.readArmored(key);\n    return !_key.err;\n  }\n\n  async isEncryptedPrivateKey(privateKey: any): Promise {\n    const imported = await openpgp.key.readArmored(privateKey);\n    for (const key of imported.keys) {\n      if (key.isDecrypted()) {\n        return false;\n      }\n    }\n    return true;\n  }\n\n  getFingerprint(): string {\n    // TODO Handle multiple keys\n    return keyring.privateKeys && keyring.privateKeys.keys[0] && keyring.privateKeys.keys[0].keyPacket &&\n      keyring.privateKeys.keys[0].keyPacket.fingerprint;\n  }\n\n  getKeyId(key: any): string {\n    return key.getKeyId().toHex();\n  }\n\n  getPrivateKeyId(): string {\n    // TODO is there a library that comes with angular for doing this?\n    return keyring.privateKeys && keyring.privateKeys.keys[0] && keyring.privateKeys.keys[0].getKeyId().toHex();\n  }\n\n  getKeysForId(keyId: string): Array {\n    return keyring.getKeysForId(keyId);\n  }\n\n  getPublicKeyForId(keyId): any {\n    return keyring.publicKeys.getForId(keyId);\n  }\n\n  getPrivateKeyForId(keyId): any {\n    return keyring.privateKeys.getForId(keyId);\n  }\n\n  getPublicKeyForSubkeyId(subkeyId): any {\n    return keyring.publicKeys.getForId(subkeyId, true);\n  }\n\n  getPublicKeysForAddress(address): Array {\n    return keyring.publicKeys.getForAddress(address);\n  }\n\n  removeKeysForId(keyId): Array {\n    return keyring.removeKeysForId(keyId);\n  }\n\n  removePublicKeyForId(keyId): any {\n    return keyring.publicKeys.removeForId(keyId);\n  }\n\n  removePublicKey(publicKey: any): any {\n    const keyId =  publicKey.getKeyId().toHex();\n    return keyring.publicKeys.removeForId(keyId);\n  }\n\n  clearKeysInKeyring(): void {\n    keyring.clear();\n  }\n\n  async sign(plainText): Promise {\n    const privateKey = this.getPrivateKey();\n    if (!privateKey.isDecrypted()) {\n      const password = window.prompt('password');\n      await privateKey.decrypt(password);\n    }\n    const opts = {\n      message: openpgp.message.fromText(plainText),\n      privateKeys: [privateKey],\n      detached: true,\n    };\n    const signatureObject = await openpgp.sign(opts);\n    return signatureObject.signature;\n  }\n}\n\nexport {\n  MutablePgpKeyStore,\n  MutableKeyStore\n};\n\n    \n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"classes/MutablePgpKeyStore.html":{"url":"classes/MutablePgpKeyStore.html","title":"class - MutablePgpKeyStore","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n  Classes\n  MutablePgpKeyStore\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_pgp/pgp-key-store.ts\n        \n\n\n\n            \n                Implements\n            \n            \n                            MutableKeyStore\n            \n\n            \n                Example\n            \n            \n            \n\n            \n    Index\n    \n        \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                clearKeysInKeyring\n                            \n                            \n                                getEncryptKeys\n                            \n                            \n                                getFingerprint\n                            \n                            \n                                getKeyId\n                            \n                            \n                                getKeysForId\n                            \n                            \n                                getPrivateKey\n                            \n                            \n                                getPrivateKeyForId\n                            \n                            \n                                getPrivateKeyId\n                            \n                            \n                                getPrivateKeys\n                            \n                            \n                                getPublicKeyForId\n                            \n                            \n                                getPublicKeyForSubkeyId\n                            \n                            \n                                getPublicKeys\n                            \n                            \n                                getPublicKeysForAddress\n                            \n                            \n                                getTrustedActiveKeys\n                            \n                            \n                                getTrustedKeys\n                            \n                            \n                                    Async\n                                importKeyPair\n                            \n                            \n                                    Async\n                                importPrivateKey\n                            \n                            \n                                importPublicKey\n                            \n                            \n                                    Async\n                                isEncryptedPrivateKey\n                            \n                            \n                                    Async\n                                isValidKey\n                            \n                            \n                                    Async\n                                loadKeyring\n                            \n                            \n                                removeKeysForId\n                            \n                            \n                                removePublicKey\n                            \n                            \n                                removePublicKeyForId\n                            \n                            \n                                    Async\n                                sign\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            clearKeysInKeyring\n                        \n                        \n                    \n                \n            \n            \n                \nclearKeysInKeyring()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:148\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getEncryptKeys\n                        \n                        \n                    \n                \n            \n            \n                \ngetEncryptKeys()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:72\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Array\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getFingerprint\n                        \n                        \n                    \n                \n            \n            \n                \ngetFingerprint()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:100\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         string\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getKeyId\n                        \n                        \n                    \n                \n            \n            \n                \ngetKeyId(key: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:106\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    key\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         string\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getKeysForId\n                        \n                        \n                    \n                \n            \n            \n                \ngetKeysForId(keyId: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:115\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    keyId\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Array\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getPrivateKey\n                        \n                        \n                    \n                \n            \n            \n                \ngetPrivateKey()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:80\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         any\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getPrivateKeyForId\n                        \n                        \n                    \n                \n            \n            \n                \ngetPrivateKeyForId(keyId)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:123\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Optional\n                                \n                            \n                            \n                                \n                                    keyId\n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         any\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getPrivateKeyId\n                        \n                        \n                    \n                \n            \n            \n                \ngetPrivateKeyId()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:110\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         string\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getPrivateKeys\n                        \n                        \n                    \n                \n            \n            \n                \ngetPrivateKeys()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:76\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Array\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getPublicKeyForId\n                        \n                        \n                    \n                \n            \n            \n                \ngetPublicKeyForId(keyId)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:119\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Optional\n                                \n                            \n                            \n                                \n                                    keyId\n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         any\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getPublicKeyForSubkeyId\n                        \n                        \n                    \n                \n            \n            \n                \ngetPublicKeyForSubkeyId(subkeyId)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:127\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Optional\n                                \n                            \n                            \n                                \n                                    subkeyId\n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         any\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getPublicKeys\n                        \n                        \n                    \n                \n            \n            \n                \ngetPublicKeys()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:60\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Array\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getPublicKeysForAddress\n                        \n                        \n                    \n                \n            \n            \n                \ngetPublicKeysForAddress(address)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:131\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Optional\n                                \n                            \n                            \n                                \n                                    address\n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Array\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getTrustedActiveKeys\n                        \n                        \n                    \n                \n            \n            \n                \ngetTrustedActiveKeys()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:68\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Array\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getTrustedKeys\n                        \n                        \n                    \n                \n            \n            \n                \ngetTrustedKeys()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:64\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Array\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            importKeyPair\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    importKeyPair(publicKey: any, privateKey: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:47\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    publicKey\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    privateKey\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            importPrivateKey\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    importPrivateKey(privateKey: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:56\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    privateKey\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            importPublicKey\n                        \n                        \n                    \n                \n            \n            \n                \nimportPublicKey(publicKey: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:52\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    publicKey\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            isEncryptedPrivateKey\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    isEncryptedPrivateKey(privateKey: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:90\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    privateKey\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            isValidKey\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    isValidKey(key)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:84\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Optional\n                                \n                            \n                            \n                                \n                                    key\n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            loadKeyring\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    loadKeyring()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:42\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Promise\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            removeKeysForId\n                        \n                        \n                    \n                \n            \n            \n                \nremoveKeysForId(keyId)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:135\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Optional\n                                \n                            \n                            \n                                \n                                    keyId\n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Array\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            removePublicKey\n                        \n                        \n                    \n                \n            \n            \n                \nremovePublicKey(publicKey: any)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:143\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    publicKey\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         any\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            removePublicKeyForId\n                        \n                        \n                    \n                \n            \n            \n                \nremovePublicKeyForId(keyId)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:139\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Optional\n                                \n                            \n                            \n                                \n                                    keyId\n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         any\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            sign\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    sign(plainText)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-key-store.ts:152\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Optional\n                                \n                            \n                            \n                                \n                                    plainText\n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n\n\n\n\n\n    \n\n\n    \n        import { KeyStore } from 'cic-client-meta';\n// TODO should we put this on the mutable key store object\nimport * as openpgp from 'openpgp';\nconst keyring = new openpgp.Keyring();\n\n/**\n * @extends\n */\ninterface MutableKeyStore extends KeyStore {\n  loadKeyring(): void;\n  importKeyPair(publicKey: any, privateKey: any): Promise;\n  importPublicKey(publicKey: any): void;\n  importPrivateKey(privateKey: any): Promise;\n  getPublicKeys(): Array;\n  getTrustedKeys(): Array;\n  getTrustedActiveKeys(): Array;\n  getEncryptKeys(): Array;\n  getPrivateKeys(): Array;\n  getPrivateKey(): any;\n  isValidKey(key: any): Promise;\n  isEncryptedPrivateKey(privateKey: any): Promise;\n  getFingerprint(): string;\n  getKeyId(key: any): string;\n  getPrivateKeyId(): string;\n  getKeysForId(keyId: string): Array;\n  getPublicKeyForId(keyId: string): any;\n  getPrivateKeyForId(keyId: string): any;\n  getPublicKeyForSubkeyId(subkeyId: string): any;\n  getPublicKeysForAddress(address: string): Array;\n  removeKeysForId(keyId: string): Array;\n  removePublicKeyForId(keyId: string): any;\n  removePublicKey(publicKey: any): any;\n  clearKeysInKeyring(): void;\n  sign(plainText: string): Promise;\n}\n\n/**\n * @implements\n */\nclass MutablePgpKeyStore implements MutableKeyStore{\n\n  async loadKeyring(): Promise {\n    await keyring.load();\n    await keyring.store();\n  }\n\n  async importKeyPair(publicKey: any, privateKey: any): Promise {\n    await keyring.publicKeys.importKey(publicKey);\n    await keyring.privateKeys.importKey(privateKey);\n  }\n\n  importPublicKey(publicKey: any): void {\n    keyring.publicKeys.importKey(publicKey);\n  }\n\n  async importPrivateKey(privateKey: any): Promise {\n    await keyring.privateKeys.importKey(privateKey);\n  }\n\n  getPublicKeys(): Array {\n    return keyring.publicKeys.keys;\n  }\n\n  getTrustedKeys(): Array {\n    return keyring.publicKeys.keys;\n  }\n\n  getTrustedActiveKeys(): Array {\n    return keyring.publicKeys.keys;\n  }\n\n  getEncryptKeys(): Array {\n    return [];\n  }\n\n  getPrivateKeys(): Array {\n    return keyring.privateKeys.keys;\n  }\n\n  getPrivateKey(): any {\n    return keyring.privateKeys && keyring.privateKeys.keys[0];\n  }\n\n  async isValidKey(key): Promise {\n    // There is supposed to be an openpgp.readKey() method but I can't find it?\n    const _key = await openpgp.key.readArmored(key);\n    return !_key.err;\n  }\n\n  async isEncryptedPrivateKey(privateKey: any): Promise {\n    const imported = await openpgp.key.readArmored(privateKey);\n    for (const key of imported.keys) {\n      if (key.isDecrypted()) {\n        return false;\n      }\n    }\n    return true;\n  }\n\n  getFingerprint(): string {\n    // TODO Handle multiple keys\n    return keyring.privateKeys && keyring.privateKeys.keys[0] && keyring.privateKeys.keys[0].keyPacket &&\n      keyring.privateKeys.keys[0].keyPacket.fingerprint;\n  }\n\n  getKeyId(key: any): string {\n    return key.getKeyId().toHex();\n  }\n\n  getPrivateKeyId(): string {\n    // TODO is there a library that comes with angular for doing this?\n    return keyring.privateKeys && keyring.privateKeys.keys[0] && keyring.privateKeys.keys[0].getKeyId().toHex();\n  }\n\n  getKeysForId(keyId: string): Array {\n    return keyring.getKeysForId(keyId);\n  }\n\n  getPublicKeyForId(keyId): any {\n    return keyring.publicKeys.getForId(keyId);\n  }\n\n  getPrivateKeyForId(keyId): any {\n    return keyring.privateKeys.getForId(keyId);\n  }\n\n  getPublicKeyForSubkeyId(subkeyId): any {\n    return keyring.publicKeys.getForId(subkeyId, true);\n  }\n\n  getPublicKeysForAddress(address): Array {\n    return keyring.publicKeys.getForAddress(address);\n  }\n\n  removeKeysForId(keyId): Array {\n    return keyring.removeKeysForId(keyId);\n  }\n\n  removePublicKeyForId(keyId): any {\n    return keyring.publicKeys.removeForId(keyId);\n  }\n\n  removePublicKey(publicKey: any): any {\n    const keyId =  publicKey.getKeyId().toHex();\n    return keyring.publicKeys.removeForId(keyId);\n  }\n\n  clearKeysInKeyring(): void {\n    keyring.clear();\n  }\n\n  async sign(plainText): Promise {\n    const privateKey = this.getPrivateKey();\n    if (!privateKey.isDecrypted()) {\n      const password = window.prompt('password');\n      await privateKey.decrypt(password);\n    }\n    const opts = {\n      message: openpgp.message.fromText(plainText),\n      privateKeys: [privateKey],\n      detached: true,\n    };\n    const signatureObject = await openpgp.sign(opts);\n    return signatureObject.signature;\n  }\n}\n\nexport {\n  MutablePgpKeyStore,\n  MutableKeyStore\n};\n\n    \n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"components/OrganizationComponent.html":{"url":"components/OrganizationComponent.html","title":"component - OrganizationComponent","body":"\n                   \n\n\n\n\n\n  Components\n  OrganizationComponent\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n        \n            Template\n        \n        \n            Styles\n        \n        \n            DOM Tree\n        \n\n\n\n    \n    File\n\n\n    src/app/pages/settings/organization/organization.component.ts\n\n\n\n\n    \n        Implements\n    \n    \n                    OnInit\n    \n\n\n\n    Metadata\n    \n        \n\n            \n                changeDetection\n                ChangeDetectionStrategy.OnPush\n            \n\n\n\n\n\n\n\n\n\n\n            \n                selector\n                app-organization\n            \n\n            \n                styleUrls\n                ./organization.component.scss\n            \n\n\n\n            \n                templateUrl\n                ./organization.component.html\n            \n\n\n\n\n\n\n\n\n        \n    \n\n\n    \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                matcher\n                            \n                            \n                                organizationForm\n                            \n                            \n                                submitted\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                ngOnInit\n                            \n                            \n                                onSubmit\n                            \n                        \n                    \n                \n\n\n\n\n\n                    \n                        \n                            Accessors\n                        \n                    \n                    \n                        \n                            \n                                \n                                    organizationFormStub\n                                \n                            \n                        \n                    \n        \n    \n\n\n    \n    Constructor\n        \n            \n                \n                    \nconstructor(formBuilder: FormBuilder)\n                    \n                \n                        \n                            \n                                Defined in src/app/pages/settings/organization/organization.component.ts:14\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        formBuilder\n                                                  \n                                                        \n                                                                        FormBuilder\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n\n\n\n\n    \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            ngOnInit\n                        \n                        \n                    \n                \n            \n            \n                \nngOnInit()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/settings/organization/organization.component.ts:20\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            onSubmit\n                        \n                        \n                    \n                \n            \n            \n                \nonSubmit()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/settings/organization/organization.component.ts:30\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n\n    \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            matcher\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         CustomErrorStateMatcher\n\n                        \n                    \n                    \n                        \n                            Default value : new CustomErrorStateMatcher()\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/settings/organization/organization.component.ts:14\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            organizationForm\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         FormGroup\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/settings/organization/organization.component.ts:12\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            submitted\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         boolean\n\n                        \n                    \n                    \n                        \n                            Default value : false\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/settings/organization/organization.component.ts:13\n                            \n                        \n\n\n            \n        \n\n\n    \n    \n        Accessors\n    \n        \n            \n                \n                    \n                        \n                        organizationFormStub\n                    \n                \n\n                \n                    \n                        getorganizationFormStub()\n                    \n                \n                            \n                                \n                                    Defined in src/app/pages/settings/organization/organization.component.ts:28\n                                \n                            \n\n            \n        \n\n\n\n\n    \n        import {ChangeDetectionStrategy, Component, OnInit} from '@angular/core';\nimport {FormBuilder, FormGroup, Validators} from '@angular/forms';\nimport {CustomErrorStateMatcher} from '@app/_helpers';\n\n@Component({\n  selector: 'app-organization',\n  templateUrl: './organization.component.html',\n  styleUrls: ['./organization.component.scss'],\n  changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class OrganizationComponent implements OnInit {\n  organizationForm: FormGroup;\n  submitted: boolean = false;\n  matcher: CustomErrorStateMatcher = new CustomErrorStateMatcher();\n\n  constructor(\n    private formBuilder: FormBuilder\n  ) { }\n\n  ngOnInit(): void {\n    this.organizationForm = this.formBuilder.group({\n      disbursement: ['', Validators.required],\n      transfer: '',\n      countryCode: ['', Validators.required]\n    });\n  }\n\n  get organizationFormStub(): any { return this.organizationForm.controls; }\n\n  onSubmit(): void {\n    this.submitted = true;\n    if (this.organizationForm.invalid || !confirm('Set organization information?')) { return; }\n    this.submitted = false;\n  }\n}\n\n    \n\n    \n        \n\n  \n\n  \n  \n  \n\n  \n    \n    \n    \n      \n        \n          Home\n          Settings\n          Organization Settings\n        \n      \n      \n        \n          \n            DEFAULT ORGANISATION SETTINGS\n          \n          \n            \n              \n                Default Disbursement *\n                \n                RCU\n                \n                  Default Disbursement is required.\n                \n              \n              \n                Require Transfer Card *\n              \n              \n                Default Country Code *\n                \n                  KE Kenya\n                  US United States\n                  ETH Ethiopia\n                  GER Germany\n                  UG Uganda\n                \n                \n                  Country Code is required.\n                \n              \n              Submit\n            \n          \n        \n      \n    \n    \n  \n  \n  \n  \n\n\n    \n\n    \n                \n                    ./organization.component.scss\n                \n                \n    \n\n    \n        \n        \n            \n                Legend\n            \n            \n                Html element\n            \n            \n                Component\n            \n            \n                Html element with directive\n            \n        \n    \n\n    \n\n\n\n\n\n\n        var COMPONENT_TEMPLATE = '                                              Home          Settings          Organization Settings                                                  DEFAULT ORGANISATION SETTINGS                                                              Default Disbursement *                                RCU                                  Default Disbursement is required.                                                            Require Transfer Card *                                            Default Country Code *                                  KE Kenya                  US United States                  ETH Ethiopia                  GER Germany                  UG Uganda                                                  Country Code is required.                                            Submit                                                    '\n    var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n    var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[routerLink]'}];\n    var ACTUAL_COMPONENT = {'name': 'OrganizationComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"classes/PGPSigner.html":{"url":"classes/PGPSigner.html","title":"class - PGPSigner","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n  Classes\n  PGPSigner\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_pgp/pgp-signer.ts\n        \n\n\n\n            \n                Implements\n            \n            \n                            Signer\n            \n\n\n            \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                algo\n                            \n                            \n                                dgst\n                            \n                            \n                                engine\n                            \n                            \n                                keyStore\n                            \n                            \n                                loggingService\n                            \n                            \n                                onsign\n                            \n                            \n                                onverify\n                            \n                            \n                                signature\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                    Public\n                                fingerprint\n                            \n                            \n                                    Public\n                                prepare\n                            \n                            \n                                    Public\n                                    Async\n                                sign\n                            \n                            \n                                    Public\n                                verify\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n            \n    Constructor\n        \n            \n                \n                    \nconstructor(keyStore: MutableKeyStore)\n                    \n                \n                        \n                            \n                                Defined in src/app/_pgp/pgp-signer.ts:35\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        keyStore\n                                                  \n                                                        \n                                                                        MutableKeyStore\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n            \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            algo\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                    \n                        \n                            Default value : 'sha256'\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_pgp/pgp-signer.ts:29\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            dgst\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_pgp/pgp-signer.ts:30\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            engine\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                    \n                        \n                            Default value : 'pgp'\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_pgp/pgp-signer.ts:28\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            keyStore\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         MutableKeyStore\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_pgp/pgp-signer.ts:32\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            loggingService\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         LoggingService\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_pgp/pgp-signer.ts:35\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            onsign\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         function\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_pgp/pgp-signer.ts:33\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            onverify\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         function\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_pgp/pgp-signer.ts:34\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            signature\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         Signature\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_pgp/pgp-signer.ts:31\n                            \n                        \n\n\n            \n        \n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Public\n                            fingerprint\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    fingerprint()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-signer.ts:43\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         string\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Public\n                            prepare\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    prepare(material: Signable)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-signer.ts:47\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    material\n                                    \n                                                Signable\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         boolean\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Public\n                            Async\n                            sign\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    sign(digest: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-signer.ts:77\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    digest\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Public\n                            verify\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    verify(digest: string, signature: Signature)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-signer.ts:52\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    digest\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    signature\n                                    \n                                                Signature\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n\n\n\n\n\n    \n\n\n    \n        import {MutableKeyStore} from '@app/_pgp/pgp-key-store';\nimport {LoggingService} from '@app/_services/logging.service';\n\nconst openpgp = require('openpgp');\n\ninterface Signable {\n  digest(): string;\n}\n\ntype Signature = {\n  engine: string\n  algo: string\n  data: string\n  digest: string;\n};\n\ninterface Signer {\n  onsign(signature: Signature): void;\n  onverify(flag: boolean): void;\n  fingerprint(): string;\n  prepare(material: Signable): boolean;\n  verify(digest: string, signature: Signature): void;\n  sign(digest: string): Promise;\n}\n\nclass PGPSigner implements Signer {\n\n  engine = 'pgp';\n  algo = 'sha256';\n  dgst: string;\n  signature: Signature;\n  keyStore: MutableKeyStore;\n  onsign: (signature: Signature) => void;\n  onverify: (flag: boolean) => void;\n  loggingService: LoggingService;\n\n  constructor(keyStore: MutableKeyStore) {\n    this.keyStore = keyStore;\n    this.onsign = (signature: Signature) => {};\n    this.onverify = (flag: boolean) => {};\n  }\n\n  public fingerprint(): string {\n    return this.keyStore.getFingerprint();\n  }\n\n  public prepare(material: Signable): boolean {\n    this.dgst = material.digest();\n    return true;\n  }\n\n  public verify(digest: string, signature: Signature): void {\n    openpgp.signature.readArmored(signature.data).then((sig) => {\n      const opts = {\n        message: openpgp.cleartext.fromText(digest),\n        publicKeys: this.keyStore.getTrustedKeys(),\n        signature: sig,\n      };\n      openpgp.verify(opts).then((v) => {\n        let i = 0;\n        for (i = 0; i  {\n      this.loggingService.sendErrorLevelMessage(e.message, this, {error: e});\n      this.onverify(false);\n    });\n  }\n\n  public async sign(digest: string): Promise {\n    const m = openpgp.cleartext.fromText(digest);\n    const pk = this.keyStore.getPrivateKey();\n    if (!pk.isDecrypted()) {\n      const password = window.prompt('password');\n      await pk.decrypt(password);\n    }\n    const opts = {\n      message: m,\n      privateKeys: [pk],\n      detached: true,\n    };\n    openpgp.sign(opts).then((s) => {\n      this.signature = {\n        engine: this.engine,\n        algo: this.algo,\n        data: s.signature,\n        // TODO: fix for browser later\n        digest,\n      };\n      this.onsign(this.signature);\n    }).catch((e) => {\n      this.loggingService.sendErrorLevelMessage(e.message, this, {error: e});\n      this.onsign(undefined);\n    });\n  }\n}\n\nexport {\n  Signable,\n  Signature,\n  Signer,\n  PGPSigner\n};\n\n    \n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"components/PagesComponent.html":{"url":"components/PagesComponent.html","title":"component - PagesComponent","body":"\n                   \n\n\n\n\n\n  Components\n  PagesComponent\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n        \n            Template\n        \n        \n            Styles\n        \n        \n            DOM Tree\n        \n\n\n\n    \n    File\n\n\n    src/app/pages/pages.component.ts\n\n\n\n\n\n\n\n    Metadata\n    \n        \n\n            \n                changeDetection\n                ChangeDetectionStrategy.OnPush\n            \n\n\n\n\n\n\n\n\n\n\n            \n                selector\n                app-pages\n            \n\n            \n                styleUrls\n                ./pages.component.scss\n            \n\n\n\n            \n                templateUrl\n                ./pages.component.html\n            \n\n\n\n\n\n\n\n\n        \n    \n\n\n    \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                url\n                            \n                        \n                    \n                \n\n\n\n\n\n\n        \n    \n\n\n    \n    Constructor\n        \n            \n                \n                    \nconstructor()\n                    \n                \n                        \n                            \n                                Defined in src/app/pages/pages.component.ts:10\n                            \n                        \n\n            \n        \n\n\n\n\n\n\n\n    \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            url\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                    \n                        \n                            Default value : 'https://dashboard.sarafu.network/'\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/pages.component.ts:10\n                            \n                        \n\n\n            \n        \n\n\n\n\n\n    \n        import {ChangeDetectionStrategy, Component} from '@angular/core';\n\n@Component({\n  selector: 'app-pages',\n  templateUrl: './pages.component.html',\n  styleUrls: ['./pages.component.scss'],\n  changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class PagesComponent {\n  url: string = 'https://dashboard.sarafu.network/';\n\n  constructor() { }\n}\n\n    \n\n    \n        \n\n  \n\n  \n  \n  \n\n  \n    \n    \n    \n      \n        \n          Home\n        \n      \n      \n        \n          \n             Your browser does not support iframes. \n          \n        \n      \n    \n    \n  \n  \n  \n  \n\n\n    \n\n    \n                \n                    ./pages.component.scss\n                \n                \n    \n\n    \n        \n        \n            \n                Legend\n            \n            \n                Html element\n            \n            \n                Component\n            \n            \n                Html element with directive\n            \n        \n    \n\n    \n\n\n\n\n\n\n        var COMPONENT_TEMPLATE = '                                              Home                                                   Your browser does not support iframes.                                         '\n    var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n    var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[routerLink]'}];\n    var ACTUAL_COMPONENT = {'name': 'PagesComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"modules/PagesModule.html":{"url":"modules/PagesModule.html","title":"module - PagesModule","body":"\n                   \n\n\n\n\n    Modules\n    PagesModule\n\n\n\n    \n        \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_PagesModule\n\n\n\ncluster_PagesModule_declarations\n\n\n\ncluster_PagesModule_imports\n\n\n\n\nPagesComponent\n\nPagesComponent\n\n\n\nPagesModule\n\nPagesModule\n\nPagesModule -->\n\nPagesComponent->PagesModule\n\n\n\n\n\nPagesRoutingModule\n\nPagesRoutingModule\n\nPagesModule -->\n\nPagesRoutingModule->PagesModule\n\n\n\n\n\nSharedModule\n\nSharedModule\n\nPagesModule -->\n\nSharedModule->PagesModule\n\n\n\n\n\n\n    \n    \n    \n        Zoom in\n        Reset\n        Zoom out\n    \n\n\n\n\n\n    \n        Info\n    \n    \n        Source\n    \n\n\n\n    \n\n        \n            File\n        \n        \n            src/app/pages/pages.module.ts\n        \n\n\n\n\n        \n            \n                \n                    Declarations\n                    \n                        \n                            PagesComponent\n                        \n                    \n                \n                \n                    Imports\n                    \n                        \n                            PagesRoutingModule\n                        \n                        \n                            SharedModule\n                        \n                    \n                \n            \n        \n\n\n    \n\n\n    \n        import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { PagesRoutingModule } from '@pages/pages-routing.module';\nimport { PagesComponent } from '@pages/pages.component';\nimport {SharedModule} from '@app/shared/shared.module';\nimport {ChartsModule} from 'ng2-charts';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatCardModule} from '@angular/material/card';\n\n\n@NgModule({\n  declarations: [PagesComponent],\n    imports: [\n        CommonModule,\n        PagesRoutingModule,\n        SharedModule,\n        ChartsModule,\n        MatButtonModule,\n        MatFormFieldModule,\n        MatSelectModule,\n        MatInputModule,\n        MatCardModule\n    ]\n})\nexport class PagesModule { }\n\n    \n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"modules/PagesRoutingModule.html":{"url":"modules/PagesRoutingModule.html","title":"module - PagesRoutingModule","body":"\n                   \n\n\n\n\n    Modules\n    PagesRoutingModule\n\n\n\n\n    \n        Info\n    \n    \n        Source\n    \n\n\n\n    \n\n        \n            File\n        \n        \n            src/app/pages/pages-routing.module.ts\n        \n\n\n\n\n        \n            \n            \n        \n\n\n    \n\n\n    \n        import { NgModule } from '@angular/core';\nimport { Routes, RouterModule } from '@angular/router';\n\nimport { PagesComponent } from './pages.component';\n\nconst routes: Routes = [\n  { path: 'home', component: PagesComponent },\n  { path: 'tx', loadChildren: () => \"import('@pages/transactions/transactions.module').then(m => m.TransactionsModule)\" },\n  { path: 'settings', loadChildren: () => \"import('@pages/settings/settings.module').then(m => m.SettingsModule)\" },\n  { path: 'accounts', loadChildren: () => \"import('@pages/accounts/accounts.module').then(m => m.AccountsModule)\" },\n  { path: 'tokens', loadChildren: () => \"import('@pages/tokens/tokens.module').then(m => m.TokensModule)\" },\n  { path: 'admin', loadChildren: () => \"import('@pages/admin/admin.module').then(m => m.AdminModule)\" },\n  { path: '**', redirectTo: 'home', pathMatch: 'full'}\n];\n\n@NgModule({\n  imports: [RouterModule.forChild(routes)],\n  exports: [RouterModule]\n})\nexport class PagesRoutingModule { }\n\n    \n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"directives/PasswordToggleDirective.html":{"url":"directives/PasswordToggleDirective.html","title":"directive - PasswordToggleDirective","body":"\n                   \n\n\n\n\n\n\n\n  Directives\n  PasswordToggleDirective\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/auth/_directives/password-toggle.directive.ts\n        \n\n\n\n\n        \n            Metadata\n            \n                \n\n                    \n                        Selector\n                        [appPasswordToggle]\n                    \n\n                \n            \n        \n\n            \n    Index\n    \n        \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                togglePasswordVisibility\n                            \n                        \n                    \n                \n\n                \n                    \n                        Inputs\n                    \n                \n                \n                    \n                        \n                            \n                                iconId\n                            \n                            \n                                id\n                            \n                        \n                    \n                \n\n\n\n\n        \n    \n\n\n            \n    Constructor\n        \n            \n                \n                    \nconstructor(elementRef: ElementRef, renderer: Renderer2)\n                    \n                \n                        \n                            \n                                Defined in src/app/auth/_directives/password-toggle.directive.ts:11\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        elementRef\n                                                  \n                                                        \n                                                                        ElementRef\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        renderer\n                                                  \n                                                        \n                                                                        Renderer2\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n            \n    Inputs\n        \n            \n                \n                    \n                        \n                        iconId\n                    \n                \n                \n                    \n                        Type :         string\n\n                    \n                \n                        \n                            \n                                    Defined in src/app/auth/_directives/password-toggle.directive.ts:11\n                            \n                        \n            \n        \n        \n            \n                \n                    \n                        \n                        id\n                    \n                \n                \n                    \n                        Type :         string\n\n                    \n                \n                        \n                            \n                                    Defined in src/app/auth/_directives/password-toggle.directive.ts:8\n                            \n                        \n            \n        \n\n\n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            togglePasswordVisibility\n                        \n                        \n                    \n                \n            \n            \n                \ntogglePasswordVisibility()\n                \n            \n\n\n            \n                \n                    Defined in src/app/auth/_directives/password-toggle.directive.ts:22\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n\n\n\n    \n\n\n    \n        import {Directive, ElementRef, Input, Renderer2} from '@angular/core';\n\n@Directive({\n  selector: '[appPasswordToggle]'\n})\nexport class PasswordToggleDirective {\n  @Input()\n  id: string;\n\n  @Input()\n  iconId: string;\n\n  constructor(\n    private elementRef: ElementRef,\n    private renderer: Renderer2,\n  ) {\n    this.renderer.listen(this.elementRef.nativeElement, 'click', () => {\n      this.togglePasswordVisibility();\n    });\n  }\n\n  togglePasswordVisibility(): void {\n    const password: HTMLElement = document.getElementById(this.id);\n    const icon: HTMLElement = document.getElementById(this.iconId);\n    // @ts-ignore\n    if (password.type === 'password') {\n      // @ts-ignore\n      password.type = 'text';\n      icon.classList.remove('fa-eye');\n      icon.classList.add('fa-eye-slash');\n    } else {\n      // @ts-ignore\n      password.type = 'password';\n      icon.classList.remove('fa-eye-slash');\n      icon.classList.add('fa-eye');\n    }\n  }\n}\n\n    \n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"injectables/RegistryService.html":{"url":"injectables/RegistryService.html","title":"injectable - RegistryService","body":"\n                   \n\n\n\n\n\n\n\n\n  Injectables\n  RegistryService\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_services/registry.service.ts\n        \n\n\n\n\n            \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                fileGetter\n                            \n                            \n                                registry\n                            \n                            \n                                web3\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                getRegistry\n                            \n                            \n                                getWeb3\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n            \n    Constructor\n        \n            \n                \n                    \nconstructor()\n                    \n                \n                        \n                            \n                                Defined in src/app/_services/registry.service.ts:14\n                            \n                        \n\n            \n        \n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getRegistry\n                        \n                        \n                    \n                \n            \n            \n                \ngetRegistry()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/registry.service.ts:21\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         any\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getWeb3\n                        \n                        \n                    \n                \n            \n            \n                \ngetWeb3()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/registry.service.ts:25\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         any\n\n                    \n                \n            \n        \n    \n\n            \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            fileGetter\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     FileGetter\n\n                        \n                    \n                    \n                        \n                            Default value : new HttpGetter()\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_services/registry.service.ts:12\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            registry\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     CICRegistry\n\n                        \n                    \n                    \n                        \n                            Default value : new CICRegistry(this.web3, environment.registryAddress, 'CICRegistry', this.fileGetter,\n    ['../../assets/js/block-sync/data'])\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_services/registry.service.ts:13\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            web3\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     Web3\n\n                        \n                    \n                    \n                        \n                            Default value : new Web3(environment.web3Provider)\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_services/registry.service.ts:11\n                            \n                        \n\n\n            \n        \n\n\n    \n\n\n    \n        import { Injectable } from '@angular/core';\nimport Web3 from 'web3';\nimport {environment} from '@src/environments/environment';\nimport {CICRegistry, FileGetter} from 'cic-client';\nimport {HttpGetter} from '@app/_helpers';\n\n@Injectable({\n  providedIn: 'root'\n})\nexport class RegistryService {\n  web3: Web3 = new Web3(environment.web3Provider);\n  fileGetter: FileGetter = new HttpGetter();\n  registry: CICRegistry = new CICRegistry(this.web3, environment.registryAddress, 'CICRegistry', this.fileGetter,\n    ['../../assets/js/block-sync/data']);\n\n  constructor() {\n    this.registry.declaratorHelper.addTrust(environment.trustedDeclaratorAddress);\n    this.registry.load();\n  }\n\n  getRegistry(): any {\n    return this.registry;\n  }\n\n  getWeb3(): any {\n    return this.web3;\n  }\n}\n\n    \n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"guards/RoleGuard.html":{"url":"guards/RoleGuard.html","title":"guard - RoleGuard","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n    Guards\n    RoleGuard\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n        \n            \n            File\n            \n            \n                src/app/_guards/role.guard.ts\n            \n\n                \n                Description\n                \n                \n                    Role guard implementation.\nDictates access to routes depending on the user's role.\n\n                \n\n\n\n                \n                Example\n                \n                \n                \n\n                \n    Index\n    \n        \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                canActivate\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n                \n    Constructor\n        \n            \n                \n                    \nconstructor(router: Router)\n                    \n                \n                        \n                            \n                                Defined in src/app/_guards/role.guard.ts:17\n                            \n                        \n\n                \n                    \n                            Instantiates the role guard class.\n\n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                                    Description\n                                            \n                                        \n                                        \n                                                \n                                                        router\n                                                  \n                                                        \n                                                                        Router\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                        \n                                                                \nA service that provides navigation among views and URL manipulation capabilities.\n\n\n                                                        \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n                \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            canActivate\n                        \n                        \n                    \n                \n            \n            \n                \ncanActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_guards/role.guard.ts:35\n                \n            \n\n\n            \n                \n                    Returns whether navigation to a specific route is acceptable.\nChecks if the user has the required role to access the route.\n\n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                    Description\n                                \n                            \n                            \n                                \n                                    route\n                                    \n                                                ActivatedRouteSnapshot\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                    \n                                        \nContains the information about a route associated with a component loaded in an outlet at a particular moment in time.\nActivatedRouteSnapshot can also be used to traverse the router state tree.\n\n\n                                    \n                                \n                                \n                                    state\n                                    \n                                                RouterStateSnapshot\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                    \n                                        \nRepresents the state of the router at a moment in time.\n\n\n                                    \n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Observable | Promise | boolean | UrlTree\n\n                    \n                    \n                        true - If the user's role matches with accepted roles.\n\n                    \n                \n            \n        \n    \n\n        \n\n\n        \n            import { Injectable } from '@angular/core';\nimport {ActivatedRouteSnapshot, CanActivate, Router, RouterStateSnapshot, UrlTree} from '@angular/router';\n\n// Third party imports\nimport { Observable } from 'rxjs';\n\n/**\n * Role guard implementation.\n * Dictates access to routes depending on the user's role.\n *\n * @implements CanActivate\n */\n@Injectable({\n  providedIn: 'root'\n})\nexport class RoleGuard implements CanActivate {\n\n  /**\n   * Instantiates the role guard class.\n   *\n   * @param router - A service that provides navigation among views and URL manipulation capabilities.\n   */\n  constructor(private router: Router) {}\n\n  /**\n   * Returns whether navigation to a specific route is acceptable.\n   * Checks if the user has the required role to access the route.\n   *\n   * @param route - Contains the information about a route associated with a component loaded in an outlet at a particular moment in time.\n   * ActivatedRouteSnapshot can also be used to traverse the router state tree.\n   * @param state - Represents the state of the router at a moment in time.\n   * @returns true - If the user's role matches with accepted roles.\n   */\n  canActivate(\n    route: ActivatedRouteSnapshot,\n    state: RouterStateSnapshot): Observable | Promise | boolean | UrlTree {\n    const currentUser = JSON.parse(localStorage.getItem(atob('CICADA_USER')));\n    if (currentUser) {\n      if (route.data.roles && route.data.roles.indexOf(currentUser.role) === -1) {\n        this.router.navigate(['/']);\n        return false;\n      }\n      return true;\n    }\n\n    this.router.navigate(['/auth'], { queryParams: { returnUrl: state.url }});\n    return false;\n  }\n\n}\n\n        \n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"directives/RouterLinkDirectiveStub.html":{"url":"directives/RouterLinkDirectiveStub.html","title":"directive - RouterLinkDirectiveStub","body":"\n                   \n\n\n\n\n\n\n\n  Directives\n  RouterLinkDirectiveStub\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/testing/router-link-directive-stub.ts\n        \n\n\n\n\n        \n            Metadata\n            \n                \n\n                    \n                        Selector\n                        [routerLink]\n                    \n\n                \n            \n        \n\n            \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                navigatedTo\n                            \n                        \n                    \n                \n\n\n                \n                    \n                        Inputs\n                    \n                \n                \n                    \n                        \n                            \n                                routerLink\n                            \n                        \n                    \n                \n\n\n\n                \n                    \n                        HostListeners\n                    \n                \n                \n                    \n                        \n                            \n                                click\n                            \n                        \n                    \n                \n\n        \n    \n\n\n\n            \n    Inputs\n        \n            \n                \n                    \n                        \n                        routerLink\n                    \n                \n                \n                    \n                        Type :         any\n\n                    \n                \n                        \n                            \n                                    Defined in src/testing/router-link-directive-stub.ts:7\n                            \n                        \n            \n        \n\n\n\n            \n    HostListeners    \n        \n            \n                \n                    \n                    \n                        \n                            click\n                        \n                        \n                    \n                \n            \n            \n                \nclick()\n                \n            \n\n\n            \n                \n                    Defined in src/testing/router-link-directive-stub.ts:11\n                \n            \n\n\n        \n    \n\n\n            \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            navigatedTo\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         any\n\n                        \n                    \n                    \n                        \n                            Default value : null\n                        \n                    \n                        \n                            \n                                    Defined in src/testing/router-link-directive-stub.ts:8\n                            \n                        \n\n\n            \n        \n\n\n\n    \n\n\n    \n        import {Directive, HostListener, Input} from '@angular/core';\n\n@Directive({\n  selector: '[routerLink]'\n})\nexport class RouterLinkDirectiveStub {\n  @Input('routerLink') linkParams: any;\n  navigatedTo: any = null;\n\n  @HostListener('click')\n  onClick(): void {\n    this.navigatedTo = this.linkParams;\n  }\n}\n\n    \n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"pipes/SafePipe.html":{"url":"pipes/SafePipe.html","title":"pipe - SafePipe","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n  Pipes\n  SafePipe\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n\n        \n            File\n        \n        \n            src/app/shared/_pipes/safe.pipe.ts\n        \n\n\n\n        \n            Metadata\n            \n                \n                    \n                        Name\n                        safe\n                    \n                \n            \n        \n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            transform\n                        \n                        \n                    \n                \n            \n            \n                \ntransform(url: string, ...args: unknown[])\n                \n            \n\n\n            \n                \n                    Defined in src/app/shared/_pipes/safe.pipe.ts:11\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    url\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    args\n                                    \n                                            unknown[]\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     unknown\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n\n    \n\n\n    \n        import { Pipe, PipeTransform } from '@angular/core';\nimport {DomSanitizer} from '@angular/platform-browser';\n\n@Pipe({\n  name: 'safe'\n})\nexport class SafePipe implements PipeTransform {\n\n  constructor(private sanitizer: DomSanitizer) {}\n\n  transform(url: string, ...args: unknown[]): unknown {\n    return this.sanitizer.bypassSecurityTrustResourceUrl(url);\n  }\n\n}\n\n    \n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"classes/Settings.html":{"url":"classes/Settings.html","title":"class - Settings","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n  Classes\n  Settings\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_models/settings.ts\n        \n\n\n\n\n\n            \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                registry\n                            \n                            \n                                scanFilter\n                            \n                            \n                                txHelper\n                            \n                            \n                                w3\n                            \n                        \n                    \n                \n\n\n\n\n\n\n        \n    \n\n\n            \n    Constructor\n        \n            \n                \n                    \nconstructor(scanFilter: any)\n                    \n                \n                        \n                            \n                                Defined in src/app/_models/settings.ts:8\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        scanFilter\n                                                  \n                                                        \n                                                                        any\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n            \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            registry\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         any\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/settings.ts:7\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            scanFilter\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         any\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/settings.ts:6\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            txHelper\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         any\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/settings.ts:8\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            w3\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         W3\n\n                        \n                    \n                    \n                        \n                            Default value : {\n    engine: undefined,\n    provider: undefined,\n  }\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/settings.ts:2\n                            \n                        \n\n\n            \n        \n\n\n\n\n\n\n\n\n    \n\n\n    \n        class Settings {\n  w3: W3 = {\n    engine: undefined,\n    provider: undefined,\n  };\n  scanFilter: any;\n  registry: any;\n  txHelper: any;\n\n  constructor(scanFilter: any) {\n    this.scanFilter = scanFilter;\n  }\n}\n\nclass W3 {\n  engine: any;\n  provider: any;\n}\n\nexport {\n  Settings,\n  W3\n};\n\n    \n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"components/SettingsComponent.html":{"url":"components/SettingsComponent.html","title":"component - SettingsComponent","body":"\n                   \n\n\n\n\n\n  Components\n  SettingsComponent\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n        \n            Template\n        \n        \n            Styles\n        \n        \n            DOM Tree\n        \n\n\n\n    \n    File\n\n\n    src/app/pages/settings/settings.component.ts\n\n\n\n\n    \n        Implements\n    \n    \n                    OnInit\n    \n\n\n\n    Metadata\n    \n        \n\n            \n                changeDetection\n                ChangeDetectionStrategy.OnPush\n            \n\n\n\n\n\n\n\n\n\n\n            \n                selector\n                app-settings\n            \n\n            \n                styleUrls\n                ./settings.component.scss\n            \n\n\n\n            \n                templateUrl\n                ./settings.component.html\n            \n\n\n\n\n\n\n\n\n        \n    \n\n\n    \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                dataSource\n                            \n                            \n                                date\n                            \n                            \n                                displayedColumns\n                            \n                            \n                                paginator\n                            \n                            \n                                sort\n                            \n                            \n                                trustedUsers\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                doFilter\n                            \n                            \n                                downloadCsv\n                            \n                            \n                                logout\n                            \n                            \n                                ngOnInit\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n    \n    Constructor\n        \n            \n                \n                    \nconstructor(authService: AuthService)\n                    \n                \n                        \n                            \n                                Defined in src/app/pages/settings/settings.component.ts:22\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        authService\n                                                  \n                                                        \n                                                                        AuthService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n\n\n\n\n    \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            doFilter\n                        \n                        \n                    \n                \n            \n            \n                \ndoFilter(value: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/settings/settings.component.ts:37\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    value\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            downloadCsv\n                        \n                        \n                    \n                \n            \n            \n                \ndownloadCsv()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/settings/settings.component.ts:41\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            logout\n                        \n                        \n                    \n                \n            \n            \n                \nlogout()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/settings/settings.component.ts:45\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            ngOnInit\n                        \n                        \n                    \n                \n            \n            \n                \nngOnInit()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/settings/settings.component.ts:28\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n\n    \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            dataSource\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     MatTableDataSource\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/settings/settings.component.ts:17\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            date\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/settings/settings.component.ts:16\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            displayedColumns\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     Array\n\n                        \n                    \n                    \n                        \n                            Default value : ['name', 'email', 'userId']\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/settings/settings.component.ts:18\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            paginator\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     MatPaginator\n\n                        \n                    \n                    \n                        \n                            Decorators : \n                            \n                            \n                                @ViewChild(MatPaginator)\n                            \n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/settings/settings.component.ts:21\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            sort\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     MatSort\n\n                        \n                    \n                    \n                        \n                            Decorators : \n                            \n                            \n                                @ViewChild(MatSort)\n                            \n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/settings/settings.component.ts:22\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            trustedUsers\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         Array\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/settings/settings.component.ts:19\n                            \n                        \n\n\n            \n        \n\n\n\n\n\n    \n        import {ChangeDetectionStrategy, Component, OnInit, ViewChild} from '@angular/core';\nimport {MatTableDataSource} from '@angular/material/table';\nimport {MatPaginator} from '@angular/material/paginator';\nimport {MatSort} from '@angular/material/sort';\nimport {AuthService} from '@app/_services';\nimport {Staff} from '@app/_models/staff';\nimport {exportCsv} from '@app/_helpers';\n\n@Component({\n  selector: 'app-settings',\n  templateUrl: './settings.component.html',\n  styleUrls: ['./settings.component.scss'],\n  changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class SettingsComponent implements OnInit {\n  date: string;\n  dataSource: MatTableDataSource;\n  displayedColumns: Array = ['name', 'email', 'userId'];\n  trustedUsers: Array;\n\n  @ViewChild(MatPaginator) paginator: MatPaginator;\n  @ViewChild(MatSort) sort: MatSort;\n\n  constructor(\n    private authService: AuthService\n  ) { }\n\n  ngOnInit(): void {\n    const d = new Date();\n    this.date = `${d.getDate()}/${d.getMonth()}/${d.getFullYear()}`;\n    this.trustedUsers = this.authService.getTrustedUsers();\n    this.dataSource = new MatTableDataSource(this.trustedUsers);\n    this.dataSource.paginator = this.paginator;\n    this.dataSource.sort = this.sort;\n  }\n\n  doFilter(value: string): void {\n    this.dataSource.filter = value.trim().toLocaleLowerCase();\n  }\n\n  downloadCsv(): void {\n    exportCsv(this.trustedUsers, 'users');\n  }\n\n  logout(): void {\n    this.authService.logout();\n  }\n}\n\n    \n\n    \n        \n\n  \n\n  \n  \n  \n\n  \n    \n    \n    \n      \n        \n          Home\n          Settings\n        \n      \n      \n        \n          \n            \n              SETTINGS\n            \n            \n              Kobo Toolbox Credentials\n              Username:  admin_reserve \n              Password:  ******** \n            \n            \n            \n              Organization Settings\n              Update your organization settings\n            \n          \n        \n        \n          \n            \n              ACCOUNT MANAGEMENT\n            \n            \n              Change Password\n              Change your account password\n            \n            \n            \n              Two-step authentication\n              Secure your account with two step verification\n            \n            \n            \n               LOGOUT ADMIN \n            \n          \n        \n        \n          \n            \n              \n                TRUSTED USERS\n                 EXPORT \n              \n            \n            \n              \n                 Filter \n                \n                search\n              \n              \n\n                \n                   NAME \n                   {{user.name}} \n                \n\n                \n                   EMAIL \n                   {{user.email}} \n                \n\n                \n                   USER ID \n                   {{user.userid}} \n                \n\n                \n                \n              \n\n              \n\n            \n          \n        \n      \n    \n    \n  \n  \n  \n  \n\n\n    \n\n    \n                \n                    ./settings.component.scss\n                \n                \n    \n\n    \n        \n        \n            \n                Legend\n            \n            \n                Html element\n            \n            \n                Component\n            \n            \n                Html element with directive\n            \n        \n    \n\n    \n\n\n\n\n\n\n        var COMPONENT_TEMPLATE = '                                              Home          Settings                                                                SETTINGS                                      Kobo Toolbox Credentials              Username:  admin_reserve               Password:  ********                                                   Organization Settings              Update your organization settings                                                                          ACCOUNT MANAGEMENT                                      Change Password              Change your account password                                                  Two-step authentication              Secure your account with two step verification                                                   LOGOUT ADMIN                                                                                           TRUSTED USERS                 EXPORT                                                                      Filter                                 search                                                               NAME                    {{user.name}}                                                    EMAIL                    {{user.email}}                                                    USER ID                    {{user.userid}}                                                                                                                                 '\n    var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n    var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[routerLink]'}];\n    var ACTUAL_COMPONENT = {'name': 'SettingsComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"modules/SettingsModule.html":{"url":"modules/SettingsModule.html","title":"module - SettingsModule","body":"\n                   \n\n\n\n\n    Modules\n    SettingsModule\n\n\n\n    \n        \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_SettingsModule\n\n\n\ncluster_SettingsModule_imports\n\n\n\ncluster_SettingsModule_declarations\n\n\n\n\nOrganizationComponent\n\nOrganizationComponent\n\n\n\nSettingsModule\n\nSettingsModule\n\nSettingsModule -->\n\nOrganizationComponent->SettingsModule\n\n\n\n\n\nSettingsComponent\n\nSettingsComponent\n\nSettingsModule -->\n\nSettingsComponent->SettingsModule\n\n\n\n\n\nSettingsRoutingModule\n\nSettingsRoutingModule\n\nSettingsModule -->\n\nSettingsRoutingModule->SettingsModule\n\n\n\n\n\nSharedModule\n\nSharedModule\n\nSettingsModule -->\n\nSharedModule->SettingsModule\n\n\n\n\n\n\n    \n    \n    \n        Zoom in\n        Reset\n        Zoom out\n    \n\n\n\n\n\n    \n        Info\n    \n    \n        Source\n    \n\n\n\n    \n\n        \n            File\n        \n        \n            src/app/pages/settings/settings.module.ts\n        \n\n\n\n\n        \n            \n                \n                    Declarations\n                    \n                        \n                            OrganizationComponent\n                        \n                        \n                            SettingsComponent\n                        \n                    \n                \n                \n                    Imports\n                    \n                        \n                            SettingsRoutingModule\n                        \n                        \n                            SharedModule\n                        \n                    \n                \n            \n        \n\n\n    \n\n\n    \n        import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { SettingsRoutingModule } from '@pages/settings/settings-routing.module';\nimport { SettingsComponent } from '@pages/settings/settings.component';\nimport {SharedModule} from '@app/shared/shared.module';\nimport { OrganizationComponent } from '@pages/settings/organization/organization.component';\nimport {MatTableModule} from '@angular/material/table';\nimport {MatSortModule} from '@angular/material/sort';\nimport {MatPaginatorModule} from '@angular/material/paginator';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatCardModule} from '@angular/material/card';\nimport {MatRadioModule} from '@angular/material/radio';\nimport {MatCheckboxModule} from '@angular/material/checkbox';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatMenuModule} from '@angular/material/menu';\nimport {ReactiveFormsModule} from '@angular/forms';\n\n\n@NgModule({\n  declarations: [SettingsComponent, OrganizationComponent],\n  imports: [\n    CommonModule,\n    SettingsRoutingModule,\n    SharedModule,\n    MatTableModule,\n    MatSortModule,\n    MatPaginatorModule,\n    MatInputModule,\n    MatFormFieldModule,\n    MatButtonModule,\n    MatIconModule,\n    MatCardModule,\n    MatRadioModule,\n    MatCheckboxModule,\n    MatSelectModule,\n    MatMenuModule,\n    ReactiveFormsModule\n  ]\n})\nexport class SettingsModule { }\n\n    \n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"modules/SettingsRoutingModule.html":{"url":"modules/SettingsRoutingModule.html","title":"module - SettingsRoutingModule","body":"\n                   \n\n\n\n\n    Modules\n    SettingsRoutingModule\n\n\n\n\n    \n        Info\n    \n    \n        Source\n    \n\n\n\n    \n\n        \n            File\n        \n        \n            src/app/pages/settings/settings-routing.module.ts\n        \n\n\n\n\n        \n            \n            \n        \n\n\n    \n\n\n    \n        import { NgModule } from '@angular/core';\nimport { Routes, RouterModule } from '@angular/router';\n\nimport { SettingsComponent } from '@pages/settings/settings.component';\nimport {OrganizationComponent} from '@pages/settings/organization/organization.component';\n\nconst routes: Routes = [\n  { path: '', component: SettingsComponent },\n  { path: 'organization', component: OrganizationComponent },\n  { path: '**', redirectTo: '', pathMatch: 'full' }\n];\n\n@NgModule({\n  imports: [RouterModule.forChild(routes)],\n  exports: [RouterModule]\n})\nexport class SettingsRoutingModule { }\n\n    \n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"modules/SharedModule.html":{"url":"modules/SharedModule.html","title":"module - SharedModule","body":"\n                   \n\n\n\n\n    Modules\n    SharedModule\n\n\n\n    \n        \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_SharedModule\n\n\n\ncluster_SharedModule_exports\n\n\n\ncluster_SharedModule_declarations\n\n\n\n\nErrorDialogComponent\n\nErrorDialogComponent\n\n\n\nSharedModule\n\nSharedModule\n\nSharedModule -->\n\nErrorDialogComponent->SharedModule\n\n\n\n\n\nFooterComponent\n\nFooterComponent\n\nSharedModule -->\n\nFooterComponent->SharedModule\n\n\n\n\n\nMenuSelectionDirective\n\nMenuSelectionDirective\n\nSharedModule -->\n\nMenuSelectionDirective->SharedModule\n\n\n\n\n\nMenuToggleDirective\n\nMenuToggleDirective\n\nSharedModule -->\n\nMenuToggleDirective->SharedModule\n\n\n\n\n\nSafePipe\n\nSafePipe\n\nSharedModule -->\n\nSafePipe->SharedModule\n\n\n\n\n\nSidebarComponent\n\nSidebarComponent\n\nSharedModule -->\n\nSidebarComponent->SharedModule\n\n\n\n\n\nTokenRatioPipe\n\nTokenRatioPipe\n\nSharedModule -->\n\nTokenRatioPipe->SharedModule\n\n\n\n\n\nTopbarComponent\n\nTopbarComponent\n\nSharedModule -->\n\nTopbarComponent->SharedModule\n\n\n\n\n\nFooterComponent \n\nFooterComponent \n\nFooterComponent  -->\n\nSharedModule->FooterComponent \n\n\n\n\n\nMenuSelectionDirective \n\nMenuSelectionDirective \n\nMenuSelectionDirective  -->\n\nSharedModule->MenuSelectionDirective \n\n\n\n\n\nSafePipe \n\nSafePipe \n\nSafePipe  -->\n\nSharedModule->SafePipe \n\n\n\n\n\nSidebarComponent \n\nSidebarComponent \n\nSidebarComponent  -->\n\nSharedModule->SidebarComponent \n\n\n\n\n\nTokenRatioPipe \n\nTokenRatioPipe \n\nTokenRatioPipe  -->\n\nSharedModule->TokenRatioPipe \n\n\n\n\n\nTopbarComponent \n\nTopbarComponent \n\nTopbarComponent  -->\n\nSharedModule->TopbarComponent \n\n\n\n\n\n\n    \n    \n    \n        Zoom in\n        Reset\n        Zoom out\n    \n\n\n\n\n\n    \n        Info\n    \n    \n        Source\n    \n\n\n\n    \n\n        \n            File\n        \n        \n            src/app/shared/shared.module.ts\n        \n\n\n\n\n        \n            \n                \n                    Declarations\n                    \n                        \n                            ErrorDialogComponent\n                        \n                        \n                            FooterComponent\n                        \n                        \n                            MenuSelectionDirective\n                        \n                        \n                            MenuToggleDirective\n                        \n                        \n                            SafePipe\n                        \n                        \n                            SidebarComponent\n                        \n                        \n                            TokenRatioPipe\n                        \n                        \n                            TopbarComponent\n                        \n                    \n                \n                \n                    Exports\n                    \n                        \n                            FooterComponent\n                        \n                        \n                            MenuSelectionDirective\n                        \n                        \n                            SafePipe\n                        \n                        \n                            SidebarComponent\n                        \n                        \n                            TokenRatioPipe\n                        \n                        \n                            TopbarComponent\n                        \n                    \n                \n            \n        \n\n\n    \n\n\n    \n        import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { TopbarComponent } from '@app/shared/topbar/topbar.component';\nimport { FooterComponent } from '@app/shared/footer/footer.component';\nimport { SidebarComponent } from '@app/shared/sidebar/sidebar.component';\nimport { MenuSelectionDirective } from '@app/shared/_directives/menu-selection.directive';\nimport { MenuToggleDirective } from '@app/shared/_directives/menu-toggle.directive';\nimport {RouterModule} from '@angular/router';\nimport {MatIconModule} from '@angular/material/icon';\nimport {TokenRatioPipe} from '@app/shared/_pipes/token-ratio.pipe';\nimport { ErrorDialogComponent } from '@app/shared/error-dialog/error-dialog.component';\nimport {MatDialogModule} from '@angular/material/dialog';\nimport { SafePipe } from '@app/shared/_pipes/safe.pipe';\n\n\n\n@NgModule({\n  declarations: [\n    TopbarComponent,\n    FooterComponent,\n    SidebarComponent,\n    MenuSelectionDirective,\n    MenuToggleDirective,\n    TokenRatioPipe,\n    ErrorDialogComponent,\n    SafePipe\n  ],\n  exports: [\n    TopbarComponent,\n    FooterComponent,\n    SidebarComponent,\n    MenuSelectionDirective,\n    TokenRatioPipe,\n    SafePipe\n  ],\n  imports: [\n    CommonModule,\n    RouterModule,\n    MatIconModule,\n    MatDialogModule,\n  ]\n})\nexport class SharedModule { }\n\n    \n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"components/SidebarComponent.html":{"url":"components/SidebarComponent.html","title":"component - SidebarComponent","body":"\n                   \n\n\n\n\n\n  Components\n  SidebarComponent\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n        \n            Template\n        \n        \n            Styles\n        \n        \n            DOM Tree\n        \n\n\n\n    \n    File\n\n\n    src/app/shared/sidebar/sidebar.component.ts\n\n\n\n\n    \n        Implements\n    \n    \n                    OnInit\n    \n\n\n\n    Metadata\n    \n        \n\n            \n                changeDetection\n                ChangeDetectionStrategy.OnPush\n            \n\n\n\n\n\n\n\n\n\n\n            \n                selector\n                app-sidebar\n            \n\n            \n                styleUrls\n                ./sidebar.component.scss\n            \n\n\n\n            \n                templateUrl\n                ./sidebar.component.html\n            \n\n\n\n\n\n\n\n\n        \n    \n\n\n    \n    Index\n    \n        \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                ngOnInit\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n    \n    Constructor\n        \n            \n                \n                    \nconstructor()\n                    \n                \n                        \n                            \n                                Defined in src/app/shared/sidebar/sidebar.component.ts:9\n                            \n                        \n\n            \n        \n\n\n\n\n\n\n    \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            ngOnInit\n                        \n                        \n                    \n                \n            \n            \n                \nngOnInit()\n                \n            \n\n\n            \n                \n                    Defined in src/app/shared/sidebar/sidebar.component.ts:13\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n\n\n\n\n\n    \n        import {ChangeDetectionStrategy, Component, OnInit} from '@angular/core';\n\n@Component({\n  selector: 'app-sidebar',\n  templateUrl: './sidebar.component.html',\n  styleUrls: ['./sidebar.component.scss'],\n  changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class SidebarComponent implements OnInit {\n\n  constructor() { }\n\n  ngOnInit(): void {\n  }\n\n}\n\n    \n\n    \n        \n\n  \n\n    \n      \n        \n      \n      CICADA\n    \n\n    \n      \n        \n          \n           Dashboard \n        \n      \n      \n        \n          \n           Accounts \n        \n      \n      \n        \n          \n           Transactions \n        \n      \n      \n        \n          \n           Tokens \n        \n      \n      \n        \n          \n           Settings \n        \n      \n      \n        \n          \n           Admin \n        \n      \n    \n  \n\n\n\n    \n\n    \n                \n                    ./sidebar.component.scss\n                \n                \n    \n\n    \n        \n        \n            \n                Legend\n            \n            \n                Html element\n            \n            \n                Component\n            \n            \n                Html element with directive\n            \n        \n    \n\n    \n\n\n\n\n\n\n        var COMPONENT_TEMPLATE = '                                CICADA                                           Dashboard                                                  Accounts                                                  Transactions                                                  Tokens                                                  Settings                                                  Admin                     '\n    var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n    var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[routerLink]'}];\n    var ACTUAL_COMPONENT = {'name': 'SidebarComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"components/SidebarStubComponent.html":{"url":"components/SidebarStubComponent.html","title":"component - SidebarStubComponent","body":"\n                   \n\n\n\n\n\n  Components\n  SidebarStubComponent\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n        \n            DOM Tree\n        \n\n\n\n    \n    File\n\n\n    src/testing/shared-module-stub.ts\n\n\n\n\n\n\n\n    Metadata\n    \n        \n\n\n\n\n\n\n\n\n\n\n\n            \n                selector\n                app-sidebar\n            \n\n\n\n\n\n\n\n\n\n\n\n\n        \n    \n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n        import {Component} from '@angular/core';\n\n@Component({selector: 'app-sidebar', template: ''})\nexport class SidebarStubComponent {}\n\n@Component({selector: 'app-topbar', template: ''})\nexport class TopbarStubComponent {}\n\n@Component({selector: 'app-footer', template: ''})\nexport class FooterStubComponent {}\n\n    \n\n\n\n    \n        \n        \n            \n                Legend\n            \n            \n                Html element\n            \n            \n                Component\n            \n            \n                Html element with directive\n            \n        \n    \n\n    \n\n\n\n\n\n\n        var COMPONENT_TEMPLATE = ''\n    var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n    var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[routerLink]'}];\n    var ACTUAL_COMPONENT = {'name': 'SidebarStubComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"interfaces/Signable.html":{"url":"interfaces/Signable.html","title":"interface - Signable","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n\n  Interfaces\n  Signable\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_pgp/pgp-signer.ts\n        \n\n\n\n        \n            Index\n            \n                \n                    \n                        \n                            Methods\n                        \n                    \n                    \n                        \n                            \n                                \n                                    digest\n                                \n                            \n                        \n                    \n                \n            \n        \n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            digest\n                        \n                        \n                    \n                \n            \n            \n                \ndigest()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-signer.ts:7\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         string\n\n                    \n                \n            \n        \n    \n\n\n    \n\n\n    \n        import {MutableKeyStore} from '@app/_pgp/pgp-key-store';\nimport {LoggingService} from '@app/_services/logging.service';\n\nconst openpgp = require('openpgp');\n\ninterface Signable {\n  digest(): string;\n}\n\ntype Signature = {\n  engine: string\n  algo: string\n  data: string\n  digest: string;\n};\n\ninterface Signer {\n  onsign(signature: Signature): void;\n  onverify(flag: boolean): void;\n  fingerprint(): string;\n  prepare(material: Signable): boolean;\n  verify(digest: string, signature: Signature): void;\n  sign(digest: string): Promise;\n}\n\nclass PGPSigner implements Signer {\n\n  engine = 'pgp';\n  algo = 'sha256';\n  dgst: string;\n  signature: Signature;\n  keyStore: MutableKeyStore;\n  onsign: (signature: Signature) => void;\n  onverify: (flag: boolean) => void;\n  loggingService: LoggingService;\n\n  constructor(keyStore: MutableKeyStore) {\n    this.keyStore = keyStore;\n    this.onsign = (signature: Signature) => {};\n    this.onverify = (flag: boolean) => {};\n  }\n\n  public fingerprint(): string {\n    return this.keyStore.getFingerprint();\n  }\n\n  public prepare(material: Signable): boolean {\n    this.dgst = material.digest();\n    return true;\n  }\n\n  public verify(digest: string, signature: Signature): void {\n    openpgp.signature.readArmored(signature.data).then((sig) => {\n      const opts = {\n        message: openpgp.cleartext.fromText(digest),\n        publicKeys: this.keyStore.getTrustedKeys(),\n        signature: sig,\n      };\n      openpgp.verify(opts).then((v) => {\n        let i = 0;\n        for (i = 0; i  {\n      this.loggingService.sendErrorLevelMessage(e.message, this, {error: e});\n      this.onverify(false);\n    });\n  }\n\n  public async sign(digest: string): Promise {\n    const m = openpgp.cleartext.fromText(digest);\n    const pk = this.keyStore.getPrivateKey();\n    if (!pk.isDecrypted()) {\n      const password = window.prompt('password');\n      await pk.decrypt(password);\n    }\n    const opts = {\n      message: m,\n      privateKeys: [pk],\n      detached: true,\n    };\n    openpgp.sign(opts).then((s) => {\n      this.signature = {\n        engine: this.engine,\n        algo: this.algo,\n        data: s.signature,\n        // TODO: fix for browser later\n        digest,\n      };\n      this.onsign(this.signature);\n    }).catch((e) => {\n      this.loggingService.sendErrorLevelMessage(e.message, this, {error: e});\n      this.onsign(undefined);\n    });\n  }\n}\n\nexport {\n  Signable,\n  Signature,\n  Signer,\n  PGPSigner\n};\n\n    \n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"interfaces/Signature.html":{"url":"interfaces/Signature.html","title":"interface - Signature","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n\n  Interfaces\n  Signature\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_models/account.ts\n        \n\n\n\n        \n            Index\n            \n                \n                    \n                        \n                            Properties\n                        \n                    \n                    \n                        \n                            \n                                \n                                        algo\n                                \n                                \n                                        data\n                                \n                                \n                                        digest\n                                \n                                \n                                        engine\n                                \n                            \n                        \n                    \n                \n            \n        \n\n\n\n            \n                Properties\n                    \n                        \n                                \n                                    \n                                        \n                                        algo\n                                    \n                                \n                                \n                                    \n                                        algo:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        data\n                                    \n                                \n                                \n                                    \n                                        data:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        digest\n                                    \n                                \n                                \n                                    \n                                        digest:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        engine\n                                    \n                                \n                                \n                                    \n                                        engine:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n            \n    \n\n\n    \n        interface AccountDetails {\n  date_registered: number;\n  gender: string;\n  age?: string;\n  type?: string;\n  balance?: number;\n  identities: {\n    evm: {\n      'bloxberg:8996': string[];\n      'oldchain:1': string[];\n    };\n    latitude: number;\n    longitude: number;\n  };\n  location: {\n    area?: string;\n    area_name: string;\n    area_type?: string;\n  };\n  products: string[];\n  category?: string;\n  vcard: {\n    email: [{\n      value: string;\n    }];\n    fn: [{\n      value: string;\n    }];\n    n: [{\n      value: string[];\n    }];\n    tel: [{\n      meta: {\n        TYP: string[];\n      },\n      value: string;\n    }],\n    version: [{\n      value: string;\n    }];\n  };\n}\n\ninterface Signature {\n  algo: string;\n  data: string;\n  digest: string;\n  engine: string;\n}\n\ninterface Meta {\n  data: AccountDetails;\n  id: string;\n  signature: Signature;\n}\n\ninterface MetaResponse {\n  id: string;\n  m: Meta;\n}\n\nconst defaultAccount: AccountDetails = {\n  date_registered: Date.now(),\n  gender: 'other',\n  identities: {\n    evm: {\n      'bloxberg:8996': [''],\n      'oldchain:1': [''],\n    },\n    latitude: 0,\n    longitude: 0,\n  },\n  location: {\n    area_name: 'Kilifi',\n  },\n  products: [],\n  vcard: {\n    email: [{\n      value: '',\n    }],\n    fn: [{\n      value: 'Sarafu Contract',\n    }],\n    n: [{\n      value: ['Sarafu', 'Contract'],\n    }],\n    tel: [{\n      meta: {\n        TYP: [],\n      },\n      value: '',\n    }],\n    version: [{\n      value: '3.0',\n    }],\n  },\n};\n\nexport {\n  AccountDetails,\n  Signature,\n  Meta,\n  MetaResponse,\n  defaultAccount\n};\n\n    \n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"interfaces/Signer.html":{"url":"interfaces/Signer.html","title":"interface - Signer","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n\n  Interfaces\n  Signer\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_pgp/pgp-signer.ts\n        \n\n\n\n        \n            Index\n            \n                \n                    \n                        \n                            Methods\n                        \n                    \n                    \n                        \n                            \n                                \n                                    fingerprint\n                                \n                                \n                                    onsign\n                                \n                                \n                                    onverify\n                                \n                                \n                                    prepare\n                                \n                                \n                                    sign\n                                \n                                \n                                    verify\n                                \n                            \n                        \n                    \n                \n            \n        \n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            fingerprint\n                        \n                        \n                    \n                \n            \n            \n                \nfingerprint()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-signer.ts:20\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         string\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            onsign\n                        \n                        \n                    \n                \n            \n            \n                \nonsign(signature: Signature)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-signer.ts:18\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    signature\n                                    \n                                                Signature\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            onverify\n                        \n                        \n                    \n                \n            \n            \n                \nonverify(flag: boolean)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-signer.ts:19\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    flag\n                                    \n                                                boolean\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            prepare\n                        \n                        \n                    \n                \n            \n            \n                \nprepare(material: Signable)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-signer.ts:21\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    material\n                                    \n                                                Signable\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         boolean\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            sign\n                        \n                        \n                    \n                \n            \n            \n                \nsign(digest: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-signer.ts:23\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    digest\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            verify\n                        \n                        \n                    \n                \n            \n            \n                \nverify(digest: string, signature: Signature)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_pgp/pgp-signer.ts:22\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    digest\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    signature\n                                    \n                                                Signature\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n\n    \n\n\n    \n        import {MutableKeyStore} from '@app/_pgp/pgp-key-store';\nimport {LoggingService} from '@app/_services/logging.service';\n\nconst openpgp = require('openpgp');\n\ninterface Signable {\n  digest(): string;\n}\n\ntype Signature = {\n  engine: string\n  algo: string\n  data: string\n  digest: string;\n};\n\ninterface Signer {\n  onsign(signature: Signature): void;\n  onverify(flag: boolean): void;\n  fingerprint(): string;\n  prepare(material: Signable): boolean;\n  verify(digest: string, signature: Signature): void;\n  sign(digest: string): Promise;\n}\n\nclass PGPSigner implements Signer {\n\n  engine = 'pgp';\n  algo = 'sha256';\n  dgst: string;\n  signature: Signature;\n  keyStore: MutableKeyStore;\n  onsign: (signature: Signature) => void;\n  onverify: (flag: boolean) => void;\n  loggingService: LoggingService;\n\n  constructor(keyStore: MutableKeyStore) {\n    this.keyStore = keyStore;\n    this.onsign = (signature: Signature) => {};\n    this.onverify = (flag: boolean) => {};\n  }\n\n  public fingerprint(): string {\n    return this.keyStore.getFingerprint();\n  }\n\n  public prepare(material: Signable): boolean {\n    this.dgst = material.digest();\n    return true;\n  }\n\n  public verify(digest: string, signature: Signature): void {\n    openpgp.signature.readArmored(signature.data).then((sig) => {\n      const opts = {\n        message: openpgp.cleartext.fromText(digest),\n        publicKeys: this.keyStore.getTrustedKeys(),\n        signature: sig,\n      };\n      openpgp.verify(opts).then((v) => {\n        let i = 0;\n        for (i = 0; i  {\n      this.loggingService.sendErrorLevelMessage(e.message, this, {error: e});\n      this.onverify(false);\n    });\n  }\n\n  public async sign(digest: string): Promise {\n    const m = openpgp.cleartext.fromText(digest);\n    const pk = this.keyStore.getPrivateKey();\n    if (!pk.isDecrypted()) {\n      const password = window.prompt('password');\n      await pk.decrypt(password);\n    }\n    const opts = {\n      message: m,\n      privateKeys: [pk],\n      detached: true,\n    };\n    openpgp.sign(opts).then((s) => {\n      this.signature = {\n        engine: this.engine,\n        algo: this.algo,\n        data: s.signature,\n        // TODO: fix for browser later\n        digest,\n      };\n      this.onsign(this.signature);\n    }).catch((e) => {\n      this.loggingService.sendErrorLevelMessage(e.message, this, {error: e});\n      this.onsign(undefined);\n    });\n  }\n}\n\nexport {\n  Signable,\n  Signature,\n  Signer,\n  PGPSigner\n};\n\n    \n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"interfaces/Staff.html":{"url":"interfaces/Staff.html","title":"interface - Staff","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n\n  Interfaces\n  Staff\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_models/staff.ts\n        \n\n\n\n        \n            Index\n            \n                \n                    \n                        \n                            Properties\n                        \n                    \n                    \n                        \n                            \n                                \n                                        comment\n                                \n                                \n                                        email\n                                \n                                \n                                        name\n                                \n                                \n                                        tag\n                                \n                                \n                                        userid\n                                \n                            \n                        \n                    \n                \n            \n        \n\n\n\n            \n                Properties\n                    \n                        \n                                \n                                    \n                                        \n                                        comment\n                                    \n                                \n                                \n                                    \n                                        comment:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        email\n                                    \n                                \n                                \n                                    \n                                        email:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        name\n                                    \n                                \n                                \n                                    \n                                        name:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        tag\n                                    \n                                \n                                \n                                    \n                                        tag:         number\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         number\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        userid\n                                    \n                                \n                                \n                                    \n                                        userid:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n            \n    \n\n\n    \n        interface Staff {\n  comment: string;\n  email: string;\n  name: string;\n  tag: number;\n  userid: string;\n}\n\nexport {\n  Staff\n};\n\n    \n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"interfaces/Token.html":{"url":"interfaces/Token.html","title":"interface - Token","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n\n  Interfaces\n  Token\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_models/token.ts\n        \n\n\n\n        \n            Index\n            \n                \n                    \n                        \n                            Properties\n                        \n                    \n                    \n                        \n                            \n                                \n                                        address\n                                \n                                \n                                        decimals\n                                \n                                \n                                        name\n                                \n                                \n                                            Optional\n                                        owner\n                                \n                                \n                                            Optional\n                                        reserveRatio\n                                \n                                \n                                        reserves\n                                \n                                \n                                        supply\n                                \n                                \n                                        symbol\n                                \n                            \n                        \n                    \n                \n            \n        \n\n\n\n            \n                Properties\n                    \n                        \n                                \n                                    \n                                        \n                                        address\n                                    \n                                \n                                \n                                    \n                                        address:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        decimals\n                                    \n                                \n                                \n                                    \n                                        decimals:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        name\n                                    \n                                \n                                \n                                    \n                                        name:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        owner\n                                    \n                                \n                                \n                                    \n                                        owner:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n                                    \n                                        \n                                            Optional\n                                        \n                                    \n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        reserveRatio\n                                    \n                                \n                                \n                                    \n                                        reserveRatio:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n                                    \n                                        \n                                            Optional\n                                        \n                                    \n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        reserves\n                                    \n                                \n                                \n                                    \n                                        reserves:     literal type\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :     literal type\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        supply\n                                    \n                                \n                                \n                                    \n                                        supply:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n                    \n                        \n                                \n                                    \n                                        \n                                        symbol\n                                    \n                                \n                                \n                                    \n                                        symbol:         string\n\n                                    \n                                \n\n\n                                    \n                                        \n                                            Type :         string\n\n                                        \n                                    \n\n\n\n\n\n                        \n                    \n            \n    \n\n\n    \n        interface Token {\n  name: string;\n  symbol: string;\n  address: string;\n  supply: string;\n  decimals: string;\n  reserves: {\n    '0xa686005CE37Dce7738436256982C3903f2E4ea8E'?: {\n      weight: string;\n      balance: string;\n    }\n  };\n  reserveRatio?: string;\n  owner?: string;\n}\n\nexport {\n  Token\n};\n\n    \n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"components/TokenDetailsComponent.html":{"url":"components/TokenDetailsComponent.html","title":"component - TokenDetailsComponent","body":"\n                   \n\n\n\n\n\n  Components\n  TokenDetailsComponent\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n        \n            Template\n        \n        \n            Styles\n        \n        \n            DOM Tree\n        \n\n\n\n    \n    File\n\n\n    src/app/pages/tokens/token-details/token-details.component.ts\n\n\n\n\n    \n        Implements\n    \n    \n                    OnInit\n    \n\n\n\n    Metadata\n    \n        \n\n            \n                changeDetection\n                ChangeDetectionStrategy.OnPush\n            \n\n\n\n\n\n\n\n\n\n\n            \n                selector\n                app-token-details\n            \n\n            \n                styleUrls\n                ./token-details.component.scss\n            \n\n\n\n            \n                templateUrl\n                ./token-details.component.html\n            \n\n\n\n\n\n\n\n\n        \n    \n\n\n    \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                token\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                ngOnInit\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n    \n    Constructor\n        \n            \n                \n                    \nconstructor(route: ActivatedRoute, tokenService: TokenService)\n                    \n                \n                        \n                            \n                                Defined in src/app/pages/tokens/token-details/token-details.component.ts:14\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        route\n                                                  \n                                                        \n                                                                        ActivatedRoute\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        tokenService\n                                                  \n                                                        \n                                                                        TokenService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n\n\n\n\n    \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            ngOnInit\n                        \n                        \n                    \n                \n            \n            \n                \nngOnInit()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/tokens/token-details/token-details.component.ts:27\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n\n    \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            token\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         Token\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/tokens/token-details/token-details.component.ts:14\n                            \n                        \n\n\n            \n        \n\n\n\n\n\n    \n        import {ChangeDetectionStrategy, Component, OnInit} from '@angular/core';\nimport {ActivatedRoute, Params} from '@angular/router';\nimport {TokenService} from '@app/_services';\nimport {first} from 'rxjs/operators';\nimport {Token} from '../../../_models';\n\n@Component({\n  selector: 'app-token-details',\n  templateUrl: './token-details.component.html',\n  styleUrls: ['./token-details.component.scss'],\n  changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class TokenDetailsComponent implements OnInit {\n  token: Token;\n\n  constructor(\n    private route: ActivatedRoute,\n    private tokenService: TokenService\n  ) {\n    this.route.paramMap.subscribe((params: Params) => {\n      this.tokenService.getTokenBySymbol(params.get('id')).pipe(first()).subscribe(res => {\n        this.token = res;\n      });\n    });\n  }\n\n  ngOnInit(): void {\n  }\n\n}\n\n    \n\n    \n        \n\n  \n\n  \n  \n  \n\n  \n    \n    \n    \n      \n        \n          Home\n          Tokens\n          {{token.name}}\n        \n      \n      \n        \n          \n            Token\n          \n          \n            \n              Name: {{token.name}}\n            \n            \n              Symbol: {{token.symbol}}\n            \n            \n              Address: {{token.address}}\n            \n            \n              Details: A community inclusive currency for trading among lower to middle income societies.\n            \n            \n              Supply: {{token.supply | tokenRatio}}\n            \n            \n              Reserve\n              \n                Weight: {{token.reserveRatio}}\n              \n              \n                Owner: {{token.owner}}\n              \n            \n          \n        \n      \n    \n    \n  \n  \n  \n  \n\n\n\n    \n\n    \n                \n                    ./token-details.component.scss\n                \n                \n    \n\n    \n        \n        \n            \n                Legend\n            \n            \n                Html element\n            \n            \n                Component\n            \n            \n                Html element with directive\n            \n        \n    \n\n    \n\n\n\n\n\n\n        var COMPONENT_TEMPLATE = '                                              Home          Tokens          {{token.name}}                                                  Token                                              Name: {{token.name}}                                      Symbol: {{token.symbol}}                                      Address: {{token.address}}                                      Details: A community inclusive currency for trading among lower to middle income societies.                                      Supply: {{token.supply | tokenRatio}}                                      Reserve                              Weight: {{token.reserveRatio}}                                            Owner: {{token.owner}}                                                                  '\n    var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n    var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[routerLink]'}];\n    var ACTUAL_COMPONENT = {'name': 'TokenDetailsComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"pipes/TokenRatioPipe.html":{"url":"pipes/TokenRatioPipe.html","title":"pipe - TokenRatioPipe","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n  Pipes\n  TokenRatioPipe\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n\n        \n            File\n        \n        \n            src/app/shared/_pipes/token-ratio.pipe.ts\n        \n\n\n\n        \n            Metadata\n            \n                \n                    \n                        Name\n                        tokenRatio\n                    \n                \n            \n        \n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            transform\n                        \n                        \n                    \n                \n            \n            \n                \ntransform(value: any, ...args: any[])\n                \n            \n\n\n            \n                \n                    Defined in src/app/shared/_pipes/token-ratio.pipe.ts:5\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    value\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    args\n                                    \n                                            any[]\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         any\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n\n    \n\n\n    \n        import {Pipe, PipeTransform} from '@angular/core';\n\n@Pipe({name: 'tokenRatio'})\nexport class TokenRatioPipe implements PipeTransform {\n  transform(value: any, ...args): any {\n    return Number(value) / Math.pow(10, 6);\n  }\n}\n\n    \n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"classes/TokenRegistry.html":{"url":"classes/TokenRegistry.html","title":"class - TokenRegistry","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n  Classes\n  TokenRegistry\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_eth/token-registry.ts\n        \n\n            \n                Description\n            \n            \n                Provides an instance of the token registry contract.\nAllows querying of tokens that have been registered as valid tokens in the network.\n\n            \n\n\n\n            \n                Example\n            \n            \n            \n\n            \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                contract\n                            \n                            \n                                contractAddress\n                            \n                            \n                                signerAddress\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                    Public\n                                    Async\n                                addressOf\n                            \n                            \n                                    Public\n                                    Async\n                                entry\n                            \n                            \n                                    Public\n                                    Async\n                                totalTokens\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n            \n    Constructor\n        \n            \n                \n                    \nconstructor(contractAddress: string, signerAddress?: string)\n                    \n                \n                        \n                            \n                                Defined in src/app/_eth/token-registry.ts:26\n                            \n                        \n\n                \n                    \n                            Create a connection to the deployed token registry contract.\n\n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                                    Description\n                                            \n                                        \n                                        \n                                                \n                                                        contractAddress\n                                                  \n                                                        \n                                                                        string\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                        \n                                                                \nThe deployed token registry contract's address.\n\n\n                                                        \n                                                \n                                                \n                                                        signerAddress\n                                                  \n                                                        \n                                                                        string\n                                                        \n                                                  \n                                                    \n                                                            Yes\n                                                    \n                                                    \n                                                        \n                                                                \nThe account address of the account that deployed the token registry contract.\n\n\n                                                        \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n            \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            contract\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         any\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_eth/token-registry.ts:22\n                            \n                        \n\n                \n                    \n                        The instance of the token registry contract. \n\n                    \n                \n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            contractAddress\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_eth/token-registry.ts:24\n                            \n                        \n\n                \n                    \n                        The deployed token registry contract's address. \n\n                    \n                \n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            signerAddress\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_eth/token-registry.ts:26\n                            \n                        \n\n                \n                    \n                        The account address of the account that deployed the token registry contract. \n\n                    \n                \n\n            \n        \n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Public\n                            Async\n                            addressOf\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    addressOf(identifier: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_eth/token-registry.ts:57\n                \n            \n\n\n            \n                \n                    Returns the address of the token with a given identifier.\n\n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                    Description\n                                \n                            \n                            \n                                \n                                    identifier\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                    \n                                        \nThe name or identifier of the token to be fetched from the token registry.\n\n\n                                    \n                                \n                            \n                        \n                    \n                    \n                        Example :\n                        \n                            Prints the address of the token with the identifier 'sarafu':\n```typescript\n\nconsole.log(await addressOf('sarafu'));\n```\n\n                        \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        The address of the token assigned the specified identifier in the token registry.\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Public\n                            Async\n                            entry\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    entry(serial: number)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_eth/token-registry.ts:75\n                \n            \n\n\n            \n                \n                    Returns the address of a token with the given serial in the token registry.\n\n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                    Description\n                                \n                            \n                            \n                                \n                                    serial\n                                    \n                                                number\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                    \n                                        \nThe serial number of the token to be fetched.\n\n\n                                    \n                                \n                            \n                        \n                    \n                    \n                        Example :\n                        \n                            Prints the address of the token with the serial '2':\n```typescript\n\nconsole.log(await entry(2));\n```\n\n                        \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        The address of the token with the specified serial number.\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Public\n                            Async\n                            totalTokens\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    totalTokens()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_eth/token-registry.ts:91\n                \n            \n\n\n            \n                \n                    Returns the total number of tokens that have been registered in the network.\n\n\n                    \n                        Example :\n                        \n                            Prints the total number of registered tokens:\n```typescript\n\nconsole.log(await totalTokens());\n```\n\n                        \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        The total number of registered tokens.\n\n                    \n                \n            \n        \n    \n\n\n\n\n\n\n    \n\n\n    \n        import Web3 from 'web3';\n\n// Application imports\nimport {environment} from '@src/environments/environment';\n\n\n/** Fetch the token registry contract's ABI. */\nconst abi: Array = require('@src/assets/js/block-sync/data/TokenUniqueSymbolIndex.json');\n/** Establish a connection to the blockchain network. */\nconst web3: Web3 = new Web3(environment.web3Provider);\n\n/**\n * Provides an instance of the token registry contract.\n * Allows querying of tokens that have been registered as valid tokens in the network.\n *\n * @remarks\n * This is our interface to the token registry contract.\n */\nexport class TokenRegistry {\n  /** The instance of the token registry contract. */\n  contract: any;\n  /** The deployed token registry contract's address. */\n  contractAddress: string;\n  /** The account address of the account that deployed the token registry contract. */\n  signerAddress: string;\n\n  /**\n   * Create a connection to the deployed token registry contract.\n   *\n   * @param contractAddress - The deployed token registry contract's address.\n   * @param signerAddress - The account address of the account that deployed the token registry contract.\n   */\n  constructor(contractAddress: string, signerAddress?: string) {\n    this.contractAddress = contractAddress;\n    this.contract = new web3.eth.Contract(abi, this.contractAddress);\n    if (signerAddress) {\n      this.signerAddress = signerAddress;\n    } else {\n      this.signerAddress = web3.eth.accounts[0];\n    }\n  }\n\n  /**\n   * Returns the address of the token with a given identifier.\n   *\n   * @async\n   * @example\n   * Prints the address of the token with the identifier 'sarafu':\n   * ```typescript\n   * console.log(await addressOf('sarafu'));\n   * ```\n   *\n   * @param identifier - The name or identifier of the token to be fetched from the token registry.\n   * @returns The address of the token assigned the specified identifier in the token registry.\n   */\n  public async addressOf(identifier: string): Promise {\n    const id: string = web3.eth.abi.encodeParameter('bytes32', web3.utils.toHex(identifier));\n    return await this.contract.methods.addressOf(id).call();\n  }\n\n  /**\n   * Returns the address of a token with the given serial in the token registry.\n   *\n   * @async\n   * @example\n   * Prints the address of the token with the serial '2':\n   * ```typescript\n   * console.log(await entry(2));\n   * ```\n   *\n   * @param serial - The serial number of the token to be fetched.\n   * @return The address of the token with the specified serial number.\n   */\n  public async entry(serial: number): Promise {\n    return await this.contract.methods.entry(serial).call();\n  }\n\n  /**\n   * Returns the total number of tokens that have been registered in the network.\n   *\n   * @async\n   * @example\n   * Prints the total number of registered tokens:\n   * ```typescript\n   * console.log(await totalTokens());\n   * ```\n   *\n   * @returns The total number of registered tokens.\n   */\n  public async totalTokens(): Promise {\n    return await this.contract.methods.entryCount().call();\n  }\n}\n\n    \n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"injectables/TokenService.html":{"url":"injectables/TokenService.html","title":"injectable - TokenService","body":"\n                   \n\n\n\n\n\n\n\n\n  Injectables\n  TokenService\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_services/token.service.ts\n        \n\n\n\n\n            \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                LoadEvent\n                            \n                            \n                                registry\n                            \n                            \n                                tokenRegistry\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                    Async\n                                getTokenBalance\n                            \n                            \n                                getTokenBySymbol\n                            \n                            \n                                    Async\n                                getTokens\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n            \n    Constructor\n        \n            \n                \n                    \nconstructor(httpClient: HttpClient, registryService: RegistryService)\n                    \n                \n                        \n                            \n                                Defined in src/app/_services/token.service.ts:15\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        httpClient\n                                                  \n                                                        \n                                                                        HttpClient\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        registryService\n                                                  \n                                                        \n                                                                        RegistryService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            getTokenBalance\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    getTokenBalance(address: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/token.service.ts:38\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    address\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getTokenBySymbol\n                        \n                        \n                    \n                \n            \n            \n                \ngetTokenBySymbol(symbol: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/token.service.ts:34\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    symbol\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Observable\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            getTokens\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    getTokens()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/token.service.ts:29\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Promise>>\n\n                    \n                \n            \n        \n    \n\n            \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            LoadEvent\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     EventEmitter\n\n                        \n                    \n                    \n                        \n                            Default value : new EventEmitter()\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_services/token.service.ts:15\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            registry\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     CICRegistry\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_services/token.service.ts:13\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            tokenRegistry\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         TokenRegistry\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_services/token.service.ts:14\n                            \n                        \n\n\n            \n        \n\n\n    \n\n\n    \n        import { EventEmitter, Injectable } from '@angular/core';\nimport {environment} from '@src/environments/environment';\nimport {BehaviorSubject, Observable} from 'rxjs';\nimport {CICRegistry} from 'cic-client';\nimport {TokenRegistry} from '@app/_eth';\nimport {HttpClient} from '@angular/common/http';\nimport {RegistryService} from '@app/_services/registry.service';\n\n@Injectable({\n  providedIn: 'root'\n})\nexport class TokenService {\n  registry: CICRegistry;\n  tokenRegistry: TokenRegistry;\n  LoadEvent: EventEmitter = new EventEmitter();\n\n  constructor(\n    private httpClient: HttpClient,\n    private registryService: RegistryService,\n  ) {\n    this.registry = registryService.getRegistry();\n    this.registry.load();\n    this.registry.onload = async (address: string): Promise => {\n      this.tokenRegistry = new TokenRegistry(await this.registry.getContractAddressByName('TokenRegistry'));\n      this.LoadEvent.next(Date.now());\n    };\n  }\n\n  async getTokens(): Promise>> {\n    const count: number = await this.tokenRegistry.totalTokens();\n    return Array.from({length: count}, async (v, i) => await this.tokenRegistry.entry(i));\n  }\n\n  getTokenBySymbol(symbol: string): Observable {\n    return this.httpClient.get(`${environment.cicCacheUrl}/tokens/${symbol}`);\n  }\n\n  async getTokenBalance(address: string): Promise {\n    const sarafuToken = await this.registry.addToken(await this.tokenRegistry.entry(0));\n    return await sarafuToken.methods.balanceOf(address).call();\n  }\n}\n\n    \n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"classes/TokenServiceStub.html":{"url":"classes/TokenServiceStub.html","title":"class - TokenServiceStub","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n  Classes\n  TokenServiceStub\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/testing/token-service-stub.ts\n        \n\n\n\n\n\n            \n    Index\n    \n        \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                getBySymbol\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getBySymbol\n                        \n                        \n                    \n                \n            \n            \n                \ngetBySymbol(symbol: string)\n                \n            \n\n\n            \n                \n                    Defined in src/testing/token-service-stub.ts:2\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    symbol\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         any\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n\n\n\n\n\n    \n\n\n    \n        export class TokenServiceStub {\n  getBySymbol(symbol: string): any {\n    return {\n      name: 'Reserve',\n      symbol: 'RSV'\n    };\n  }\n}\n\n    \n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"components/TokensComponent.html":{"url":"components/TokensComponent.html","title":"component - TokensComponent","body":"\n                   \n\n\n\n\n\n  Components\n  TokensComponent\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n        \n            Template\n        \n        \n            Styles\n        \n        \n            DOM Tree\n        \n\n\n\n    \n    File\n\n\n    src/app/pages/tokens/tokens.component.ts\n\n\n\n\n    \n        Implements\n    \n    \n                    OnInit\n    \n\n\n\n    Metadata\n    \n        \n\n            \n                changeDetection\n                ChangeDetectionStrategy.OnPush\n            \n\n\n\n\n\n\n\n\n\n\n            \n                selector\n                app-tokens\n            \n\n            \n                styleUrls\n                ./tokens.component.scss\n            \n\n\n\n            \n                templateUrl\n                ./tokens.component.html\n            \n\n\n\n\n\n\n\n\n        \n    \n\n\n    \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                columnsToDisplay\n                            \n                            \n                                dataSource\n                            \n                            \n                                paginator\n                            \n                            \n                                sort\n                            \n                            \n                                tokens\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                doFilter\n                            \n                            \n                                downloadCsv\n                            \n                            \n                                    Async\n                                ngOnInit\n                            \n                            \n                                    Async\n                                viewToken\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n    \n    Constructor\n        \n            \n                \n                    \nconstructor(tokenService: TokenService, loggingService: LoggingService, router: Router)\n                    \n                \n                        \n                            \n                                Defined in src/app/pages/tokens/tokens.component.ts:22\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        tokenService\n                                                  \n                                                        \n                                                                        TokenService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        loggingService\n                                                  \n                                                        \n                                                                        LoggingService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        router\n                                                  \n                                                        \n                                                                        Router\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n\n\n\n\n    \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            doFilter\n                        \n                        \n                    \n                \n            \n            \n                \ndoFilter(value: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/tokens/tokens.component.ts:41\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    value\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            downloadCsv\n                        \n                        \n                    \n                \n            \n            \n                \ndownloadCsv()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/tokens/tokens.component.ts:49\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            ngOnInit\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    ngOnInit()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/tokens/tokens.component.ts:30\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Promise\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            viewToken\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    viewToken(token)\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/tokens/tokens.component.ts:45\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Optional\n                                \n                            \n                            \n                                \n                                    token\n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n    \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            columnsToDisplay\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     Array\n\n                        \n                    \n                    \n                        \n                            Default value : ['name', 'symbol', 'address', 'supply']\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/tokens/tokens.component.ts:19\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            dataSource\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     MatTableDataSource\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/tokens/tokens.component.ts:18\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            paginator\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     MatPaginator\n\n                        \n                    \n                    \n                        \n                            Decorators : \n                            \n                            \n                                @ViewChild(MatPaginator)\n                            \n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/tokens/tokens.component.ts:20\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            sort\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     MatSort\n\n                        \n                    \n                    \n                        \n                            Decorators : \n                            \n                            \n                                @ViewChild(MatSort)\n                            \n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/tokens/tokens.component.ts:21\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            tokens\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     Array>\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/tokens/tokens.component.ts:22\n                            \n                        \n\n\n            \n        \n\n\n\n\n\n    \n        import {ChangeDetectionStrategy, Component, OnInit, ViewChild} from '@angular/core';\nimport {MatPaginator} from '@angular/material/paginator';\nimport {MatSort} from '@angular/material/sort';\nimport {LoggingService, TokenService} from '@app/_services';\nimport {MatTableDataSource} from '@angular/material/table';\nimport {Router} from '@angular/router';\nimport {exportCsv} from '@app/_helpers';\nimport {TokenRegistry} from '../../_eth';\nimport {Token} from '../../_models';\n\n@Component({\n  selector: 'app-tokens',\n  templateUrl: './tokens.component.html',\n  styleUrls: ['./tokens.component.scss'],\n  changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class TokensComponent implements OnInit {\n  dataSource: MatTableDataSource;\n  columnsToDisplay: Array = ['name', 'symbol', 'address', 'supply'];\n  @ViewChild(MatPaginator) paginator: MatPaginator;\n  @ViewChild(MatSort) sort: MatSort;\n  tokens: Array>;\n\n  constructor(\n    private tokenService: TokenService,\n    private loggingService: LoggingService,\n    private router: Router\n  ) { }\n\n  async ngOnInit(): Promise {\n    this.tokenService.LoadEvent.subscribe(async () => {\n      this.tokens = await this.tokenService.getTokens();\n    });\n    this.tokens = await this.tokenService.getTokens();\n    this.loggingService.sendInfoLevelMessage(this.tokens);\n    this.dataSource = new MatTableDataSource(this.tokens);\n    this.dataSource.paginator = this.paginator;\n    this.dataSource.sort = this.sort;\n  }\n\n  doFilter(value: string): void {\n    this.dataSource.filter = value.trim().toLocaleLowerCase();\n  }\n\n  async viewToken(token): Promise {\n    await this.router.navigateByUrl(`/tokens/${token.symbol}`);\n  }\n\n  downloadCsv(): void {\n    exportCsv(this.tokens, 'tokens');\n  }\n}\n\n    \n\n    \n        \n\n  \n\n  \n  \n  \n\n  \n    \n    \n    \n      \n        \n          Home\n          Tokens\n        \n      \n      \n        \n          \n            Tokens\n             EXPORT \n          \n        \n        \n          \n             Filter \n            \n            search\n          \n\n          \n            \n               Name \n               {{token.name}} \n            \n\n            \n               Symbol \n               {{token.symbol}} \n            \n\n            \n               Address \n               {{token.address}} \n            \n\n            \n               Supply \n               {{token.supply | tokenRatio}} \n            \n\n            \n            \n          \n\n          \n        \n      \n    \n    \n  \n  \n  \n  \n\n\n\n    \n\n    \n                \n                    ./tokens.component.scss\n                \n                \n    \n\n    \n        \n        \n            \n                Legend\n            \n            \n                Html element\n            \n            \n                Component\n            \n            \n                Html element with directive\n            \n        \n    \n\n    \n\n\n\n\n\n\n        var COMPONENT_TEMPLATE = '                                              Home          Tokens                                                  Tokens             EXPORT                                                  Filter                         search                                               Name                {{token.name}}                                        Symbol                {{token.symbol}}                                        Address                {{token.address}}                                        Supply                {{token.supply | tokenRatio}}                                                                                       '\n    var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n    var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[routerLink]'}];\n    var ACTUAL_COMPONENT = {'name': 'TokensComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"modules/TokensModule.html":{"url":"modules/TokensModule.html","title":"module - TokensModule","body":"\n                   \n\n\n\n\n    Modules\n    TokensModule\n\n\n\n    \n        \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_TokensModule\n\n\n\ncluster_TokensModule_imports\n\n\n\ncluster_TokensModule_declarations\n\n\n\n\nTokenDetailsComponent\n\nTokenDetailsComponent\n\n\n\nTokensModule\n\nTokensModule\n\nTokensModule -->\n\nTokenDetailsComponent->TokensModule\n\n\n\n\n\nTokensComponent\n\nTokensComponent\n\nTokensModule -->\n\nTokensComponent->TokensModule\n\n\n\n\n\nSharedModule\n\nSharedModule\n\nTokensModule -->\n\nSharedModule->TokensModule\n\n\n\n\n\nTokensRoutingModule\n\nTokensRoutingModule\n\nTokensModule -->\n\nTokensRoutingModule->TokensModule\n\n\n\n\n\n\n    \n    \n    \n        Zoom in\n        Reset\n        Zoom out\n    \n\n\n\n\n\n    \n        Info\n    \n    \n        Source\n    \n\n\n\n    \n\n        \n            File\n        \n        \n            src/app/pages/tokens/tokens.module.ts\n        \n\n\n\n\n        \n            \n                \n                    Declarations\n                    \n                        \n                            TokenDetailsComponent\n                        \n                        \n                            TokensComponent\n                        \n                    \n                \n                \n                    Imports\n                    \n                        \n                            SharedModule\n                        \n                        \n                            TokensRoutingModule\n                        \n                    \n                \n            \n        \n\n\n    \n\n\n    \n        import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { TokensRoutingModule } from '@pages/tokens/tokens-routing.module';\nimport { TokensComponent } from '@pages/tokens/tokens.component';\nimport { TokenDetailsComponent } from '@pages/tokens/token-details/token-details.component';\nimport {SharedModule} from '@app/shared/shared.module';\nimport {MatTableModule} from '@angular/material/table';\nimport {MatPaginatorModule} from '@angular/material/paginator';\nimport {MatSortModule} from '@angular/material/sort';\nimport {MatPseudoCheckboxModule, MatRippleModule} from '@angular/material/core';\nimport {MatCheckboxModule} from '@angular/material/checkbox';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatSidenavModule} from '@angular/material/sidenav';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatToolbarModule} from '@angular/material/toolbar';\nimport {MatCardModule} from '@angular/material/card';\n\n\n@NgModule({\n  declarations: [TokensComponent, TokenDetailsComponent],\n    imports: [\n        CommonModule,\n        TokensRoutingModule,\n        SharedModule,\n        MatTableModule,\n        MatPaginatorModule,\n        MatSortModule,\n        MatPseudoCheckboxModule,\n        MatCheckboxModule,\n        MatInputModule,\n        MatFormFieldModule,\n        MatIconModule,\n        MatSidenavModule,\n        MatButtonModule,\n        MatToolbarModule,\n        MatCardModule,\n        MatRippleModule\n    ]\n})\nexport class TokensModule { }\n\n    \n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"modules/TokensRoutingModule.html":{"url":"modules/TokensRoutingModule.html","title":"module - TokensRoutingModule","body":"\n                   \n\n\n\n\n    Modules\n    TokensRoutingModule\n\n\n\n\n    \n        Info\n    \n    \n        Source\n    \n\n\n\n    \n\n        \n            File\n        \n        \n            src/app/pages/tokens/tokens-routing.module.ts\n        \n\n\n\n\n        \n            \n            \n        \n\n\n    \n\n\n    \n        import { NgModule } from '@angular/core';\nimport { Routes, RouterModule } from '@angular/router';\n\nimport { TokensComponent } from '@pages/tokens/tokens.component';\nimport {TokenDetailsComponent} from '@pages/tokens/token-details/token-details.component';\n\nconst routes: Routes = [\n  { path: '', component: TokensComponent },\n  { path: ':id', component: TokenDetailsComponent },\n];\n\n@NgModule({\n  imports: [RouterModule.forChild(routes)],\n  exports: [RouterModule]\n})\nexport class TokensRoutingModule { }\n\n    \n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"components/TopbarComponent.html":{"url":"components/TopbarComponent.html","title":"component - TopbarComponent","body":"\n                   \n\n\n\n\n\n  Components\n  TopbarComponent\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n        \n            Template\n        \n        \n            Styles\n        \n        \n            DOM Tree\n        \n\n\n\n    \n    File\n\n\n    src/app/shared/topbar/topbar.component.ts\n\n\n\n\n    \n        Implements\n    \n    \n                    OnInit\n    \n\n\n\n    Metadata\n    \n        \n\n            \n                changeDetection\n                ChangeDetectionStrategy.OnPush\n            \n\n\n\n\n\n\n\n\n\n\n            \n                selector\n                app-topbar\n            \n\n            \n                styleUrls\n                ./topbar.component.scss\n            \n\n\n\n            \n                templateUrl\n                ./topbar.component.html\n            \n\n\n\n\n\n\n\n\n        \n    \n\n\n    \n    Index\n    \n        \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                ngOnInit\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n    \n    Constructor\n        \n            \n                \n                    \nconstructor()\n                    \n                \n                        \n                            \n                                Defined in src/app/shared/topbar/topbar.component.ts:9\n                            \n                        \n\n            \n        \n\n\n\n\n\n\n    \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            ngOnInit\n                        \n                        \n                    \n                \n            \n            \n                \nngOnInit()\n                \n            \n\n\n            \n                \n                    Defined in src/app/shared/topbar/topbar.component.ts:13\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n\n\n\n\n\n    \n        import {ChangeDetectionStrategy, Component, OnInit} from '@angular/core';\n\n@Component({\n  selector: 'app-topbar',\n  templateUrl: './topbar.component.html',\n  styleUrls: ['./topbar.component.scss'],\n  changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class TopbarComponent implements OnInit {\n\n  constructor() { }\n\n  ngOnInit(): void {\n  }\n\n}\n\n    \n\n    \n        \n\n  \n    \n      \n      \n      \n    \n  \n\n\n\n    \n\n    \n                \n                    ./topbar.component.scss\n                \n                \n    \n\n    \n        \n        \n            \n                Legend\n            \n            \n                Html element\n            \n            \n                Component\n            \n            \n                Html element with directive\n            \n        \n    \n\n    \n\n\n\n\n\n\n        var COMPONENT_TEMPLATE = '                              '\n    var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n    var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[routerLink]'}];\n    var ACTUAL_COMPONENT = {'name': 'TopbarComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"components/TopbarStubComponent.html":{"url":"components/TopbarStubComponent.html","title":"component - TopbarStubComponent","body":"\n                   \n\n\n\n\n\n  Components\n  TopbarStubComponent\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n        \n            DOM Tree\n        \n\n\n\n    \n    File\n\n\n    src/testing/shared-module-stub.ts\n\n\n\n\n\n\n\n    Metadata\n    \n        \n\n\n\n\n\n\n\n\n\n\n\n            \n                selector\n                app-topbar\n            \n\n\n\n\n\n\n\n\n\n\n\n\n        \n    \n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n        import {Component} from '@angular/core';\n\n@Component({selector: 'app-sidebar', template: ''})\nexport class SidebarStubComponent {}\n\n@Component({selector: 'app-topbar', template: ''})\nexport class TopbarStubComponent {}\n\n@Component({selector: 'app-footer', template: ''})\nexport class FooterStubComponent {}\n\n    \n\n\n\n    \n        \n        \n            \n                Legend\n            \n            \n                Html element\n            \n            \n                Component\n            \n            \n                Html element with directive\n            \n        \n    \n\n    \n\n\n\n\n\n\n        var COMPONENT_TEMPLATE = ''\n    var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n    var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[routerLink]'}];\n    var ACTUAL_COMPONENT = {'name': 'TopbarStubComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"classes/Transaction.html":{"url":"classes/Transaction.html","title":"class - Transaction","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n  Classes\n  Transaction\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_models/transaction.ts\n        \n\n\n\n\n\n            \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                from\n                            \n                            \n                                recipient\n                            \n                            \n                                sender\n                            \n                            \n                                to\n                            \n                            \n                                token\n                            \n                            \n                                tx\n                            \n                            \n                                    Optional\n                                type\n                            \n                            \n                                value\n                            \n                        \n                    \n                \n\n\n\n\n\n\n        \n    \n\n\n\n            \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            from\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:26\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            recipient\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         AccountDetails\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:29\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            sender\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         AccountDetails\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:27\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            to\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:28\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            token\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         TxToken\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:30\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            tx\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         Tx\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:31\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                                Optional\n                            type\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:33\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            value\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         number\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:32\n                            \n                        \n\n\n            \n        \n\n\n\n\n\n\n\n\n    \n\n\n    \n        import {AccountDetails} from '@app/_models/account';\n\nclass BlocksBloom {\n  low: number;\n  blockFilter: string;\n  blocktxFilter: string;\n  alg: string;\n  filterRounds: number;\n}\n\nclass TxToken {\n  address: string;\n  name: string;\n  symbol: string;\n}\n\nclass Tx {\n  block: number;\n  success: boolean;\n  timestamp: number;\n  txHash: string;\n  txIndex: number;\n}\n\nclass Transaction {\n  from: string;\n  sender: AccountDetails;\n  to: string;\n  recipient: AccountDetails;\n  token: TxToken;\n  tx: Tx;\n  value: number;\n  type?: string;\n}\n\nclass Conversion {\n  destinationToken: TxToken;\n  fromValue: number;\n  sourceToken: TxToken;\n  toValue: number;\n  trader: string;\n  user: AccountDetails;\n  tx: Tx;\n}\n\nexport {\n  BlocksBloom,\n  TxToken,\n  Tx,\n  Transaction,\n  Conversion\n};\n\n    \n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"components/TransactionDetailsComponent.html":{"url":"components/TransactionDetailsComponent.html","title":"component - TransactionDetailsComponent","body":"\n                   \n\n\n\n\n\n  Components\n  TransactionDetailsComponent\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n        \n            Template\n        \n        \n            Styles\n        \n        \n            DOM Tree\n        \n\n\n\n    \n    File\n\n\n    src/app/pages/transactions/transaction-details/transaction-details.component.ts\n\n\n\n\n    \n        Implements\n    \n    \n                    OnInit\n    \n\n\n\n    Metadata\n    \n        \n\n            \n                changeDetection\n                ChangeDetectionStrategy.OnPush\n            \n\n\n\n\n\n\n\n\n\n\n            \n                selector\n                app-transaction-details\n            \n\n            \n                styleUrls\n                ./transaction-details.component.scss\n            \n\n\n\n            \n                templateUrl\n                ./transaction-details.component.html\n            \n\n\n\n\n\n\n\n\n        \n    \n\n\n    \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                recipientBloxbergLink\n                            \n                            \n                                senderBloxbergLink\n                            \n                            \n                                traderBloxbergLink\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                copyAddress\n                            \n                            \n                                ngOnInit\n                            \n                            \n                                    Async\n                                reverseTransaction\n                            \n                            \n                                    Async\n                                viewRecipient\n                            \n                            \n                                    Async\n                                viewSender\n                            \n                            \n                                    Async\n                                viewTrader\n                            \n                        \n                    \n                \n\n                \n                    \n                        Inputs\n                    \n                \n                \n                    \n                        \n                            \n                                transaction\n                            \n                        \n                    \n                \n\n\n\n\n        \n    \n\n\n    \n    Constructor\n        \n            \n                \n                    \nconstructor(router: Router, transactionService: TransactionService, snackBar: MatSnackBar)\n                    \n                \n                        \n                            \n                                Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:18\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        router\n                                                  \n                                                        \n                                                                        Router\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        transactionService\n                                                  \n                                                        \n                                                                        TransactionService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        snackBar\n                                                  \n                                                        \n                                                                    MatSnackBar\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n    \n    Inputs\n        \n            \n                \n                    \n                        \n                        transaction\n                    \n                \n                        \n                            \n                                    Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:15\n                            \n                        \n            \n        \n\n\n\n\n    \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            copyAddress\n                        \n                        \n                    \n                \n            \n            \n                \ncopyAddress(address: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:56\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    address\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            ngOnInit\n                        \n                        \n                    \n                \n            \n            \n                \nngOnInit()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:26\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            reverseTransaction\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    reverseTransaction()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:47\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Promise\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            viewRecipient\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    viewRecipient()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:39\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Promise\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            viewSender\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    viewSender()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:35\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Promise\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            viewTrader\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    viewTrader()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:43\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :     Promise\n\n                    \n                \n            \n        \n    \n\n    \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            recipientBloxbergLink\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:17\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            senderBloxbergLink\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:16\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            traderBloxbergLink\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:18\n                            \n                        \n\n\n            \n        \n\n\n\n\n\n    \n        import {ChangeDetectionStrategy, Component, Input, OnInit} from '@angular/core';\nimport {Router} from '@angular/router';\nimport {TransactionService} from '@app/_services';\nimport {copyToClipboard} from '@app/_helpers';\nimport {MatSnackBar} from '@angular/material/snack-bar';\nimport {strip0x} from '@src/assets/js/ethtx/dist/hex';\n\n@Component({\n  selector: 'app-transaction-details',\n  templateUrl: './transaction-details.component.html',\n  styleUrls: ['./transaction-details.component.scss'],\n  changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class TransactionDetailsComponent implements OnInit {\n  @Input() transaction;\n  senderBloxbergLink: string;\n  recipientBloxbergLink: string;\n  traderBloxbergLink: string;\n\n  constructor(\n    private router: Router,\n    private transactionService: TransactionService,\n    private snackBar: MatSnackBar,\n  ) { }\n\n  ngOnInit(): void {\n    if (this.transaction?.type === 'conversion') {\n      this.traderBloxbergLink = 'https://blockexplorer.bloxberg.org/address/' + this.transaction?.trader + '/transactions';\n    } else {\n      this.senderBloxbergLink = 'https://blockexplorer.bloxberg.org/address/' + this.transaction?.from + '/transactions';\n      this.recipientBloxbergLink = 'https://blockexplorer.bloxberg.org/address/' + this.transaction?.to + '/transactions';\n    }\n  }\n\n  async viewSender(): Promise {\n    await this.router.navigateByUrl(`/accounts/${strip0x(this.transaction.from)}`);\n  }\n\n  async viewRecipient(): Promise {\n    await this.router.navigateByUrl(`/accounts/${strip0x(this.transaction.to)}`);\n  }\n\n  async viewTrader(): Promise {\n    await this.router.navigateByUrl(`/accounts/${strip0x(this.transaction.trader)}`);\n  }\n\n  async reverseTransaction(): Promise {\n    await this.transactionService.transferRequest(\n      this.transaction.token.address,\n      this.transaction.to,\n      this.transaction.from,\n      this.transaction.value\n    );\n  }\n\n  copyAddress(address: string): void {\n    if (copyToClipboard(address)) {\n      this.snackBar.open(address + ' copied successfully!', 'Close', { duration: 3000 });\n    }\n  }\n}\n\n    \n\n    \n        \n  \n    \n      \n        TRANSACTION DETAILS\n         CLOSE \n      \n    \n    \n      \n        \n          Exchange: \n          \n            \n              Sender: {{transaction.sender?.vcard.fn[0].value}}\n              \n                Sender Address:\n                 {{transaction.from}} \n                \n              \n              View Sender\n            \n            \n              Recipient: {{transaction.recipient?.vcard.fn[0].value}}\n              \n                Recipient Address:\n                 {{transaction.to}} \n                \n              \n              View Recipient\n            \n            \n              Amount: SRF {{transaction.value | tokenRatio}}\n            \n          \n          Token: \n          \n            \n              \n                Address:\n                {{transaction.token._address}}\n                \n              \n            \n            \n              Name: Sarafu Token\n            \n            \n              Symbol: SRF\n            \n          \n        \n        \n          Transaction: \n          \n            \n              Block: {{transaction.tx.block}}\n            \n            \n              Index: {{transaction.tx.txIndex}}\n            \n            \n              Hash: {{transaction.tx.txHash}}\n            \n            \n              Success: {{transaction.tx.success}}\n            \n            \n              Timestamp: {{transaction.tx.timestamp | date}}\n            \n          \n          \n            Resend SMS\n          \n          \n            Reverse Transaction\n          \n        \n      \n    \n    \n      Exchange: \n      \n        \n          Trader: {{transaction.sender?.vcard.fn[0].value}}\n        \n        \n          \n            Trader Address:\n             {{transaction.trader}} \n            \n          \n        \n      \n      View Trader\n      \n      \n        \n          Source Token: \n          \n            \n              \n                Address:\n                {{transaction.sourceToken.address}}\n                \n              \n            \n            \n              Name: {{transaction.sourceToken.name}}\n            \n            \n              Symbol: {{transaction.sourceToken.symbol}}\n            \n            \n              Amount: {{transaction.sourceToken.symbol + ' ' + transaction.fromValue}}\n            \n          \n        \n        \n          Destination Token: \n          \n            \n              \n                Address:\n                {{transaction.destinationToken.address}}\n                \n              \n            \n            \n              Name: {{transaction.destinationToken.name}}\n            \n            \n              Symbol: {{transaction.destinationToken.symbol}}\n            \n            \n              Amount: {{transaction.destinationToken.symbol + ' ' + transaction.toValue}}\n            \n          \n        \n        \n          Resend SMS\n        \n        \n          Reverse Transaction\n        \n      \n    \n  \n\n\n    \n\n    \n                \n                    ./transaction-details.component.scss\n                \n                \n    \n\n    \n        \n        \n            \n                Legend\n            \n            \n                Html element\n            \n            \n                Component\n            \n            \n                Html element with directive\n            \n        \n    \n\n    \n\n\n\n\n\n\n        var COMPONENT_TEMPLATE = '                    TRANSACTION DETAILS         CLOSE                                       Exchange:                                     Sender: {{transaction.sender?.vcard.fn[0].value}}                              Sender Address:                 {{transaction.from}}                                             View Sender                                      Recipient: {{transaction.recipient?.vcard.fn[0].value}}                              Recipient Address:                 {{transaction.to}}                                             View Recipient                                      Amount: SRF {{transaction.value | tokenRatio}}                                Token:                                                     Address:                {{transaction.token._address}}                                                                    Name: Sarafu Token                                      Symbol: SRF                                                Transaction:                                     Block: {{transaction.tx.block}}                                      Index: {{transaction.tx.txIndex}}                                      Hash: {{transaction.tx.txHash}}                                      Success: {{transaction.tx.success}}                                      Timestamp: {{transaction.tx.timestamp | date}}                                            Resend SMS                                Reverse Transaction                                      Exchange:                         Trader: {{transaction.sender?.vcard.fn[0].value}}                                      Trader Address:             {{transaction.trader}}                                           View Trader                              Source Token:                                                     Address:                {{transaction.sourceToken.address}}                                                                    Name: {{transaction.sourceToken.name}}                                      Symbol: {{transaction.sourceToken.symbol}}                                      Amount: {{transaction.sourceToken.symbol + \\' \\' + transaction.fromValue}}                                                Destination Token:                                                     Address:                {{transaction.destinationToken.address}}                                                                    Name: {{transaction.destinationToken.name}}                                      Symbol: {{transaction.destinationToken.symbol}}                                      Amount: {{transaction.destinationToken.symbol + \\' \\' + transaction.toValue}}                                                Resend SMS                          Reverse Transaction                    '\n    var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n    var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[routerLink]'}];\n    var ACTUAL_COMPONENT = {'name': 'TransactionDetailsComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"injectables/TransactionService.html":{"url":"injectables/TransactionService.html","title":"injectable - TransactionService","body":"\n                   \n\n\n\n\n\n\n\n\n  Injectables\n  TransactionService\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_services/transaction.service.ts\n        \n\n\n\n\n            \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                registry\n                            \n                            \n                                    Private\n                                transactionList\n                            \n                            \n                                transactions\n                            \n                            \n                                transactionsSubject\n                            \n                            \n                                userInfo\n                            \n                            \n                                web3\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                addTransaction\n                            \n                            \n                                getAccountInfo\n                            \n                            \n                                getAddressTransactions\n                            \n                            \n                                getAllTransactions\n                            \n                            \n                                resetTransactionsList\n                            \n                            \n                                    Async\n                                setConversion\n                            \n                            \n                                    Async\n                                setTransaction\n                            \n                            \n                                    Async\n                                transferRequest\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n            \n    Constructor\n        \n            \n                \n                    \nconstructor(httpClient: HttpClient, authService: AuthService, userService: UserService, loggingService: LoggingService, registryService: RegistryService)\n                    \n                \n                        \n                            \n                                Defined in src/app/_services/transaction.service.ts:31\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        httpClient\n                                                  \n                                                        \n                                                                        HttpClient\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        authService\n                                                  \n                                                        \n                                                                        AuthService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        userService\n                                                  \n                                                        \n                                                                        UserService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        loggingService\n                                                  \n                                                        \n                                                                        LoggingService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        registryService\n                                                  \n                                                        \n                                                                        RegistryService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            addTransaction\n                        \n                        \n                    \n                \n            \n            \n                \naddTransaction(transaction, cacheSize: number)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/transaction.service.ts:89\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    transaction\n                                    \n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    cacheSize\n                                    \n                                                number\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getAccountInfo\n                        \n                        \n                    \n                \n            \n            \n                \ngetAccountInfo(account: string)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/transaction.service.ts:102\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    account\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         any\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getAddressTransactions\n                        \n                        \n                    \n                \n            \n            \n                \ngetAddressTransactions(address: string, offset: number, limit: number)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/transaction.service.ts:49\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    address\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    offset\n                                    \n                                                number\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    limit\n                                    \n                                                number\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Observable\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getAllTransactions\n                        \n                        \n                    \n                \n            \n            \n                \ngetAllTransactions(offset: number, limit: number)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/transaction.service.ts:45\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    offset\n                                    \n                                                number\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    limit\n                                    \n                                                number\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Observable\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            resetTransactionsList\n                        \n                        \n                    \n                \n            \n            \n                \nresetTransactionsList()\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/transaction.service.ts:97\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            setConversion\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    setConversion(conversion, cacheSize)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/transaction.service.ts:73\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Optional\n                                \n                            \n                            \n                                \n                                    conversion\n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    cacheSize\n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            setTransaction\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    setTransaction(transaction, cacheSize: number)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/transaction.service.ts:53\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    transaction\n                                    \n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    cacheSize\n                                    \n                                                number\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            Async\n                            transferRequest\n                        \n                        \n                    \n                \n            \n            \n                \n                    \n                    transferRequest(tokenAddress: string, senderAddress: string, recipientAddress: string, value: number)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_services/transaction.service.ts:108\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    tokenAddress\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    senderAddress\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    recipientAddress\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    value\n                                    \n                                                number\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n            \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            registry\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     CICRegistry\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_services/transaction.service.ts:31\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                                Private\n                            transactionList\n                            \n                        \n                    \n                \n                    \n                        \n                            Default value : new BehaviorSubject(this.transactions)\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_services/transaction.service.ts:27\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            transactions\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     any[]\n\n                        \n                    \n                    \n                        \n                            Default value : []\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_services/transaction.service.ts:26\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            transactionsSubject\n                            \n                        \n                    \n                \n                    \n                        \n                            Default value : this.transactionList.asObservable()\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_services/transaction.service.ts:28\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            userInfo\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         any\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_services/transaction.service.ts:29\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            web3\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     Web3\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_services/transaction.service.ts:30\n                            \n                        \n\n\n            \n        \n\n\n    \n\n\n    \n        import { Injectable } from '@angular/core';\nimport {first} from 'rxjs/operators';\nimport {BehaviorSubject, Observable} from 'rxjs';\nimport {environment} from '@src/environments/environment';\nimport {Envelope, User} from 'cic-client-meta';\nimport {UserService} from '@app/_services/user.service';\nimport { Keccak } from 'sha3';\nimport { utils } from 'ethers';\nimport {add0x, fromHex, strip0x, toHex} from '@src/assets/js/ethtx/dist/hex';\nimport {Tx} from '@src/assets/js/ethtx/dist';\nimport {toValue} from '@src/assets/js/ethtx/dist/tx';\nimport * as secp256k1 from 'secp256k1';\nimport {AuthService} from '@app/_services/auth.service';\nimport {defaultAccount} from '@app/_models';\nimport {LoggingService} from '@app/_services/logging.service';\nimport {HttpClient} from '@angular/common/http';\nimport {CICRegistry} from 'cic-client';\nimport {RegistryService} from '@app/_services/registry.service';\nimport Web3 from 'web3';\nconst vCard = require('vcard-parser');\n\n@Injectable({\n  providedIn: 'root'\n})\nexport class TransactionService {\n  transactions: any[] = [];\n  private transactionList = new BehaviorSubject(this.transactions);\n  transactionsSubject = this.transactionList.asObservable();\n  userInfo: any;\n  web3: Web3;\n  registry: CICRegistry;\n\n  constructor(\n    private httpClient: HttpClient,\n    private authService: AuthService,\n    private userService: UserService,\n    private loggingService: LoggingService,\n    private registryService: RegistryService,\n  ) {\n    this.web3 = this.registryService.getWeb3();\n    this.registry = registryService.getRegistry();\n    this.registry.load();\n  }\n\n  getAllTransactions(offset: number, limit: number): Observable {\n    return this.httpClient.get(`${environment.cicCacheUrl}/tx/${offset}/${limit}`);\n  }\n\n  getAddressTransactions(address: string, offset: number, limit: number): Observable {\n    return this.httpClient.get(`${environment.cicCacheUrl}/tx/${address}/${offset}/${limit}`);\n  }\n\n  async setTransaction(transaction, cacheSize: number): Promise {\n    if (this.transactions.find(cachedTx => cachedTx.tx.txHash === transaction.tx.txHash)) { return; }\n    transaction.value = Number(transaction.value);\n    transaction.type = 'transaction';\n    try {\n      this.userService.getAccountDetailsFromMeta(await User.toKey(transaction.from)).pipe(first()).subscribe((res) => {\n        transaction.sender = this.getAccountInfo(res.body);\n      }, error => {\n        transaction.sender = defaultAccount;\n      });\n      this.userService.getAccountDetailsFromMeta(await User.toKey(transaction.to)).pipe(first()).subscribe((res) => {\n        transaction.recipient = this.getAccountInfo(res.body);\n      }, error => {\n        transaction.recipient = defaultAccount;\n      });\n    } finally {\n      this.addTransaction(transaction, cacheSize);\n    }\n  }\n\n  async setConversion(conversion, cacheSize): Promise {\n    if (this.transactions.find(cachedTx => cachedTx.tx.txHash === conversion.tx.txHash)) { return; }\n    conversion.type = 'conversion';\n    conversion.fromValue = Number(conversion.fromValue);\n    conversion.toValue = Number(conversion.toValue);\n    try {\n      this.userService.getAccountDetailsFromMeta(await User.toKey(conversion.trader)).pipe(first()).subscribe((res) => {\n        conversion.sender = conversion.recipient = this.getAccountInfo(res.body);\n      }, error => {\n        conversion.sender = conversion.recipient = defaultAccount;\n      });\n    } finally {\n      this.addTransaction(conversion, cacheSize);\n    }\n  }\n\n  addTransaction(transaction, cacheSize: number): void {\n    this.transactions.unshift(transaction);\n    if (this.transactions.length > cacheSize) {\n      this.transactions.length = cacheSize;\n    }\n    this.transactionList.next(this.transactions);\n  }\n\n  resetTransactionsList(): void {\n    this.transactions = [];\n    this.transactionList.next(this.transactions);\n  }\n\n  getAccountInfo(account: string): any {\n    let accountInfo = Envelope.fromJSON(JSON.stringify(account)).unwrap().m.data;\n    accountInfo.vcard = vCard.parse(atob(accountInfo.vcard));\n    return accountInfo;\n  }\n\n  async transferRequest(tokenAddress: string, senderAddress: string, recipientAddress: string, value: number): Promise {\n    const transferAuthAddress = await this.registry.getContractAddressByName('TransferAuthorization');\n    const hashFunction = new Keccak(256);\n    hashFunction.update('createRequest(address,address,address,uint256)');\n    const hash = hashFunction.digest();\n    const methodSignature = hash.toString('hex').substring(0, 8);\n    const abiCoder = new utils.AbiCoder();\n    const abi = await abiCoder.encode(['address', 'address', 'address', 'uint256'], [senderAddress, recipientAddress, tokenAddress, value]);\n    const data = fromHex(methodSignature + strip0x(abi));\n    const tx = new Tx(environment.bloxbergChainId);\n    tx.nonce = await this.web3.eth.getTransactionCount(senderAddress);\n    tx.gasPrice = Number(await this.web3.eth.getGasPrice());\n    tx.gasLimit = 8000000;\n    tx.to = fromHex(strip0x(transferAuthAddress));\n    tx.value = toValue(value);\n    tx.data = data;\n    const txMsg = tx.message();\n    const privateKey =  this.authService.mutableKeyStore.getPrivateKey();\n    if (!privateKey.isDecrypted()) {\n      const password = window.prompt('password');\n      await privateKey.decrypt(password);\n    }\n    const signatureObject = secp256k1.ecdsaSign(txMsg, privateKey.keyPacket.privateParams.d);\n    const r = signatureObject.signature.slice(0, 32);\n    const s = signatureObject.signature.slice(32);\n    const v = signatureObject.recid;\n    tx.setSignature(r, s, v);\n    const txWire = add0x(toHex(tx.serializeRLP()));\n    const result = await this.web3.eth.sendSignedTransaction(txWire);\n    this.loggingService.sendInfoLevelMessage(`Result: ${result}`);\n    const transaction = await this.web3.eth.getTransaction(result.transactionHash);\n    this.loggingService.sendInfoLevelMessage(`Transaction: ${transaction}`);\n  }\n}\n\n    \n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"classes/TransactionServiceStub.html":{"url":"classes/TransactionServiceStub.html","title":"class - TransactionServiceStub","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n  Classes\n  TransactionServiceStub\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/testing/transaction-service-stub.ts\n        \n\n\n\n\n\n            \n    Index\n    \n        \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                getAllTransactions\n                            \n                            \n                                setConversion\n                            \n                            \n                                setTransaction\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getAllTransactions\n                        \n                        \n                    \n                \n            \n            \n                \ngetAllTransactions(offset: number, limit: number)\n                \n            \n\n\n            \n                \n                    Defined in src/testing/transaction-service-stub.ts:8\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    offset\n                                    \n                                                number\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    limit\n                                    \n                                                number\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Observable\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            setConversion\n                        \n                        \n                    \n                \n            \n            \n                \nsetConversion(conversion: any)\n                \n            \n\n\n            \n                \n                    Defined in src/testing/transaction-service-stub.ts:6\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    conversion\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            setTransaction\n                        \n                        \n                    \n                \n            \n            \n                \nsetTransaction(transaction: any, cacheSize: number)\n                \n            \n\n\n            \n                \n                    Defined in src/testing/transaction-service-stub.ts:4\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    transaction\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    cacheSize\n                                    \n                                                number\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n\n\n\n\n\n    \n\n\n    \n        import {Observable, of} from 'rxjs';\n\nexport class TransactionServiceStub {\n  setTransaction(transaction: any, cacheSize: number): void {}\n\n  setConversion(conversion: any): void {}\n\n  getAllTransactions(offset: number, limit: number): Observable {\n    return of('Hello World');\n  }\n}\n\n    \n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"components/TransactionsComponent.html":{"url":"components/TransactionsComponent.html","title":"component - TransactionsComponent","body":"\n                   \n\n\n\n\n\n  Components\n  TransactionsComponent\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n        \n            Template\n        \n        \n            Styles\n        \n        \n            DOM Tree\n        \n\n\n\n    \n    File\n\n\n    src/app/pages/transactions/transactions.component.ts\n\n\n\n\n    \n        Implements\n    \n    \n                    OnInit\n                    AfterViewInit\n    \n\n\n\n    Metadata\n    \n        \n\n            \n                changeDetection\n                ChangeDetectionStrategy.OnPush\n            \n\n\n\n\n\n\n\n\n\n\n            \n                selector\n                app-transactions\n            \n\n            \n                styleUrls\n                ./transactions.component.scss\n            \n\n\n\n            \n                templateUrl\n                ./transactions.component.html\n            \n\n\n\n\n\n\n\n\n        \n    \n\n\n    \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                defaultPageSize\n                            \n                            \n                                pageSizeOptions\n                            \n                            \n                                paginator\n                            \n                            \n                                sort\n                            \n                            \n                                transaction\n                            \n                            \n                                transactionDataSource\n                            \n                            \n                                transactionDisplayedColumns\n                            \n                            \n                                transactions\n                            \n                            \n                                transactionsType\n                            \n                            \n                                transactionsTypes\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                doFilter\n                            \n                            \n                                downloadCsv\n                            \n                            \n                                filterTransactions\n                            \n                            \n                                ngAfterViewInit\n                            \n                            \n                                ngOnInit\n                            \n                            \n                                viewTransaction\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n    \n    Constructor\n        \n            \n                \n                    \nconstructor(blockSyncService: BlockSyncService, transactionService: TransactionService, userService: UserService)\n                    \n                \n                        \n                            \n                                Defined in src/app/pages/transactions/transactions.component.ts:27\n                            \n                        \n\n                \n                    \n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                            \n                                        \n                                        \n                                                \n                                                        blockSyncService\n                                                  \n                                                        \n                                                                        BlockSyncService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        transactionService\n                                                  \n                                                        \n                                                                        TransactionService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                                \n                                                        userService\n                                                  \n                                                        \n                                                                        UserService\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n\n\n\n\n    \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            doFilter\n                        \n                        \n                    \n                \n            \n            \n                \ndoFilter(value: string, dataSource)\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/transactions/transactions.component.ts:51\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    value\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                                \n                                    dataSource\n                                    \n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            downloadCsv\n                        \n                        \n                    \n                \n            \n            \n                \ndownloadCsv()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/transactions/transactions.component.ts:71\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            filterTransactions\n                        \n                        \n                    \n                \n            \n            \n                \nfilterTransactions()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/transactions/transactions.component.ts:55\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            ngAfterViewInit\n                        \n                        \n                    \n                \n            \n            \n                \nngAfterViewInit()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/transactions/transactions.component.ts:66\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            ngOnInit\n                        \n                        \n                    \n                \n            \n            \n                \nngOnInit()\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/transactions/transactions.component.ts:37\n                \n            \n\n\n            \n                \n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            viewTransaction\n                        \n                        \n                    \n                \n            \n            \n                \nviewTransaction(transaction)\n                \n            \n\n\n            \n                \n                    Defined in src/app/pages/transactions/transactions.component.ts:47\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Optional\n                                \n                            \n                            \n                                \n                                    transaction\n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n    \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            defaultPageSize\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         number\n\n                        \n                    \n                    \n                        \n                            Default value : 10\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/transactions/transactions.component.ts:19\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            pageSizeOptions\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     Array\n\n                        \n                    \n                    \n                        \n                            Default value : [10, 20, 50, 100]\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/transactions/transactions.component.ts:20\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            paginator\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     MatPaginator\n\n                        \n                    \n                    \n                        \n                            Decorators : \n                            \n                            \n                                @ViewChild(MatPaginator)\n                            \n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/transactions/transactions.component.ts:26\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            sort\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     MatSort\n\n                        \n                    \n                    \n                        \n                            Decorators : \n                            \n                            \n                                @ViewChild(MatSort)\n                            \n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/transactions/transactions.component.ts:27\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            transaction\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         Transaction\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/transactions/transactions.component.ts:22\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            transactionDataSource\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     MatTableDataSource\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/transactions/transactions.component.ts:17\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            transactionDisplayedColumns\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     Array\n\n                        \n                    \n                    \n                        \n                            Default value : ['sender', 'recipient', 'value', 'created', 'type']\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/transactions/transactions.component.ts:18\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            transactions\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         Array\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/transactions/transactions.component.ts:21\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            transactionsType\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                    \n                        \n                            Default value : 'all'\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/transactions/transactions.component.ts:23\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            transactionsTypes\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     Array\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/pages/transactions/transactions.component.ts:24\n                            \n                        \n\n\n            \n        \n\n\n\n\n\n    \n        import {AfterViewInit, ChangeDetectionStrategy, Component, OnInit, ViewChild} from '@angular/core';\nimport {BlockSyncService, TransactionService, UserService} from '@app/_services';\nimport {MatTableDataSource} from '@angular/material/table';\nimport {MatPaginator} from '@angular/material/paginator';\nimport {MatSort} from '@angular/material/sort';\nimport {exportCsv} from '@app/_helpers';\nimport {first} from 'rxjs/operators';\nimport {Transaction} from '@app/_models';\n\n@Component({\n  selector: 'app-transactions',\n  templateUrl: './transactions.component.html',\n  styleUrls: ['./transactions.component.scss'],\n  changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class TransactionsComponent implements OnInit, AfterViewInit {\n  transactionDataSource: MatTableDataSource;\n  transactionDisplayedColumns: Array = ['sender', 'recipient', 'value', 'created', 'type'];\n  defaultPageSize: number = 10;\n  pageSizeOptions: Array = [10, 20, 50, 100];\n  transactions: Array;\n  transaction: Transaction;\n  transactionsType: string = 'all';\n  transactionsTypes: Array;\n\n  @ViewChild(MatPaginator) paginator: MatPaginator;\n  @ViewChild(MatSort) sort: MatSort;\n\n  constructor(\n    private blockSyncService: BlockSyncService,\n    private transactionService: TransactionService,\n    private userService: UserService\n  ) {\n    this.blockSyncService.blockSync();\n  }\n\n  ngOnInit(): void {\n    this.transactionService.transactionsSubject.subscribe(transactions => {\n      this.transactionDataSource = new MatTableDataSource(transactions);\n      this.transactionDataSource.paginator = this.paginator;\n      this.transactionDataSource.sort = this.sort;\n      this.transactions = transactions;\n    });\n    this.userService.getTransactionTypes().pipe(first()).subscribe(res => this.transactionsTypes = res);\n  }\n\n  viewTransaction(transaction): void {\n    this.transaction = transaction;\n  }\n\n  doFilter(value: string, dataSource): void {\n    dataSource.filter = value.trim().toLocaleLowerCase();\n  }\n\n  filterTransactions(): void {\n    if (this.transactionsType === 'all') {\n      this.transactionService.transactionsSubject.subscribe(transactions => {\n        this.transactionDataSource.data = transactions;\n        this.transactions = transactions;\n      });\n    } else {\n      this.transactionDataSource.data = this.transactions.filter(transaction => transaction.type === this.transactionsType);\n    }\n  }\n\n  ngAfterViewInit(): void {\n    this.transactionDataSource.paginator = this.paginator;\n    this.transactionDataSource.sort = this.sort;\n  }\n\n  downloadCsv(): void {\n    exportCsv(this.transactions, 'transactions');\n  }\n}\n\n    \n\n    \n        \n\n  \n\n  \n  \n  \n\n  \n    \n    \n    \n      \n        \n          Home\n          Transactions\n        \n      \n      \n        \n          Transfers\n        \n        \n\n          \n\n          \n            \n               TRANSFER TYPE \n              \n                ALL TRANSFERS\n                \n                  {{transactionType | uppercase}}\n                \n              \n            \n             EXPORT \n          \n\n          \n             Filter \n            \n            search\n          \n\n          \n\n            \n               Sender \n               {{transaction?.sender?.vcard.fn[0].value}} \n            \n\n            \n               Recipient \n               {{transaction?.recipient?.vcard.fn[0].value}} \n            \n\n            \n               Value \n              \n                {{transaction?.value | tokenRatio}}\n                {{transaction?.toValue | tokenRatio}}\n              \n            \n\n            \n               Created \n               {{transaction?.tx.timestamp | date}} \n            \n\n            \n               TYPE \n              \n                 {{transaction?.type}} \n              \n            \n\n            \n            \n          \n\n          \n\n        \n      \n    \n    \n  \n  \n  \n  \n\n\n\n\n    \n\n    \n                \n                    ./transactions.component.scss\n                \n                \n    \n\n    \n        \n        \n            \n                Legend\n            \n            \n                Html element\n            \n            \n                Component\n            \n            \n                Html element with directive\n            \n        \n    \n\n    \n\n\n\n\n\n\n        var COMPONENT_TEMPLATE = '                                              Home          Transactions                                      Transfers                                                               TRANSFER TYPE                               ALL TRANSFERS                                  {{transactionType | uppercase}}                                                       EXPORT                                  Filter                         search                                               Sender                {{transaction?.sender?.vcard.fn[0].value}}                                        Recipient                {{transaction?.recipient?.vcard.fn[0].value}}                                        Value                               {{transaction?.value | tokenRatio}}                {{transaction?.toValue | tokenRatio}}                                                     Created                {{transaction?.tx.timestamp | date}}                                        TYPE                                {{transaction?.type}}                                                                                                     '\n    var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n    var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[routerLink]'}];\n    var ACTUAL_COMPONENT = {'name': 'TransactionsComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"modules/TransactionsModule.html":{"url":"modules/TransactionsModule.html","title":"module - TransactionsModule","body":"\n                   \n\n\n\n\n    Modules\n    TransactionsModule\n\n\n\n    \n        \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_TransactionsModule\n\n\n\ncluster_TransactionsModule_imports\n\n\n\ncluster_TransactionsModule_exports\n\n\n\ncluster_TransactionsModule_declarations\n\n\n\n\nTransactionDetailsComponent\n\nTransactionDetailsComponent\n\n\n\nTransactionsModule\n\nTransactionsModule\n\nTransactionsModule -->\n\nTransactionDetailsComponent->TransactionsModule\n\n\n\n\n\nTransactionsComponent\n\nTransactionsComponent\n\nTransactionsModule -->\n\nTransactionsComponent->TransactionsModule\n\n\n\n\n\nTransactionDetailsComponent \n\nTransactionDetailsComponent \n\nTransactionDetailsComponent  -->\n\nTransactionsModule->TransactionDetailsComponent \n\n\n\n\n\nSharedModule\n\nSharedModule\n\nTransactionsModule -->\n\nSharedModule->TransactionsModule\n\n\n\n\n\nTransactionsRoutingModule\n\nTransactionsRoutingModule\n\nTransactionsModule -->\n\nTransactionsRoutingModule->TransactionsModule\n\n\n\n\n\n\n    \n    \n    \n        Zoom in\n        Reset\n        Zoom out\n    \n\n\n\n\n\n    \n        Info\n    \n    \n        Source\n    \n\n\n\n    \n\n        \n            File\n        \n        \n            src/app/pages/transactions/transactions.module.ts\n        \n\n\n\n\n        \n            \n                \n                    Declarations\n                    \n                        \n                            TransactionDetailsComponent\n                        \n                        \n                            TransactionsComponent\n                        \n                    \n                \n                \n                    Imports\n                    \n                        \n                            SharedModule\n                        \n                        \n                            TransactionsRoutingModule\n                        \n                    \n                \n                \n                    Exports\n                    \n                        \n                            TransactionDetailsComponent\n                        \n                    \n                \n            \n        \n\n\n    \n\n\n    \n        import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { TransactionsRoutingModule } from '@pages/transactions/transactions-routing.module';\nimport { TransactionsComponent } from '@pages/transactions/transactions.component';\nimport { TransactionDetailsComponent } from '@pages/transactions/transaction-details/transaction-details.component';\nimport {DataTablesModule} from 'angular-datatables';\nimport {SharedModule} from '@app/shared/shared.module';\nimport {MatTableModule} from '@angular/material/table';\nimport {MatCheckboxModule} from '@angular/material/checkbox';\nimport {MatPaginatorModule} from '@angular/material/paginator';\nimport {MatSortModule} from '@angular/material/sort';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatCardModule} from '@angular/material/card';\nimport {MatRippleModule} from '@angular/material/core';\nimport {MatSnackBarModule} from '@angular/material/snack-bar';\n\n\n@NgModule({\n  declarations: [TransactionsComponent, TransactionDetailsComponent],\n  exports: [\n    TransactionDetailsComponent\n  ],\n    imports: [\n        CommonModule,\n        TransactionsRoutingModule,\n        DataTablesModule,\n        SharedModule,\n        MatTableModule,\n        MatCheckboxModule,\n        MatPaginatorModule,\n        MatSortModule,\n        MatFormFieldModule,\n        MatInputModule,\n        MatButtonModule,\n        MatIconModule,\n        MatSelectModule,\n        MatCardModule,\n        MatRippleModule,\n      MatSnackBarModule,\n    ]\n})\nexport class TransactionsModule { }\n\n    \n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"modules/TransactionsRoutingModule.html":{"url":"modules/TransactionsRoutingModule.html","title":"module - TransactionsRoutingModule","body":"\n                   \n\n\n\n\n    Modules\n    TransactionsRoutingModule\n\n\n\n\n    \n        Info\n    \n    \n        Source\n    \n\n\n\n    \n\n        \n            File\n        \n        \n            src/app/pages/transactions/transactions-routing.module.ts\n        \n\n\n\n\n        \n            \n            \n        \n\n\n    \n\n\n    \n        import { NgModule } from '@angular/core';\nimport { Routes, RouterModule } from '@angular/router';\n\nimport { TransactionsComponent } from '@pages/transactions/transactions.component';\n\nconst routes: Routes = [{ path: '', component: TransactionsComponent }];\n\n@NgModule({\n  imports: [RouterModule.forChild(routes)],\n  exports: [RouterModule]\n})\nexport class TransactionsRoutingModule { }\n\n    \n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"classes/Tx.html":{"url":"classes/Tx.html","title":"class - Tx","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n  Classes\n  Tx\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_models/transaction.ts\n        \n\n\n\n\n\n            \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                block\n                            \n                            \n                                success\n                            \n                            \n                                timestamp\n                            \n                            \n                                txHash\n                            \n                            \n                                txIndex\n                            \n                        \n                    \n                \n\n\n\n\n\n\n        \n    \n\n\n\n            \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            block\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         number\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:18\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            success\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         boolean\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:19\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            timestamp\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         number\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:20\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            txHash\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:21\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            txIndex\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         number\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:22\n                            \n                        \n\n\n            \n        \n\n\n\n\n\n\n\n\n    \n\n\n    \n        import {AccountDetails} from '@app/_models/account';\n\nclass BlocksBloom {\n  low: number;\n  blockFilter: string;\n  blocktxFilter: string;\n  alg: string;\n  filterRounds: number;\n}\n\nclass TxToken {\n  address: string;\n  name: string;\n  symbol: string;\n}\n\nclass Tx {\n  block: number;\n  success: boolean;\n  timestamp: number;\n  txHash: string;\n  txIndex: number;\n}\n\nclass Transaction {\n  from: string;\n  sender: AccountDetails;\n  to: string;\n  recipient: AccountDetails;\n  token: TxToken;\n  tx: Tx;\n  value: number;\n  type?: string;\n}\n\nclass Conversion {\n  destinationToken: TxToken;\n  fromValue: number;\n  sourceToken: TxToken;\n  toValue: number;\n  trader: string;\n  user: AccountDetails;\n  tx: Tx;\n}\n\nexport {\n  BlocksBloom,\n  TxToken,\n  Tx,\n  Transaction,\n  Conversion\n};\n\n    \n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"classes/TxToken.html":{"url":"classes/TxToken.html","title":"class - TxToken","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n  Classes\n  TxToken\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_models/transaction.ts\n        \n\n\n\n\n\n            \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                address\n                            \n                            \n                                name\n                            \n                            \n                                symbol\n                            \n                        \n                    \n                \n\n\n\n\n\n\n        \n    \n\n\n\n            \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            address\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:12\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            name\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:13\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            symbol\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         string\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/transaction.ts:14\n                            \n                        \n\n\n            \n        \n\n\n\n\n\n\n\n\n    \n\n\n    \n        import {AccountDetails} from '@app/_models/account';\n\nclass BlocksBloom {\n  low: number;\n  blockFilter: string;\n  blocktxFilter: string;\n  alg: string;\n  filterRounds: number;\n}\n\nclass TxToken {\n  address: string;\n  name: string;\n  symbol: string;\n}\n\nclass Tx {\n  block: number;\n  success: boolean;\n  timestamp: number;\n  txHash: string;\n  txIndex: number;\n}\n\nclass Transaction {\n  from: string;\n  sender: AccountDetails;\n  to: string;\n  recipient: AccountDetails;\n  token: TxToken;\n  tx: Tx;\n  value: number;\n  type?: string;\n}\n\nclass Conversion {\n  destinationToken: TxToken;\n  fromValue: number;\n  sourceToken: TxToken;\n  toValue: number;\n  trader: string;\n  user: AccountDetails;\n  tx: Tx;\n}\n\nexport {\n  BlocksBloom,\n  TxToken,\n  Tx,\n  Transaction,\n  Conversion\n};\n\n    \n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"classes/UserServiceStub.html":{"url":"classes/UserServiceStub.html","title":"class - UserServiceStub","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n  Classes\n  UserServiceStub\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/testing/user-service-stub.ts\n        \n\n\n\n\n\n            \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                actions\n                            \n                            \n                                users\n                            \n                        \n                    \n                \n\n                \n                    \n                        Methods\n                    \n                \n                \n                    \n                        \n                            \n                                approveAction\n                            \n                            \n                                getActionById\n                            \n                            \n                                getUser\n                            \n                            \n                                getUserById\n                            \n                        \n                    \n                \n\n\n\n\n\n        \n    \n\n\n\n            \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            actions\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     []\n\n                        \n                    \n                    \n                        \n                            Default value : [\n    { id: 1, user: 'Tom', role: 'enroller', action: 'Disburse RSV 100', approval: false },\n    { id: 2, user: 'Christine', role: 'admin', action: 'Change user phone number', approval: true },\n    { id: 3, user: 'Will', role: 'superadmin', action: 'Reclaim RSV 1000', approval: true },\n    { id: 4, user: 'Vivian', role: 'enroller', action: 'Complete user profile', approval: true },\n    { id: 5, user: 'Jack', role: 'enroller', action: 'Reclaim RSV 200', approval: false },\n    { id: 6, user: 'Patience', role: 'enroller', action: 'Change user information', approval: false }\n  ]\n                        \n                    \n                        \n                            \n                                    Defined in src/testing/user-service-stub.ts:12\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            users\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     []\n\n                        \n                    \n                    \n                        \n                            Default value : [\n    {id: 1, name: 'John Doe', phone: '+25412345678', address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865', type: 'user', created: '08/16/2020', balance: '12987', failedPinAttempts: 1, status: 'approved', bio: 'Bodaboda', gender: 'male'},\n    {id: 2, name: 'Jane Buck', phone: '+25412341234', address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865', type: 'vendor', created: '04/02/2020', balance: '56281', failedPinAttempts: 0, status: 'approved', bio: 'Groceries', gender: 'female'},\n    {id: 3, name: 'Mc Donald', phone: '+25498765432', address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865', type: 'group', created: '11/16/2020', balance: '450', failedPinAttempts: 2, status: 'unapproved', bio: 'Food', gender: 'male'},\n    {id: 4, name: 'Hera Cles', phone: '+25498769876', address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865', type: 'user', created: '05/28/2020', balance: '5621', failedPinAttempts: 3, status: 'approved', bio: 'Shop', gender: 'female'},\n    {id: 5, name: 'Silver Fia', phone: '+25462518374', address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865', type: 'token agent', created: '10/10/2020', balance: '817', failedPinAttempts: 0, status: 'unapproved', bio: 'Electronics', gender: 'male'},\n  ]\n                        \n                    \n                        \n                            \n                                    Defined in src/testing/user-service-stub.ts:4\n                            \n                        \n\n\n            \n        \n\n\n            \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            approveAction\n                        \n                        \n                    \n                \n            \n            \n                \napproveAction(id: number)\n                \n            \n\n\n            \n                \n                    Defined in src/testing/user-service-stub.ts:71\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    id\n                                    \n                                                number\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         any\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getActionById\n                        \n                        \n                    \n                \n            \n            \n                \ngetActionById(id: string)\n                \n            \n\n\n            \n                \n                    Defined in src/testing/user-service-stub.ts:61\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    id\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         any\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getUser\n                        \n                        \n                    \n                \n            \n            \n                \ngetUser(userKey: string)\n                \n            \n\n\n            \n                \n                    Defined in src/testing/user-service-stub.ts:37\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    userKey\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Observable\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            getUserById\n                        \n                        \n                    \n                \n            \n            \n                \ngetUserById(id: string)\n                \n            \n\n\n            \n                \n                    Defined in src/testing/user-service-stub.ts:21\n                \n            \n\n\n            \n                \n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                \n                            \n                            \n                                \n                                    id\n                                    \n                                                string\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         any\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n\n\n\n\n\n    \n\n\n    \n        import {Observable, of} from 'rxjs';\n\nexport class UserServiceStub {\n  users = [\n    {id: 1, name: 'John Doe', phone: '+25412345678', address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865', type: 'user', created: '08/16/2020', balance: '12987', failedPinAttempts: 1, status: 'approved', bio: 'Bodaboda', gender: 'male'},\n    {id: 2, name: 'Jane Buck', phone: '+25412341234', address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865', type: 'vendor', created: '04/02/2020', balance: '56281', failedPinAttempts: 0, status: 'approved', bio: 'Groceries', gender: 'female'},\n    {id: 3, name: 'Mc Donald', phone: '+25498765432', address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865', type: 'group', created: '11/16/2020', balance: '450', failedPinAttempts: 2, status: 'unapproved', bio: 'Food', gender: 'male'},\n    {id: 4, name: 'Hera Cles', phone: '+25498769876', address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865', type: 'user', created: '05/28/2020', balance: '5621', failedPinAttempts: 3, status: 'approved', bio: 'Shop', gender: 'female'},\n    {id: 5, name: 'Silver Fia', phone: '+25462518374', address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865', type: 'token agent', created: '10/10/2020', balance: '817', failedPinAttempts: 0, status: 'unapproved', bio: 'Electronics', gender: 'male'},\n  ];\n\n  actions = [\n    { id: 1, user: 'Tom', role: 'enroller', action: 'Disburse RSV 100', approval: false },\n    { id: 2, user: 'Christine', role: 'admin', action: 'Change user phone number', approval: true },\n    { id: 3, user: 'Will', role: 'superadmin', action: 'Reclaim RSV 1000', approval: true },\n    { id: 4, user: 'Vivian', role: 'enroller', action: 'Complete user profile', approval: true },\n    { id: 5, user: 'Jack', role: 'enroller', action: 'Reclaim RSV 200', approval: false },\n    { id: 6, user: 'Patience', role: 'enroller', action: 'Change user information', approval: false }\n  ];\n\n  getUserById(id: string): any {\n    return {\n      id: 1,\n      name: 'John Doe',\n      phone: '+25412345678',\n      address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865',\n      type: 'user',\n      created: '08/16/2020',\n      balance: '12987',\n      failedPinAttempts: 1,\n      status: 'approved',\n      bio: 'Bodaboda',\n      gender: 'male'\n    };\n  }\n\n  getUser(userKey: string): Observable {\n    console.log('Here');\n    return of({\n      dateRegistered: 1595537208,\n      key: {\n        ethereum: [\n          '0x51d3c8e2e421604e2b644117a362d589c5434739',\n          '0x9D7c284907acbd4a0cE2dDD0AA69147A921a573D'\n        ]\n      },\n      location: {\n        external: {},\n        latitude: '22.430670',\n        longitude: '151.002995'\n      },\n      selling: [\n        'environment',\n        'health',\n        'transport'\n      ],\n      vcard: 'QkVHSU46VkNBUkQNClZFUlNJT046My4wDQpFTUFJTDphYXJuZXNlbkBob3RtYWlsLmNvbQ0KRk46S3VydMKgS3JhbmpjDQpOOktyYW5qYztLdXJ0Ozs7DQpURUw7VFlQPUNFTEw6NjkyNTAzMzQ5ODE5Ng0KRU5EOlZDQVJEDQo='\n    });\n  }\n\n  getActionById(id: string): any {\n    return {\n      id: 1,\n      user: 'Tom',\n      role: 'enroller',\n      action: 'Disburse RSV 100',\n      approval: false\n    };\n  }\n\n  approveAction(id: number): any {\n    return {\n      id: 1,\n      user: 'Tom',\n      role: 'enroller',\n      action: 'Disburse RSV 100',\n      approval: true\n    };\n  }\n}\n\n    \n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"classes/W3.html":{"url":"classes/W3.html","title":"class - W3","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n  Classes\n  W3\n\n\n\n        \n            Info\n        \n        \n            Source\n        \n\n\n\n    \n        \n            File\n        \n        \n            src/app/_models/settings.ts\n        \n\n\n\n\n\n            \n    Index\n    \n        \n                \n                    \n                        Properties\n                    \n                \n                \n                    \n                        \n                            \n                                engine\n                            \n                            \n                                provider\n                            \n                        \n                    \n                \n\n\n\n\n\n\n        \n    \n\n\n\n            \n    \n        \n            Properties\n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            engine\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         any\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/settings.ts:16\n                            \n                        \n\n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            provider\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         any\n\n                        \n                    \n                        \n                            \n                                    Defined in src/app/_models/settings.ts:17\n                            \n                        \n\n\n            \n        \n\n\n\n\n\n\n\n\n    \n\n\n    \n        class Settings {\n  w3: W3 = {\n    engine: undefined,\n    provider: undefined,\n  };\n  scanFilter: any;\n  registry: any;\n  txHelper: any;\n\n  constructor(scanFilter: any) {\n    this.scanFilter = scanFilter;\n  }\n}\n\nclass W3 {\n  engine: any;\n  provider: any;\n}\n\nexport {\n  Settings,\n  W3\n};\n\n    \n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"coverage.html":{"url":"coverage.html","title":"coverage - coverage","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n    Documentation coverage\n\n\n\n    \n\n\n\n    \n        \n            File\n            Type\n            Identifier\n            Statements\n        \n    \n    \n        \n            \n                \n                src/app/_eth/accountIndex.ts\n            \n            class\n            AccountIndex\n            \n                100 %\n                (9/9)\n            \n        \n        \n            \n                \n                src/app/_eth/accountIndex.ts\n            \n            variable\n            abi\n            \n                100 %\n                (1/1)\n            \n        \n        \n            \n                \n                src/app/_eth/accountIndex.ts\n            \n            variable\n            web3\n            \n                100 %\n                (1/1)\n            \n        \n        \n            \n                \n                src/app/_eth/token-registry.ts\n            \n            class\n            TokenRegistry\n            \n                100 %\n                (8/8)\n            \n        \n        \n            \n                \n                src/app/_eth/token-registry.ts\n            \n            variable\n            abi\n            \n                100 %\n                (1/1)\n            \n        \n        \n            \n                \n                src/app/_eth/token-registry.ts\n            \n            variable\n            web3\n            \n                100 %\n                (1/1)\n            \n        \n        \n            \n                \n                src/app/_guards/auth.guard.ts\n            \n            guard\n            AuthGuard\n            \n                100 %\n                (3/3)\n            \n        \n        \n            \n                \n                src/app/_guards/role.guard.ts\n            \n            guard\n            RoleGuard\n            \n                100 %\n                (3/3)\n            \n        \n        \n            \n                \n                src/app/_helpers/array-sum.ts\n            \n            function\n            arraySum\n            \n                100 %\n                (1/1)\n            \n        \n        \n            \n                \n                src/app/_helpers/clipboard-copy.ts\n            \n            function\n            copyToClipboard\n            \n                100 %\n                (1/1)\n            \n        \n        \n            \n                \n                src/app/_helpers/custom-error-state-matcher.ts\n            \n            class\n            CustomErrorStateMatcher\n            \n                100 %\n                (2/2)\n            \n        \n        \n            \n                \n                src/app/_helpers/custom.validator.ts\n            \n            class\n            CustomValidator\n            \n                100 %\n                (3/3)\n            \n        \n        \n            \n                \n                src/app/_helpers/export-csv.ts\n            \n            function\n            exportCsv\n            \n                100 %\n                (1/1)\n            \n        \n        \n            \n                \n                src/app/_helpers/global-error-handler.ts\n            \n            class\n            HttpError\n            \n                100 %\n                (3/3)\n            \n        \n        \n            \n                \n                src/app/_helpers/global-error-handler.ts\n            \n            injectable\n            GlobalErrorHandler\n            \n                100 %\n                (6/6)\n            \n        \n        \n            \n                \n                src/app/_helpers/http-getter.ts\n            \n            function\n            HttpGetter\n            \n                100 %\n                (1/1)\n            \n        \n        \n            \n                \n                src/app/_helpers/mock-backend.ts\n            \n            interceptor\n            MockBackendInterceptor\n            \n                100 %\n                (2/2)\n            \n        \n        \n            \n                \n                src/app/_helpers/mock-backend.ts\n            \n            variable\n            accountTypes\n            \n                100 %\n                (1/1)\n            \n        \n        \n            \n                \n                src/app/_helpers/mock-backend.ts\n            \n            variable\n            actions\n            \n                100 %\n                (1/1)\n            \n        \n        \n            \n                \n                src/app/_helpers/mock-backend.ts\n            \n            variable\n            areaNames\n            \n                100 %\n                (1/1)\n            \n        \n        \n            \n                \n                src/app/_helpers/mock-backend.ts\n            \n            variable\n            areaTypes\n            \n                100 %\n                (1/1)\n            \n        \n        \n            \n                \n                src/app/_helpers/mock-backend.ts\n            \n            variable\n            categories\n            \n                100 %\n                (1/1)\n            \n        \n        \n            \n                \n                src/app/_helpers/mock-backend.ts\n            \n            variable\n            genders\n            \n                100 %\n                (1/1)\n            \n        \n        \n            \n                \n                src/app/_helpers/mock-backend.ts\n            \n            variable\n            MockBackendProvider\n            \n                100 %\n                (1/1)\n            \n        \n        \n            \n                \n                src/app/_helpers/mock-backend.ts\n            \n            variable\n            tokens\n            \n                100 %\n                (1/1)\n            \n        \n        \n            \n                \n                src/app/_helpers/mock-backend.ts\n            \n            variable\n            transactionTypes\n            \n                100 %\n                (1/1)\n            \n        \n        \n            \n                \n                src/app/_helpers/read-csv.ts\n            \n            function\n            parseData\n            \n                100 %\n                (1/1)\n            \n        \n        \n            \n                \n                src/app/_helpers/read-csv.ts\n            \n            function\n            readCsv\n            \n                100 %\n                (1/1)\n            \n        \n        \n            \n                \n                src/app/_helpers/read-csv.ts\n            \n            variable\n            objCsv\n            \n                100 %\n                (1/1)\n            \n        \n        \n            \n                \n                src/app/_helpers/schema-validation.ts\n            \n            function\n            personValidation\n            \n                100 %\n                (1/1)\n            \n        \n        \n            \n                \n                src/app/_helpers/schema-validation.ts\n            \n            function\n            vcardValidation\n            \n                100 %\n                (1/1)\n            \n        \n        \n            \n                \n                src/app/_interceptors/error.interceptor.ts\n            \n            interceptor\n            ErrorInterceptor\n            \n                0 %\n                (0/3)\n            \n        \n        \n            \n                \n                src/app/_interceptors/http-config.interceptor.ts\n            \n            interceptor\n            HttpConfigInterceptor\n            \n                0 %\n                (0/3)\n            \n        \n        \n            \n                \n                src/app/_interceptors/logging.interceptor.ts\n            \n            interceptor\n            LoggingInterceptor\n            \n                0 %\n                (0/3)\n            \n        \n        \n            \n                \n                src/app/_models/account.ts\n            \n            interface\n            AccountDetails\n            \n                0 %\n                (0/11)\n            \n        \n        \n            \n                \n                src/app/_models/account.ts\n            \n            interface\n            Meta\n            \n                0 %\n                (0/4)\n            \n        \n        \n            \n                \n                src/app/_models/account.ts\n            \n            interface\n            MetaResponse\n            \n                0 %\n                (0/3)\n            \n        \n        \n            \n                \n                src/app/_models/account.ts\n            \n            interface\n            Signature\n            \n                0 %\n                (0/5)\n            \n        \n        \n            \n                \n                src/app/_models/account.ts\n            \n            variable\n            defaultAccount\n            \n                0 %\n                (0/1)\n            \n        \n        \n            \n                \n                src/app/_models/mappings.ts\n            \n            interface\n            Action\n            \n                0 %\n                (0/6)\n            \n        \n        \n            \n                \n                src/app/_models/mappings.ts\n            \n            interface\n            AreaName\n            \n                0 %\n                (0/3)\n            \n        \n        \n            \n                \n                src/app/_models/mappings.ts\n            \n            interface\n            AreaType\n            \n                0 %\n                (0/3)\n            \n        \n        \n            \n                \n                src/app/_models/mappings.ts\n            \n            interface\n            Category\n            \n                0 %\n                (0/3)\n            \n        \n        \n            \n                \n                src/app/_models/settings.ts\n            \n            class\n            Settings\n            \n                0 %\n                (0/6)\n            \n        \n        \n            \n                \n                src/app/_models/settings.ts\n            \n            class\n            W3\n            \n                0 %\n                (0/3)\n            \n        \n        \n            \n                \n                src/app/_models/staff.ts\n            \n            interface\n            Staff\n            \n                0 %\n                (0/6)\n            \n        \n        \n            \n                \n                src/app/_models/token.ts\n            \n            interface\n            Token\n            \n                0 %\n                (0/9)\n            \n        \n        \n            \n                \n                src/app/_models/transaction.ts\n            \n            class\n            BlocksBloom\n            \n                0 %\n                (0/6)\n            \n        \n        \n            \n                \n                src/app/_models/transaction.ts\n            \n            class\n            Conversion\n            \n                0 %\n                (0/8)\n            \n        \n        \n            \n                \n                src/app/_models/transaction.ts\n            \n            class\n            Transaction\n            \n                0 %\n                (0/9)\n            \n        \n        \n            \n                \n                src/app/_models/transaction.ts\n            \n            class\n            Tx\n            \n                0 %\n                (0/6)\n            \n        \n        \n            \n                \n                src/app/_models/transaction.ts\n            \n            class\n            TxToken\n            \n                0 %\n                (0/4)\n            \n        \n        \n            \n                \n                src/app/_pgp/pgp-key-store.ts\n            \n            class\n            MutablePgpKeyStore\n            \n                0 %\n                (0/26)\n            \n        \n        \n            \n                \n                src/app/_pgp/pgp-key-store.ts\n            \n            interface\n            MutableKeyStore\n            \n                0 %\n                (0/26)\n            \n        \n        \n            \n                \n                src/app/_pgp/pgp-key-store.ts\n            \n            variable\n            keyring\n            \n                0 %\n                (0/1)\n            \n        \n        \n            \n                \n                src/app/_pgp/pgp-signer.ts\n            \n            class\n            PGPSigner\n            \n                0 %\n                (0/14)\n            \n        \n        \n            \n                \n                src/app/_pgp/pgp-signer.ts\n            \n            interface\n            Signable\n            \n                0 %\n                (0/2)\n            \n        \n        \n            \n                \n                src/app/_pgp/pgp-signer.ts\n            \n            interface\n            Signer\n            \n                0 %\n                (0/7)\n            \n        \n        \n            \n                \n                src/app/_pgp/pgp-signer.ts\n            \n            variable\n            openpgp\n            \n                0 %\n                (0/1)\n            \n        \n        \n            \n                \n                src/app/_services/auth.service.ts\n            \n            injectable\n            AuthService\n            \n                0 %\n                (0/18)\n            \n        \n        \n            \n                \n                src/app/_services/block-sync.service.ts\n            \n            injectable\n            BlockSyncService\n            \n                0 %\n                (0/10)\n            \n        \n        \n            \n                \n                src/app/_services/error-dialog.service.ts\n            \n            injectable\n            ErrorDialogService\n            \n                0 %\n                (0/5)\n            \n        \n        \n            \n                \n                src/app/_services/location.service.ts\n            \n            injectable\n            LocationService\n            \n                0 %\n                (0/6)\n            \n        \n        \n            \n                \n                src/app/_services/logging.service.ts\n            \n            injectable\n            LoggingService\n            \n                0 %\n                (0/11)\n            \n        \n        \n            \n                \n                src/app/_services/registry.service.ts\n            \n            injectable\n            RegistryService\n            \n                0 %\n                (0/7)\n            \n        \n        \n            \n                \n                src/app/_services/token.service.ts\n            \n            injectable\n            TokenService\n            \n                0 %\n                (0/8)\n            \n        \n        \n            \n                \n                src/app/_services/transaction.service.ts\n            \n            injectable\n            TransactionService\n            \n                0 %\n                (0/16)\n            \n        \n        \n            \n                \n                src/app/_services/transaction.service.ts\n            \n            variable\n            vCard\n            \n                0 %\n                (0/1)\n            \n        \n        \n            \n                \n                src/app/_services/user.service.ts\n            \n            injectable\n            UserService\n            \n                0 %\n                (0/33)\n            \n        \n        \n            \n                \n                src/app/_services/user.service.ts\n            \n            variable\n            vCard\n            \n                0 %\n                (0/1)\n            \n        \n        \n            \n                \n                src/app/app.component.ts\n            \n            component\n            AppComponent\n            \n                0 %\n                (0/9)\n            \n        \n        \n            \n                \n                src/app/auth/_directives/password-toggle.directive.ts\n            \n            directive\n            PasswordToggleDirective\n            \n                0 %\n                (0/5)\n            \n        \n        \n            \n                \n                src/app/auth/auth.component.ts\n            \n            component\n            AuthComponent\n            \n                0 %\n                (0/11)\n            \n        \n        \n            \n                \n                src/app/pages/accounts/account-details/account-details.component.ts\n            \n            component\n            AccountDetailsComponent\n            \n                0 %\n                (0/43)\n            \n        \n        \n            \n                \n                src/app/pages/accounts/account-search/account-search.component.ts\n            \n            component\n            AccountSearchComponent\n            \n                0 %\n                (0/16)\n            \n        \n        \n            \n                \n                src/app/pages/accounts/accounts.component.ts\n            \n            component\n            AccountsComponent\n            \n                0 %\n                (0/17)\n            \n        \n        \n            \n                \n                src/app/pages/accounts/create-account/create-account.component.ts\n            \n            component\n            CreateAccountComponent\n            \n                0 %\n                (0/11)\n            \n        \n        \n            \n                \n                src/app/pages/admin/admin.component.ts\n            \n            component\n            AdminComponent\n            \n                0 %\n                (0/15)\n            \n        \n        \n            \n                \n                src/app/pages/pages.component.ts\n            \n            component\n            PagesComponent\n            \n                0 %\n                (0/3)\n            \n        \n        \n            \n                \n                src/app/pages/settings/organization/organization.component.ts\n            \n            component\n            OrganizationComponent\n            \n                0 %\n                (0/7)\n            \n        \n        \n            \n                \n                src/app/pages/settings/settings.component.ts\n            \n            component\n            SettingsComponent\n            \n                0 %\n                (0/12)\n            \n        \n        \n            \n                \n                src/app/pages/tokens/token-details/token-details.component.ts\n            \n            component\n            TokenDetailsComponent\n            \n                0 %\n                (0/4)\n            \n        \n        \n            \n                \n                src/app/pages/tokens/tokens.component.ts\n            \n            component\n            TokensComponent\n            \n                0 %\n                (0/11)\n            \n        \n        \n            \n                \n                src/app/pages/transactions/transaction-details/transaction-details.component.ts\n            \n            component\n            TransactionDetailsComponent\n            \n                0 %\n                (0/12)\n            \n        \n        \n            \n                \n                src/app/pages/transactions/transactions.component.ts\n            \n            component\n            TransactionsComponent\n            \n                0 %\n                (0/18)\n            \n        \n        \n            \n                \n                src/app/shared/_directives/menu-selection.directive.ts\n            \n            directive\n            MenuSelectionDirective\n            \n                0 %\n                (0/3)\n            \n        \n        \n            \n                \n                src/app/shared/_directives/menu-toggle.directive.ts\n            \n            directive\n            MenuToggleDirective\n            \n                0 %\n                (0/3)\n            \n        \n        \n            \n                \n                src/app/shared/_pipes/safe.pipe.ts\n            \n            pipe\n            SafePipe\n            \n                0 %\n                (0/1)\n            \n        \n        \n            \n                \n                src/app/shared/_pipes/token-ratio.pipe.ts\n            \n            pipe\n            TokenRatioPipe\n            \n                0 %\n                (0/1)\n            \n        \n        \n            \n                \n                src/app/shared/error-dialog/error-dialog.component.ts\n            \n            component\n            ErrorDialogComponent\n            \n                0 %\n                (0/3)\n            \n        \n        \n            \n                \n                src/app/shared/footer/footer.component.ts\n            \n            component\n            FooterComponent\n            \n                0 %\n                (0/3)\n            \n        \n        \n            \n                \n                src/app/shared/sidebar/sidebar.component.ts\n            \n            component\n            SidebarComponent\n            \n                0 %\n                (0/3)\n            \n        \n        \n            \n                \n                src/app/shared/topbar/topbar.component.ts\n            \n            component\n            TopbarComponent\n            \n                0 %\n                (0/3)\n            \n        \n        \n            \n                \n                src/environments/environment.dev.ts\n            \n            variable\n            environment\n            \n                0 %\n                (0/1)\n            \n        \n        \n            \n                \n                src/environments/environment.prod.ts\n            \n            variable\n            environment\n            \n                0 %\n                (0/1)\n            \n        \n        \n            \n                \n                src/environments/environment.ts\n            \n            variable\n            environment\n            \n                0 %\n                (0/1)\n            \n        \n        \n            \n                \n                src/testing/activated-route-stub.ts\n            \n            class\n            ActivatedRouteStub\n            \n                60 %\n                (3/5)\n            \n        \n        \n            \n                \n                src/testing/router-link-directive-stub.ts\n            \n            directive\n            RouterLinkDirectiveStub\n            \n                0 %\n                (0/4)\n            \n        \n        \n            \n                \n                src/testing/shared-module-stub.ts\n            \n            component\n            FooterStubComponent\n            \n                0 %\n                (0/1)\n            \n        \n        \n            \n                \n                src/testing/shared-module-stub.ts\n            \n            component\n            SidebarStubComponent\n            \n                0 %\n                (0/1)\n            \n        \n        \n            \n                \n                src/testing/shared-module-stub.ts\n            \n            component\n            TopbarStubComponent\n            \n                0 %\n                (0/1)\n            \n        \n        \n            \n                \n                src/testing/token-service-stub.ts\n            \n            class\n            TokenServiceStub\n            \n                0 %\n                (0/2)\n            \n        \n        \n            \n                \n                src/testing/transaction-service-stub.ts\n            \n            class\n            TransactionServiceStub\n            \n                0 %\n                (0/4)\n            \n        \n        \n            \n                \n                src/testing/user-service-stub.ts\n            \n            class\n            UserServiceStub\n            \n                0 %\n                (0/7)\n            \n        \n    \n\n\n\n\n\n    new Tablesort(document.getElementById('coverage-table'));\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"dependencies.html":{"url":"dependencies.html","title":"package-dependencies - dependencies","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n        Dependencies\n    \n    \n        \n            @angular/animations : ~10.2.0\n        \n            @angular/cdk : ~10.2.7\n        \n            @angular/common : ~10.2.0\n        \n            @angular/compiler : ~10.2.0\n        \n            @angular/core : ~10.2.0\n        \n            @angular/forms : ~10.2.0\n        \n            @angular/material : ~10.2.7\n        \n            @angular/platform-browser : ~10.2.0\n        \n            @angular/platform-browser-dynamic : ~10.2.0\n        \n            @angular/router : ~10.2.0\n        \n            @popperjs/core : ^2.5.4\n        \n            angular-datatables : ^9.0.2\n        \n            block-syncer : ^0.2.4\n        \n            bootstrap : ^4.5.3\n        \n            chart.js : ^2.9.4\n        \n            cic-client : 0.1.4\n        \n            cic-client-meta : 0.0.7-alpha.6\n        \n            cic-schemas-data-validator : ^1.0.0-alpha.3\n        \n            datatables.net : ^1.10.22\n        \n            datatables.net-dt : ^1.10.22\n        \n            ethers : ^5.0.31\n        \n            jquery : ^3.5.1\n        \n            mocha : ^8.2.1\n        \n            moolb : ^0.1.0\n        \n            ng2-charts : ^2.4.2\n        \n            ngx-logger : ^4.2.1\n        \n            openpgp : ^4.10.10\n        \n            popper.js : ^1.16.1\n        \n            rxjs : ~6.6.0\n        \n            sha3 : ^2.1.4\n        \n            tslib : ^2.0.0\n        \n            vcard-parser : ^1.0.0\n        \n            vcards-js : ^2.10.0\n        \n            web3 : ^1.3.0\n        \n            zone.js : ~0.10.2\n    \n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"miscellaneous/functions.html":{"url":"miscellaneous/functions.html","title":"miscellaneous-functions - functions","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n  Miscellaneous\n  Functions\n\n\n\n    Index\n    \n        \n            \n                \n                    \n                        \n                            arraySum   (src/.../array-sum.ts)\n                        \n                        \n                            copyToClipboard   (src/.../clipboard-copy.ts)\n                        \n                        \n                            exportCsv   (src/.../export-csv.ts)\n                        \n                        \n                            HttpGetter   (src/.../http-getter.ts)\n                        \n                        \n                            parseData   (src/.../read-csv.ts)\n                        \n                        \n                            personValidation   (src/.../schema-validation.ts)\n                        \n                        \n                            readCsv   (src/.../read-csv.ts)\n                        \n                        \n                            vcardValidation   (src/.../schema-validation.ts)\n                        \n                    \n                \n            \n        \n    \n\n\n    src/app/_helpers/array-sum.ts\n    \n        \n        \n            \n                \n                    \n                    \n                        \n                            arraySum\n                        \n                        \n                    \n                \n            \n            \n                \narraySum(arr)\n                \n            \n\n\n\n\n            \n                \n                    Returns the sum of all values in an array.\n\n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Optional\n                                    Description\n                                \n                            \n                            \n                                \n                                    arr\n\n                                    \n                                        No\n                                    \n\n\n                                    \n                                        \nAn array of numbers.\n\n\n                                    \n                                \n                            \n                        \n                    \n                    \n                        Example :\n                        \n                            Prints 6 for the array [1, 2, 3]:\n```typescript\n\nconsole.log(arraySum([1, 2, 3]));\n```\n\n                        \n                    \n                    \n                        Returns :         number\n\n                    \n                    \n                        The sum of all values in the array.\n\n                    \n                \n            \n        \n    \n    src/app/_helpers/clipboard-copy.ts\n    \n        \n        \n            \n                \n                    \n                    \n                        \n                            copyToClipboard\n                        \n                        \n                    \n                \n            \n            \n                \ncopyToClipboard(text: any)\n                \n            \n\n\n\n\n            \n                \n                    Copies set text to clipboard.\n\n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                    Description\n                                \n                            \n                            \n                                \n                                    text\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                    \n                                        \nThe text to be copied to the clipboard.\n\n\n                                    \n                                \n                            \n                        \n                    \n                    \n                        Example :\n                        \n                            copies 'Hello World!' to the clipboard and prints "true":\n```typescript\n\nconsole.log(copyToClipboard('Hello World!'));\n```\n\n                        \n                    \n                    \n                        Returns :         boolean\n\n                    \n                    \n                        true - If the copy operation is successful.\n\n                    \n                \n            \n        \n    \n    src/app/_helpers/export-csv.ts\n    \n        \n        \n            \n                \n                    \n                    \n                        \n                            exportCsv\n                        \n                        \n                    \n                \n            \n            \n                \nexportCsv(arrayData, filename, delimiter)\n                \n            \n\n\n\n\n            \n                \n                    Exports data to a CSV format and provides a download file.\n\n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Optional\n                                    Description\n                                \n                            \n                            \n                                \n                                    arrayData\n\n                                    \n                                        No\n                                    \n\n\n                                    \n                                        \nAn array of data to be converted to CSV format.\n\n\n                                    \n                                \n                                \n                                    filename\n\n                                    \n                                        No\n                                    \n\n\n                                    \n                                        \nThe name of the file to be downloaded.\n\n\n                                    \n                                \n                                \n                                    delimiter\n\n                                    \n                                        No\n                                    \n\n\n                                    \n                                        \nThe delimiter to be used when converting to CSV format.\nDefaults to commas.\n\n\n                                    \n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :         void\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    src/app/_helpers/http-getter.ts\n    \n        \n        \n            \n                \n                    \n                    \n                        \n                            HttpGetter\n                        \n                        \n                    \n                \n            \n            \n                \nHttpGetter()\n                \n            \n\n\n\n\n            \n                \n                    Provides an avenue of fetching resources via HTTP calls. \n\n\n                    \n                        Returns :         void\n\n                    \n                \n            \n        \n    \n    src/app/_helpers/read-csv.ts\n    \n        \n        \n            \n                \n                    \n                    \n                        \n                            parseData\n                        \n                        \n                    \n                \n            \n            \n                \nparseData(data: any)\n                \n            \n\n\n\n\n            \n                \n                    Parses data to CSV format.\n\n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                    Description\n                                \n                            \n                            \n                                \n                                    data\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                    \n                                        \nThe data to be parsed.\n\n\n                                    \n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Array\n\n                    \n                    \n                        An array of the parsed data.\n\n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            readCsv\n                        \n                        \n                    \n                \n            \n            \n                \nreadCsv(input: any)\n                \n            \n\n\n\n\n            \n                \n                    Reads a csv file and converts it to an array.\n\n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                    Description\n                                \n                            \n                            \n                                \n                                    input\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                    \n                                        \nThe file to be read.\n\n\n                                    \n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Array | void\n\n                    \n                    \n                        An array of the read data.\n\n                    \n                \n            \n        \n    \n    src/app/_helpers/schema-validation.ts\n    \n        \n        \n            \n                \n                    \n                    \n                        \n                            personValidation\n                        \n                        \n                    \n                \n            \n            \n                \npersonValidation(person: any)\n                \n            \n\n\n\n\n            \n                \n                    Validates a person object against the defined Person schema.\n\n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                    Description\n                                \n                            \n                            \n                                \n                                    person\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                    \n                                        \nA person object to be validated.\n\n\n                                    \n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            vcardValidation\n                        \n                        \n                    \n                \n            \n            \n                \nvcardValidation(vcard: any)\n                \n            \n\n\n\n\n            \n                \n                    Validates a vcard object against the defined Vcard schema.\n\n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                    Description\n                                \n                            \n                            \n                                \n                                    vcard\n                                    \n                                                any\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                    \n                                        \nA vcard object to be validated.\n\n\n                                    \n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Promise\n\n                    \n                    \n                        \n                    \n                \n            \n        \n    \n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"index.html":{"url":"index.html","title":"getting-started - index","body":"\n                   \n\nCICADA\nAn angular admin web client for managing users and transactions in the CIC network.\nThis project was generated with Angular CLI version 10.2.0.\nAngular CLI\nRun npm install -g @angular/cli to install the angular CLI.\nDevelopment server\nRun npm run start:dev for a dev server. Navigate to http://localhost:4200/. The app will automatically reload if you change any of the source files.\nCode scaffolding\nRun ng generate component component-name to generate a new component. You can also use ng generate directive|pipe|service|class|guard|interface|enum|module.\nLazy-loading feature modules\nRun ng generate module module-name --route module-name --module app.module to generate a new module on route /module-name in the app module. \nBuild\nset you environment variables - set these via environment variables as found in set-env.ts\n// TODO create a .env file so people don't have to set these one-by-one\nRun npm run build:dev to build the project. The build artifacts will be stored in the dist/ directory. Use the build:prod script for a production build.\nRunning unit tests\nRun npm run test:dev to execute the unit tests via Karma.\nRunning end-to-end tests\nRun ng e2e to execute the end-to-end tests via Protractor.\nEnvironment variables\nEnvironment variables are contained in the .env file. See .env.example for a template.\nDefault environment variables are set in the set-env.ts file.\nOnce loaded they will be populated in the directory src/environments/.\nIt contains environment variables for development on environment.ts and production on environment.prod.ts.\nFurther help\nTo get more help on the Angular CLI use ng help or go check out the Angular CLI Overview and Command Reference page.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"license.html":{"url":"license.html","title":"getting-started - license","body":"\n                   \n\n                GNU GENERAL PUBLIC LICENSE\n                   Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. https://fsf.org/\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n                        Preamble  The GNU General Public License is a free, copyleft license for\nsoftware and other kinds of works.\n  The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works.  By contrast,\nthe GNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users.  We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors.  You can apply it to\nyour programs, too.\n  When we speak of free software, we are referring to freedom, not\nprice.  Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n  To protect your rights, we need to prevent others from denying you\nthese rights or asking you to surrender the rights.  Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n  For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must pass on to the recipients the same\nfreedoms that you received.  You must make sure that they, too, receive\nor can get the source code.  And you must show them these terms so they\nknow their rights.\n  Developers that use the GNU GPL protect your rights with two steps:\n(1) assert copyright on the software, and (2) offer you this License\ngiving you legal permission to copy, distribute and/or modify it.\n  For the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software.  For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n  Some devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so.  This is fundamentally incompatible with the aim of\nprotecting users' freedom to change the software.  The systematic\npattern of such abuse occurs in the area of products for individuals to\nuse, which is precisely where it is most unacceptable.  Therefore, we\nhave designed this version of the GPL to prohibit the practice for those\nproducts.  If such problems arise substantially in other domains, we\nstand ready to extend this provision to those domains in future versions\nof the GPL, as needed to protect the freedom of users.\n  Finally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary.  To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n  The precise terms and conditions for copying, distribution and\nmodification follow.\n                   TERMS AND CONDITIONS\nDefinitions.\n\"This License\" refers to version 3 of the GNU General Public License.\n\"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\"The Program\" refers to any copyrightable work licensed under this\nLicense.  Each licensee is addressed as \"you\".  \"Licensees\" and\n\"recipients\" may be individuals or organizations.\nTo \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy.  The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\nA \"covered work\" means either the unmodified Program or a work based\non the Program.\nTo \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy.  Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\nTo \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies.  Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\nAn interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License.  If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\nSource Code.\nThe \"source code\" for a work means the preferred form of the work\nfor making modifications to it.  \"Object code\" means any non-source\nform of a work.\nA \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\nThe \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form.  A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\nThe \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities.  However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work.  For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\nThe Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\nThe Corresponding Source for a work in source code form is that\nsame work.\n\nBasic Permissions.\nAll rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met.  This License explicitly affirms your unlimited\npermission to run the unmodified Program.  The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work.  This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\nYou may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force.  You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright.  Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\nConveying under any other circumstances is permitted solely under\nthe conditions stated below.  Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\nProtecting Users' Legal Rights From Anti-Circumvention Law.\nNo covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\nWhen you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\nConveying Verbatim Copies.\nYou may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\nYou may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\nConveying Modified Source Versions.\nYou may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\na) The work must carry prominent notices stating that you modified\nit, and giving a relevant date.\nb) The work must carry prominent notices stating that it is\nreleased under this License and any conditions added under section\n\nThis requirement modifies the requirement in section 4 to\n\"keep intact all notices\".\n\nc) You must license the entire work, as a whole, under this\nLicense to anyone who comes into possession of a copy.  This\nLicense will therefore apply, along with any applicable section 7\nadditional terms, to the whole of the work, and all its parts,\nregardless of how they are packaged.  This License gives no\npermission to license the work in any other way, but it does not\ninvalidate such permission if you have separately received it.\nd) If the work has interactive user interfaces, each must display\nAppropriate Legal Notices; however, if the Program has interactive\ninterfaces that do not display Appropriate Legal Notices, your\nwork need not make them do so.\nA compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit.  Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\nConveying Non-Source Forms.\nYou may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\na) Convey the object code in, or embodied in, a physical product\n(including a physical distribution medium), accompanied by the\nCorresponding Source fixed on a durable physical medium\ncustomarily used for software interchange.\nb) Convey the object code in, or embodied in, a physical product\n(including a physical distribution medium), accompanied by a\nwritten offer, valid for at least three years and valid for as\nlong as you offer spare parts or customer support for that product\nmodel, to give anyone who possesses the object code either (1) a\ncopy of the Corresponding Source for all the software in the\nproduct that is covered by this License, on a durable physical\nmedium customarily used for software interchange, for a price no\nmore than your reasonable cost of physically performing this\nconveying of source, or (2) access to copy the\nCorresponding Source from a network server at no charge.\nc) Convey individual copies of the object code with a copy of the\nwritten offer to provide the Corresponding Source.  This\nalternative is allowed only occasionally and noncommercially, and\nonly if you received the object code with such an offer, in accord\nwith subsection 6b.\nd) Convey the object code by offering access from a designated\nplace (gratis or for a charge), and offer equivalent access to the\nCorresponding Source in the same way through the same place at no\nfurther charge.  You need not require recipients to copy the\nCorresponding Source along with the object code.  If the place to\ncopy the object code is a network server, the Corresponding Source\nmay be on a different server (operated by you or a third party)\nthat supports equivalent copying facilities, provided you maintain\nclear directions next to the object code saying where to find the\nCorresponding Source.  Regardless of what server hosts the\nCorresponding Source, you remain obligated to ensure that it is\navailable for as long as needed to satisfy these requirements.\ne) Convey the object code using peer-to-peer transmission, provided\nyou inform other peers where the object code and Corresponding\nSource of the work are being offered to the general public at no\ncharge under subsection 6d.\nA separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\nA \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling.  In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage.  For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product.  A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source.  The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\nIf you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information.  But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\nThe requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed.  Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\nCorresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\nAdditional Terms.\n\"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law.  If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\nWhen you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit.  (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.)  You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\nNotwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\na) Disclaiming warranty or limiting liability differently from the\nterms of sections 15 and 16 of this License; or\nb) Requiring preservation of specified reasonable legal notices or\nauthor attributions in that material or in the Appropriate Legal\nNotices displayed by works containing it; or\nc) Prohibiting misrepresentation of the origin of that material, or\nrequiring that modified versions of such material be marked in\nreasonable ways as different from the original version; or\nd) Limiting the use for publicity purposes of names of licensors or\nauthors of the material; or\ne) Declining to grant rights under trademark law for use of some\ntrade names, trademarks, or service marks; or\nf) Requiring indemnification of licensors and authors of that\nmaterial by anyone who conveys the material (or modified versions of\nit) with contractual assumptions of liability to the recipient, for\nany liability that these contractual assumptions directly impose on\nthose licensors and authors.\nAll other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10.  If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term.  If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\nIf you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\nAdditional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\nTermination.\nYou may not propagate or modify a covered work except as expressly\nprovided under this License.  Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\nHowever, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\nMoreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\nTermination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License.  If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\nAcceptance Not Required for Having Copies.\nYou are not required to accept this License in order to receive or\nrun a copy of the Program.  Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance.  However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work.  These actions infringe copyright if you do\nnot accept this License.  Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\nAutomatic Licensing of Downstream Recipients.\nEach time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License.  You are not responsible\nfor enforcing compliance by third parties with this License.\nAn \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations.  If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\nYou may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License.  For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\nPatents.\nA \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based.  The\nwork thus licensed is called the contributor's \"contributor version\".\nA contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version.  For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\nEach contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\nIn the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement).  To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\nIf you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients.  \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\nIf, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\nA patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License.  You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\nNothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\nNo Surrender of Others' Freedom.\nIf conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License.  If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all.  For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\nUse with the GNU Affero General Public License.\nNotwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU Affero General Public License into a single\ncombined work, and to convey the resulting work.  The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the special requirements of the GNU Affero General Public License,\nsection 13, concerning interaction through a network will apply to the\ncombination as such.\n\nRevised Versions of this License.\nThe Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time.  Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\nEach version is given a distinguishing version number.  If the\nProgram specifies that a certain numbered version of the GNU General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation.  If the Program does not specify a version number of the\nGNU General Public License, you may choose any version ever published\nby the Free Software Foundation.\nIf the Program specifies that a proxy can decide which future\nversions of the GNU General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\nLater license versions may give you additional or different\npermissions.  However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\nDisclaimer of Warranty.\nTHERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\nLimitation of Liability.\nIN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\nInterpretation of Sections 15 and 16.\nIf the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n           END OF TERMS AND CONDITIONS\n\n  How to Apply These Terms to Your New ProgramsIf you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\nTo do so, attach the following notices to the program.  It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\nCIC Staff Client\nCopyright (C) 2021  Grassroots Economics\nThis program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation, either version 3 of the License, or\n(at your option) any later version.\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see https://www.gnu.org/licenses/.\n\n\nAlso add information on how to contact you by electronic and paper mail.\n  If the program does terminal interaction, make it output a short\nnotice like this when it starts in an interactive mode:\n  Copyright (C) 2021  Grassroots Economics\nThis program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\nThis is free software, and you are welcome to redistribute it\nunder certain conditions; type `show c' for details.The hypothetical commands show w' andshow c' should show the appropriate\nparts of the General Public License.  Of course, your program's commands\nmight be different; for a GUI interface, you would use an \"about box\".\n  You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU GPL, see\nhttps://www.gnu.org/licenses/.\n  The GNU General Public License does not permit incorporating your program\ninto proprietary programs.  If your program is a subroutine library, you\nmay consider it more useful to permit linking proprietary applications with\nthe library.  If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License.  But first, please read\nhttps://www.gnu.org/licenses/why-not-lgpl.html.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"modules.html":{"url":"modules.html","title":"modules - modules","body":"\n                   \n\n\n\n\n    Modules\n\n\n    \n            \n                \n                    \n                        AccountsModule\n                    \n                    \n                                \n                                    \n                                        Your browser does not support SVG\n                                    \n                                \n                        \n                            Browse\n                        \n                    \n                \n            \n            \n                \n                    \n                        AccountsRoutingModule\n                    \n                    \n                                \n                                    No graph available.\n                                \n                        \n                            Browse\n                        \n                    \n                \n            \n            \n                \n                    \n                        AdminModule\n                    \n                    \n                                \n                                    \n                                        Your browser does not support SVG\n                                    \n                                \n                        \n                            Browse\n                        \n                    \n                \n            \n            \n                \n                    \n                        AdminRoutingModule\n                    \n                    \n                                \n                                    No graph available.\n                                \n                        \n                            Browse\n                        \n                    \n                \n            \n            \n                \n                    \n                        AppModule\n                    \n                    \n                                \n                                    \n                                        Your browser does not support SVG\n                                    \n                                \n                        \n                            Browse\n                        \n                    \n                \n            \n            \n                \n                    \n                        AppRoutingModule\n                    \n                    \n                                \n                                    No graph available.\n                                \n                        \n                            Browse\n                        \n                    \n                \n            \n            \n                \n                    \n                        AuthModule\n                    \n                    \n                                \n                                    \n                                        Your browser does not support SVG\n                                    \n                                \n                        \n                            Browse\n                        \n                    \n                \n            \n            \n                \n                    \n                        AuthRoutingModule\n                    \n                    \n                                \n                                    No graph available.\n                                \n                        \n                            Browse\n                        \n                    \n                \n            \n            \n                \n                    \n                        PagesModule\n                    \n                    \n                                \n                                    \n                                        Your browser does not support SVG\n                                    \n                                \n                        \n                            Browse\n                        \n                    \n                \n            \n            \n                \n                    \n                        PagesRoutingModule\n                    \n                    \n                                \n                                    No graph available.\n                                \n                        \n                            Browse\n                        \n                    \n                \n            \n            \n                \n                    \n                        SettingsModule\n                    \n                    \n                                \n                                    \n                                        Your browser does not support SVG\n                                    \n                                \n                        \n                            Browse\n                        \n                    \n                \n            \n            \n                \n                    \n                        SettingsRoutingModule\n                    \n                    \n                                \n                                    No graph available.\n                                \n                        \n                            Browse\n                        \n                    \n                \n            \n            \n                \n                    \n                        SharedModule\n                    \n                    \n                                \n                                    \n                                        Your browser does not support SVG\n                                    \n                                \n                        \n                            Browse\n                        \n                    \n                \n            \n            \n                \n                    \n                        TokensModule\n                    \n                    \n                                \n                                    \n                                        Your browser does not support SVG\n                                    \n                                \n                        \n                            Browse\n                        \n                    \n                \n            \n            \n                \n                    \n                        TokensRoutingModule\n                    \n                    \n                                \n                                    No graph available.\n                                \n                        \n                            Browse\n                        \n                    \n                \n            \n            \n                \n                    \n                        TransactionsModule\n                    \n                    \n                                \n                                    \n                                        Your browser does not support SVG\n                                    \n                                \n                        \n                            Browse\n                        \n                    \n                \n            \n            \n                \n                    \n                        TransactionsRoutingModule\n                    \n                    \n                                \n                                    No graph available.\n                                \n                        \n                            Browse\n                        \n                    \n                \n            \n    \n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"overview.html":{"url":"overview.html","title":"overview - overview","body":"\n                   \n\n\n\n    Overview\n\n  \n\n    \n        \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_AccountsModule\n\n\n\ncluster_AccountsModule_declarations\n\n\n\ncluster_AccountsModule_imports\n\n\n\ncluster_AdminModule\n\n\n\ncluster_AdminModule_declarations\n\n\n\ncluster_AdminModule_imports\n\n\n\ncluster_AppModule\n\n\n\ncluster_AppModule_declarations\n\n\n\ncluster_AppModule_imports\n\n\n\ncluster_AppModule_bootstrap\n\n\n\ncluster_AppModule_providers\n\n\n\ncluster_AuthModule\n\n\n\ncluster_AuthModule_declarations\n\n\n\ncluster_AuthModule_imports\n\n\n\ncluster_PagesModule\n\n\n\ncluster_PagesModule_declarations\n\n\n\ncluster_PagesModule_imports\n\n\n\ncluster_SettingsModule\n\n\n\ncluster_SettingsModule_declarations\n\n\n\ncluster_SettingsModule_imports\n\n\n\ncluster_SharedModule\n\n\n\ncluster_SharedModule_declarations\n\n\n\ncluster_SharedModule_exports\n\n\n\ncluster_TokensModule\n\n\n\ncluster_TokensModule_declarations\n\n\n\ncluster_TokensModule_imports\n\n\n\ncluster_TransactionsModule\n\n\n\ncluster_TransactionsModule_declarations\n\n\n\ncluster_TransactionsModule_imports\n\n\n\ncluster_TransactionsModule_exports\n\n\n\n\nAccountDetailsComponent\n\nAccountDetailsComponent\n\n\n\nAccountsModule\n\nAccountsModule\n\nAccountsModule -->\n\nAccountDetailsComponent->AccountsModule\n\n\n\n\n\nAccountSearchComponent\n\nAccountSearchComponent\n\nAccountsModule -->\n\nAccountSearchComponent->AccountsModule\n\n\n\n\n\nAccountsComponent\n\nAccountsComponent\n\nAccountsModule -->\n\nAccountsComponent->AccountsModule\n\n\n\n\n\nCreateAccountComponent\n\nCreateAccountComponent\n\nAccountsModule -->\n\nCreateAccountComponent->AccountsModule\n\n\n\n\n\nAccountsRoutingModule\n\nAccountsRoutingModule\n\nAccountsModule -->\n\nAccountsRoutingModule->AccountsModule\n\n\n\n\n\nSharedModule\n\nSharedModule\n\nAccountsModule -->\n\nSharedModule->AccountsModule\n\n\n\n\n\nTransactionsModule\n\nTransactionsModule\n\nTransactionsModule -->\n\nSharedModule->TransactionsModule\n\n\n\n\n\nAdminModule\n\nAdminModule\n\nAdminModule -->\n\nSharedModule->AdminModule\n\n\n\n\n\nAppModule\n\nAppModule\n\nAppModule -->\n\nSharedModule->AppModule\n\n\n\n\n\nPagesModule\n\nPagesModule\n\nPagesModule -->\n\nSharedModule->PagesModule\n\n\n\n\n\nSettingsModule\n\nSettingsModule\n\nSettingsModule -->\n\nSharedModule->SettingsModule\n\n\n\n\n\nFooterComponent \n\nFooterComponent \n\nFooterComponent  -->\n\nSharedModule->FooterComponent \n\n\n\n\n\nMenuSelectionDirective \n\nMenuSelectionDirective \n\nMenuSelectionDirective  -->\n\nSharedModule->MenuSelectionDirective \n\n\n\n\n\nSafePipe \n\nSafePipe \n\nSafePipe  -->\n\nSharedModule->SafePipe \n\n\n\n\n\nSidebarComponent \n\nSidebarComponent \n\nSidebarComponent  -->\n\nSharedModule->SidebarComponent \n\n\n\n\n\nTokenRatioPipe \n\nTokenRatioPipe \n\nTokenRatioPipe  -->\n\nSharedModule->TokenRatioPipe \n\n\n\n\n\nTopbarComponent \n\nTopbarComponent \n\nTopbarComponent  -->\n\nSharedModule->TopbarComponent \n\n\n\n\n\nTokensModule\n\nTokensModule\n\nTokensModule -->\n\nSharedModule->TokensModule\n\n\n\nAccountsModule -->\n\nTransactionsModule->AccountsModule\n\n\n\n\n\nTransactionDetailsComponent \n\nTransactionDetailsComponent \n\nTransactionDetailsComponent  -->\n\nTransactionsModule->TransactionDetailsComponent \n\n\n\n\n\nAdminComponent\n\nAdminComponent\n\nAdminModule -->\n\nAdminComponent->AdminModule\n\n\n\n\n\nAdminRoutingModule\n\nAdminRoutingModule\n\nAdminModule -->\n\nAdminRoutingModule->AdminModule\n\n\n\n\n\nAppComponent\n\nAppComponent\n\nAppModule -->\n\nAppComponent->AppModule\n\n\n\n\n\nAppComponent \n\nAppComponent \n\nAppComponent  -->\n\nAppModule->AppComponent \n\n\n\n\n\nAppRoutingModule\n\nAppRoutingModule\n\nAppModule -->\n\nAppRoutingModule->AppModule\n\n\n\n\n\nErrorInterceptor\n\nErrorInterceptor\n\nAppModule -->\n\nErrorInterceptor->AppModule\n\n\n\n\n\nGlobalErrorHandler\n\nGlobalErrorHandler\n\nAppModule -->\n\nGlobalErrorHandler->AppModule\n\n\n\n\n\nHttpConfigInterceptor\n\nHttpConfigInterceptor\n\nAppModule -->\n\nHttpConfigInterceptor->AppModule\n\n\n\n\n\nLoggingInterceptor\n\nLoggingInterceptor\n\nAppModule -->\n\nLoggingInterceptor->AppModule\n\n\n\n\n\nAuthComponent\n\nAuthComponent\n\n\n\nAuthModule\n\nAuthModule\n\nAuthModule -->\n\nAuthComponent->AuthModule\n\n\n\n\n\nPasswordToggleDirective\n\nPasswordToggleDirective\n\nAuthModule -->\n\nPasswordToggleDirective->AuthModule\n\n\n\n\n\nAuthRoutingModule\n\nAuthRoutingModule\n\nAuthModule -->\n\nAuthRoutingModule->AuthModule\n\n\n\n\n\nPagesComponent\n\nPagesComponent\n\nPagesModule -->\n\nPagesComponent->PagesModule\n\n\n\n\n\nPagesRoutingModule\n\nPagesRoutingModule\n\nPagesModule -->\n\nPagesRoutingModule->PagesModule\n\n\n\n\n\nOrganizationComponent\n\nOrganizationComponent\n\nSettingsModule -->\n\nOrganizationComponent->SettingsModule\n\n\n\n\n\nSettingsComponent\n\nSettingsComponent\n\nSettingsModule -->\n\nSettingsComponent->SettingsModule\n\n\n\n\n\nSettingsRoutingModule\n\nSettingsRoutingModule\n\nSettingsModule -->\n\nSettingsRoutingModule->SettingsModule\n\n\n\n\n\nErrorDialogComponent\n\nErrorDialogComponent\n\nSharedModule -->\n\nErrorDialogComponent->SharedModule\n\n\n\n\n\nFooterComponent\n\nFooterComponent\n\nSharedModule -->\n\nFooterComponent->SharedModule\n\n\n\n\n\nMenuSelectionDirective\n\nMenuSelectionDirective\n\nSharedModule -->\n\nMenuSelectionDirective->SharedModule\n\n\n\n\n\nMenuToggleDirective\n\nMenuToggleDirective\n\nSharedModule -->\n\nMenuToggleDirective->SharedModule\n\n\n\n\n\nSafePipe\n\nSafePipe\n\nSharedModule -->\n\nSafePipe->SharedModule\n\n\n\n\n\nSidebarComponent\n\nSidebarComponent\n\nSharedModule -->\n\nSidebarComponent->SharedModule\n\n\n\n\n\nTokenRatioPipe\n\nTokenRatioPipe\n\nSharedModule -->\n\nTokenRatioPipe->SharedModule\n\n\n\n\n\nTopbarComponent\n\nTopbarComponent\n\nSharedModule -->\n\nTopbarComponent->SharedModule\n\n\n\n\n\nTokenDetailsComponent\n\nTokenDetailsComponent\n\nTokensModule -->\n\nTokenDetailsComponent->TokensModule\n\n\n\n\n\nTokensComponent\n\nTokensComponent\n\nTokensModule -->\n\nTokensComponent->TokensModule\n\n\n\n\n\nTokensRoutingModule\n\nTokensRoutingModule\n\nTokensModule -->\n\nTokensRoutingModule->TokensModule\n\n\n\n\n\nTransactionDetailsComponent\n\nTransactionDetailsComponent\n\nTransactionsModule -->\n\nTransactionDetailsComponent->TransactionsModule\n\n\n\n\n\nTransactionsComponent\n\nTransactionsComponent\n\nTransactionsModule -->\n\nTransactionsComponent->TransactionsModule\n\n\n\n\n\nTransactionsRoutingModule\n\nTransactionsRoutingModule\n\nTransactionsModule -->\n\nTransactionsRoutingModule->TransactionsModule\n\n\n\n\n\n\n    \n    \n    \n        Zoom in\n        Reset\n        Zoom out\n    \n\n  \n\n    \n        \n            \n                \n                    \n                    \n                        17 Modules\n                    \n                \n            \n        \n        \n            \n                \n                    \n                    21 Components\n                \n            \n        \n        \n            \n                \n                    \n                    4 Directives\n                \n            \n        \n        \n            \n                \n                    \n                    10 Injectables\n                \n            \n        \n        \n            \n                \n                    \n                    2 Pipes\n                \n            \n        \n        \n            \n                \n                    \n                    18 Classes\n                \n            \n        \n        \n            \n                \n                    \n                    2 Guards\n                \n            \n        \n        \n            \n                \n                    \n                    13 Interfaces\n                \n            \n        \n        \n            \n                \n                    \n                    \n                        51 Routes\n                    \n                \n            \n        \n    \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"routes.html":{"url":"routes.html","title":"routes - routes","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    Routes\n\n\n\n\n\n\n\n\n\n                   \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"miscellaneous/typealiases.html":{"url":"miscellaneous/typealiases.html","title":"miscellaneous-typealiases - typealiases","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n  Miscellaneous\n  Type aliases\n\n\n\n    Index\n    \n        \n            \n                \n                    \n                        \n                            Signature   (src/.../pgp-signer.ts)\n                        \n                    \n                \n            \n        \n    \n\n\n    src/app/_pgp/pgp-signer.ts\n    \n    \n        \n            \n                \n                    \n                    Signature\n                \n            \n            \n                \n                        literal type\n\n                \n            \n        \n    \n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"},"miscellaneous/variables.html":{"url":"miscellaneous/variables.html","title":"miscellaneous-variables - variables","body":"\n                   \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n                   \n\n\n  Miscellaneous\n  Variables\n\n\n\n    Index\n    \n        \n            \n                \n                    \n                        \n                            abi   (src/.../accountIndex.ts)\n                        \n                        \n                            abi   (src/.../token-registry.ts)\n                        \n                        \n                            accountTypes   (src/.../mock-backend.ts)\n                        \n                        \n                            actions   (src/.../mock-backend.ts)\n                        \n                        \n                            areaNames   (src/.../mock-backend.ts)\n                        \n                        \n                            areaTypes   (src/.../mock-backend.ts)\n                        \n                        \n                            categories   (src/.../mock-backend.ts)\n                        \n                        \n                            defaultAccount   (src/.../account.ts)\n                        \n                        \n                            environment   (src/.../environment.dev.ts)\n                        \n                        \n                            environment   (src/.../environment.prod.ts)\n                        \n                        \n                            environment   (src/.../environment.ts)\n                        \n                        \n                            genders   (src/.../mock-backend.ts)\n                        \n                        \n                            keyring   (src/.../pgp-key-store.ts)\n                        \n                        \n                            MockBackendProvider   (src/.../mock-backend.ts)\n                        \n                        \n                            objCsv   (src/.../read-csv.ts)\n                        \n                        \n                            openpgp   (src/.../pgp-signer.ts)\n                        \n                        \n                            tokens   (src/.../mock-backend.ts)\n                        \n                        \n                            transactionTypes   (src/.../mock-backend.ts)\n                        \n                        \n                            vCard   (src/.../transaction.service.ts)\n                        \n                        \n                            vCard   (src/.../user.service.ts)\n                        \n                        \n                            web3   (src/.../accountIndex.ts)\n                        \n                        \n                            web3   (src/.../token-registry.ts)\n                        \n                    \n                \n            \n        \n    \n\n\n    src/app/_eth/accountIndex.ts\n    \n            \n            \n                \n                    \n                        \n                        \n                            \n                            abi\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     Array\n\n                        \n                    \n                    \n                        \n                            Default value : require('@src/assets/js/block-sync/data/AccountRegistry.json')\n                        \n                    \n\n                \n                    \n                        Fetch the account registry contract's ABI. \n\n                    \n                \n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            web3\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     Web3\n\n                        \n                    \n                    \n                        \n                            Default value : new Web3(environment.web3Provider)\n                        \n                    \n\n                \n                    \n                        Establish a connection to the blockchain network. \n\n                    \n                \n\n            \n        \n\n    src/app/_eth/token-registry.ts\n    \n            \n            \n                \n                    \n                        \n                        \n                            \n                            abi\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     Array\n\n                        \n                    \n                    \n                        \n                            Default value : require('@src/assets/js/block-sync/data/TokenUniqueSymbolIndex.json')\n                        \n                    \n\n                \n                    \n                        Fetch the token registry contract's ABI. \n\n                    \n                \n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            web3\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     Web3\n\n                        \n                    \n                    \n                        \n                            Default value : new Web3(environment.web3Provider)\n                        \n                    \n\n                \n                    \n                        Establish a connection to the blockchain network. \n\n                    \n                \n\n            \n        \n\n    src/app/_helpers/mock-backend.ts\n    \n            \n            \n                \n                    \n                        \n                        \n                            \n                            accountTypes\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     Array\n\n                        \n                    \n                    \n                        \n                            Default value : ['user', 'cashier', 'vendor', 'tokenagent', 'group']\n                        \n                    \n\n                \n                    \n                        A mock of the curated account types. \n\n                    \n                \n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            actions\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         Array\n\n                        \n                    \n                    \n                        \n                            Default value : [\n  { id: 1, user: 'Tom', role: 'enroller', action: 'Disburse RSV 100', approval: false },\n  { id: 2, user: 'Christine', role: 'admin', action: 'Change user phone number', approval: true },\n  { id: 3, user: 'Will', role: 'superadmin', action: 'Reclaim RSV 1000', approval: true },\n  { id: 4, user: 'Vivian', role: 'enroller', action: 'Complete user profile', approval: true },\n  { id: 5, user: 'Jack', role: 'enroller', action: 'Reclaim RSV 200', approval: false },\n  { id: 6, user: 'Patience', role: 'enroller', action: 'Change user information', approval: false }\n]\n                        \n                    \n\n                \n                    \n                        A mock of actions made by the admin staff. \n\n                    \n                \n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            areaNames\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         Array\n\n                        \n                    \n                    \n                        \n                            Default value : [\n  {\n    name: 'Mukuru Nairobi',\n    locations: ['kayaba', 'kayba', 'kambi', 'mukuru', 'masai', 'hazina', 'south', 'tetra', 'tetrapak', 'ruben', 'rueben', 'kingston',\n      'korokocho', 'kingstone', 'kamongo', 'lungalunga', 'sinai', 'sigei', 'lungu', 'lunga lunga', 'owino road', 'seigei']\n  },\n  {\n    name: 'Kinango Kwale',\n    locations: ['amani', 'bofu', 'chibuga', 'chikomani', 'chilongoni', 'chigojoni', 'chinguluni', 'chigato', 'chigale', 'chikole',\n      'chilongoni', 'chilumani', 'chigojoni', 'chikomani', 'chizini', 'chikomeni', 'chidzuvini', 'chidzivuni', 'chikuyu', 'chizingo',\n      'doti', 'dzugwe', 'dzivani', 'dzovuni', 'hanje', 'kasemeni', 'katundani', 'kibandaogo', 'kibandaongo', 'kwale', 'kinango',\n      'kidzuvini', 'kalalani', 'kafuduni', 'kaloleni', 'kilibole', 'lutsangani', 'peku', 'gona', 'guro', 'gandini', 'mkanyeni', 'myenzeni',\n      'miyenzeni', 'miatsiani', 'mienzeni', 'mnyenzeni', 'minyenzeni', 'miyani', 'mioleni', 'makuluni', 'mariakani', 'makobeni', 'madewani',\n      'mwangaraba', 'mwashanga', 'miloeni', 'mabesheni', 'mazeras', 'mazera', 'mlola', 'muugano', 'mulunguni', 'mabesheni', 'miatsani',\n      'miatsiani', 'mwache', 'mwangani', 'mwehavikonje', 'miguneni', 'nzora', 'nzovuni', 'vikinduni', 'vikolani', 'vitangani', 'viogato',\n      'vyogato', 'vistangani', 'yapha', 'yava', 'yowani', 'ziwani', 'majengo', 'matuga', 'vigungani', 'vidziweni', 'vinyunduni', 'ukunda',\n      'kokotoni', 'mikindani']\n  },\n  {\n    name: 'Misc Nairobi',\n    locations: ['nairobi', 'west', 'lindi', 'kibera', 'kibira', 'kibra', 'makina', 'soweto', 'olympic', 'kangemi', 'ruiru', 'congo',\n      'kawangware', 'kwangware', 'donholm', 'dagoreti', 'dandora', 'kabete', 'sinai', 'donhom', 'donholm', 'huruma', 'kitengela',\n      'makadara', ',mlolongo', 'kenyatta', 'mlolongo', 'tassia', 'tasia', 'gatina', '56', 'industrial', 'kariobangi', 'kasarani', 'kayole',\n      'mathare', 'pipe', 'juja', 'uchumi', 'jogoo', 'umoja', 'thika', 'kikuyu', 'stadium', 'buru buru', 'ngong', 'starehe', 'mwiki',\n      'fuata', 'kware', 'kabiro', 'embakassi', 'embakasi', 'kmoja', 'east', 'githurai', 'landi', 'langata', 'limuru', 'mathere',\n      'dagoretti', 'kirembe', 'muugano', 'mwiki', 'toi market']\n  },\n  {\n    name: 'Misc Mombasa',\n    locations: ['mombasa', 'likoni', 'bangla', 'bangladesh', 'kizingo', 'old town', 'makupa', 'mvita', 'ngombeni', 'ngómbeni', 'ombeni',\n      'magongo', 'miritini', 'changamwe', 'jomvu', 'ohuru', 'tudor', 'diani']\n  },\n  {\n    name: 'Kisauni',\n    locations: ['bamburi', 'kisauni', 'mworoni', 'nyali', 'shanzu', 'bombolulu', 'mtopanga', 'mjambere', 'majaoni', 'manyani', 'magogoni',\n      'junda', 'mwakirunge', 'mshomoroni']\n  },\n  {\n    name: 'Kilifi',\n    locations: ['kilfi', 'kilifi', 'mtwapa', 'takaungu', 'makongeni', 'mnarani', 'mnarani', 'office', 'g.e', 'ge', 'raibai', 'ribe']\n  },\n  {\n    name: 'Kakuma',\n    locations: ['kakuma']\n  },\n  {\n    name: 'Kitui',\n    locations: ['kitui', 'mwingi']\n  },\n  {\n    name: 'Nyanza',\n    locations: ['busia', 'nyalgunga', 'mbita', 'siaya', 'kisumu', 'nyalenda', 'hawinga', 'rangala', 'uyoma', 'mumias', 'homabay', 'homaboy',\n      'migori', 'kusumu']\n  },\n  {\n    name: 'Misc Rural Counties',\n    locations: ['makueni', 'meru', 'kisii', 'bomet', 'machakos', 'bungoma', 'eldoret', 'kakamega', 'kericho', 'kajiado', 'nandi', 'nyeri',\n      'wote', 'kiambu', 'mwea', 'nakuru', 'narok']\n  },\n  {\n    name: 'other',\n    locations: ['other', 'none', 'unknown']\n  }\n]\n                        \n                    \n\n                \n                    \n                        A mock of curated area names. \n\n                    \n                \n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            areaTypes\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         Array\n\n                        \n                    \n                    \n                        \n                            Default value : [\n  {\n    name: 'urban',\n    area: ['urban', 'nairobi', 'mombasa']\n  },\n  {\n    name: 'rural',\n    area: ['rural', 'kakuma', 'kwale', 'kinango', 'kitui', 'nyanza']\n  },\n  {\n    name: 'periurban',\n    area: ['kilifi', 'periurban']\n  },\n  {\n    name: 'other',\n    area: ['other']\n  }\n]\n                        \n                    \n\n                \n                    \n                        A mock of curated area types. \n\n                    \n                \n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            categories\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         Array\n\n                        \n                    \n                    \n                        \n                            Default value : [\n  {\n    name: 'system',\n    products: ['system', 'office main', 'office main phone']\n  },\n  {\n    name: 'education',\n    products: ['book', 'coach', 'teacher', 'sch', 'school', 'pry', 'education', 'student', 'mwalimu', 'maalim', 'consultant', 'consult',\n      'college', 'university', 'lecturer', 'primary', 'secondary', 'daycare', 'babycare', 'baby care', 'elim', 'eimu', 'nursery',\n      'red cross', 'volunteer', 'instructor', 'journalist', 'lesson', 'academy', 'headmistress', 'headteacher', 'cyber', 'researcher',\n      'professor', 'demo', 'expert', 'tution', 'tuition', 'children', 'headmaster', 'educator', 'Marital counsellor', 'counsellor',\n      'trainer', 'vijana', 'youth', 'intern', 'redcross', 'KRCS', 'danish', 'science', 'data', 'facilitator', 'vitabu', 'kitabu']\n  },\n  {\n    name: 'faith',\n    products: ['pastor', 'imam', 'madrasa', 'religous', 'religious', 'ustadh', 'ustadhi', 'Marital counsellor', 'counsellor', 'church',\n      'kanisa', 'mksiti', 'donor']\n  },\n  {\n    name: 'government',\n    products: ['elder', 'chief', 'police', 'government', 'country', 'county', 'soldier', 'village admin', 'ward', 'leader', 'kra',\n      'mailman', 'immagration', 'immigration']\n  },\n  {\n    name: 'environment',\n    products: ['conservation', 'toilet', 'choo', 'garbage', 'fagio', 'waste', 'tree', 'taka', 'scrap', 'cleaning', 'gardener', 'rubbish',\n      'usafi', 'mazingira', 'miti', 'trash', 'cleaner', 'plastic', 'collection', 'seedling', 'seedlings', 'recycling']\n  },\n  {\n    name: 'farming',\n    products: ['farm', 'farmer', 'farming', 'mkulima', 'kulima', 'ukulima', 'wakulima', 'jembe', 'shamba']\n  },\n  {\n    name: 'labour',\n    products: ['artist', 'agent', 'guard', 'askari', 'accountant', 'baker', 'beadwork', 'beauty', 'business', 'barber', 'casual',\n      'electrian', 'caretaker', 'car wash', 'capenter', 'construction', 'chef', 'catering', 'cobler', 'cobbler', 'carwash', 'dhobi',\n      'landlord', 'design', 'carpenter', 'fundi', 'hawking', 'hawker', 'househelp', 'hsehelp', 'house help', 'help', 'housegirl', 'kushona',\n      'juakali', 'jualikali', 'juacali', 'jua kali', 'shepherd', 'makuti', 'kujenga', 'kinyozi', 'kazi', 'knitting', 'kufua', 'fua',\n      'hustler', 'biashara', 'labour', 'labor', 'laundry', 'repair', 'hair', 'posho', 'mill', 'mtambo', 'uvuvi', 'engineer', 'manager',\n      'tailor', 'nguo', 'mason', 'mtumba', 'garage', 'mechanic', 'mjenzi', 'mfugaji', 'painter', 'receptionist', 'printing', 'programming',\n      'plumb', 'charging', 'salon', 'mpishi', 'msusi', 'mgema', 'footballer', 'photocopy', 'peddler', 'staff', 'sales', 'service', 'saloon',\n      'seremala', 'security', 'insurance', 'secretary', 'shoe', 'shepard', 'shephard', 'tout', 'tv', 'mvuvi', 'mawe', 'majani', 'maembe',\n      'freelance', 'mjengo', 'electronics', 'photographer', 'programmer', 'electrician', 'washing', 'bricks', 'welder', 'welding',\n      'working', 'worker', 'watchman', 'waiter', 'waitress', 'viatu', 'yoga', 'guitarist', 'house', 'artisan', 'musician', 'trade',\n      'makonge', 'ujenzi', 'vendor', 'watchlady', 'marketing', 'beautician', 'photo', 'metal work', 'supplier', 'law firm', 'brewer']\n  },\n  {\n    name: 'food',\n    products: ['avocado', 'bhajia', 'bajia', 'mbonga', 'bofu', 'beans', 'biscuits', 'biringanya', 'banana', 'bananas', 'crisps', 'chakula',\n      'coconut', 'chapati', 'cereal', 'chipo', 'chapo', 'chai', 'chips', 'cassava', 'cake', 'cereals', 'cook', 'corn', 'coffee', 'chicken',\n      'dagaa', 'donut', 'dough', 'groundnuts', 'hotel', 'holel', 'hoteli', 'butcher', 'butchery', 'fruit', 'food', 'fruits', 'fish',\n      'githeri', 'grocery', 'grocer', 'pojo', 'papa', 'goats', 'mabenda', 'mbenda', 'poultry', 'soda', 'peanuts', 'potatoes', 'samosa',\n      'soko', 'samaki', 'tomato', 'tomatoes', 'mchele', 'matunda', 'mango', 'melon', 'mellon', 'nyanya', 'nyama', 'omena', 'umena', 'ndizi',\n      'njugu', 'kamba kamba', 'khaimati', 'kaimati', 'kunde', 'kuku', 'kahawa', 'keki', 'muguka', 'miraa', 'milk', 'choma', 'maziwa',\n      'mboga', 'mbog', 'busaa', 'chumvi', 'cabbages', 'mabuyu', 'machungwa', 'mbuzi', 'mnazi', 'mchicha', 'ngombe', 'ngano', 'nazi',\n      'oranges', 'peanuts', 'mkate', 'bread', 'mikate', 'vitungu', 'sausages', 'maize', 'mbata', 'mchuzi', 'mchuuzi', 'mandazi', 'mbaazi',\n      'mahindi', 'maandazi', 'mogoka', 'meat', 'mhogo', 'mihogo', 'muhogo', 'maharagwe', 'miwa', 'mahamri', 'mitumba', 'simsim', 'porridge',\n      'pilau', 'vegetable', 'egg', 'mayai', 'mifugo', 'unga', 'good', 'sima', 'sweet', 'sweats', 'sambusa', 'snacks', 'sugar', 'suger',\n      'ugoro', 'sukari', 'soup', 'spinach', 'smokie', 'smokies', 'sukuma', 'tea', 'uji', 'ugali', 'uchuzi', 'uchuuzi', 'viazi', 'yoghurt',\n      'yogurt', 'wine', 'marondo', 'maandzi', 'matoke', 'omeno', 'onions', 'nzugu', 'korosho', 'barafu', 'juice']\n  },\n  {\n    name: 'water',\n    products: ['maji', 'water']\n  },\n  {\n    name: 'health',\n    products: ['agrovet', 'dispensary', 'barakoa', 'chemist', 'Chemicals', 'chv', 'doctor', 'daktari', 'dawa', 'hospital', 'herbalist',\n      'mganga', 'sabuni', 'soap', 'nurse', 'heath', 'community health worker', 'clinic', 'clinical', 'mask', 'medicine', 'lab technician',\n      'pharmacy', 'cosmetics', 'veterinary', 'vet', 'sickly', 'emergency response', 'emergency']\n  },\n  {\n    name: 'savings',\n    products: ['chama', 'group', 'savings', 'loan', 'silc', 'vsla', 'credit', 'finance']\n  },\n  {\n    name: 'shop',\n    products: ['bag', 'bead', 'belt', 'bedding', 'jik', 'bed', 'cement', 'botique', 'boutique', 'lines', 'kibanda', 'kiosk', 'spareparts',\n      'candy', 'cloth', 'electricals', 'mutumba', 'cafe', 'leso', 'lesso', 'duka', 'spare parts', 'socks', 'malimali', 'mitungi',\n      'mali mali', 'hardware', 'detergent', 'detergents', 'dera', 'retail', 'kamba', 'pombe', 'pampers', 'pool', 'phone', 'simu', 'mangwe',\n      'mikeka', 'movie', 'shop', 'acces', 'mchanga', 'uto', 'airtime', 'matress', 'mattress', 'mattresses', 'mpsea', 'mpesa', 'shirt',\n      'wholesaler', 'perfume', 'playstation', 'tissue', 'vikapu', 'uniform', 'flowers', 'vitenge', 'utencils', 'utensils', 'station',\n      'jewel', 'pool table', 'club', 'pub', 'bar', 'furniture', 'm-pesa', 'vyombo']\n  },\n  {\n    name: 'transport',\n    products: ['kebeba', 'beba', 'bebabeba', 'bike', 'bicycle', 'matatu', 'boda', 'bodaboda', 'cart', 'carrier', 'tour', 'travel', 'driver',\n      'dereva', 'tout', 'conductor', 'kubeba', 'tuktuk', 'taxi', 'piki', 'pikipiki', 'manamba', 'trasportion', 'mkokoteni', 'mover',\n      'motorist', 'motorbike', 'transport', 'transpoter', 'gari', 'magari', 'makanga', 'car']\n  },\n  {\n    name: 'fuel/energy',\n    products: ['timber', 'timberyard', 'biogas', 'charcol', 'charcoal', 'kuni', 'mbao', 'fuel', 'makaa', 'mafuta', 'moto', 'solar', 'stima',\n      'fire', 'firewood', 'wood', 'oil', 'taa', 'gas', 'paraffin', 'parrafin', 'parafin', 'petrol', 'petro', 'kerosine', 'kerosene',\n      'diesel']\n  },\n  {\n    name: 'other',\n    products: ['other', 'none', 'unknown', 'none']\n  }\n]\n                        \n                    \n\n                \n                    \n                        A mock of the user's business categories \n\n                    \n                \n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            genders\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     Array\n\n                        \n                    \n                    \n                        \n                            Default value : ['male', 'female', 'other']\n                        \n                    \n\n                \n                    \n                        A mock of curated genders \n\n                    \n                \n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            MockBackendProvider\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         object\n\n                        \n                    \n                    \n                        \n                            Default value : {\n  provide: HTTP_INTERCEPTORS,\n  useClass: MockBackendInterceptor,\n  multi: true\n}\n                        \n                    \n\n                \n                    \n                        Exports the MockBackendInterceptor as an Angular provider.\n\n                    \n                \n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            tokens\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         Array\n\n                        \n                    \n                    \n                        \n                            Default value : [\n  {\n    name: 'Giftable Reserve', symbol: 'GRZ', address: '0xa686005CE37Dce7738436256982C3903f2E4ea8E', supply: '1000000001000000000000000000',\n    decimals: '18', reserves: {}\n  },\n  {\n    name: 'Demo Token', symbol: 'DEMO', address: '0xc80D6aFF8194114c52AEcD84c9f15fd5c8abb187', supply: '99999999999999998976',\n    decimals: '18', reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '99999999999999998976'}},\n    reserveRatio: '1000000', owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'\n  },\n  {\n    name: 'Foo Token', symbol: 'FOO', address: '0x9ceD86089f7aBB5A97B40eb0E7521e7aa308d354', supply: '1000000000000000001014',\n    decimals: '18', reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '1000000000000000001014'}},\n    reserveRatio: '1000000', owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'\n  },\n  {\n    name: 'testb', symbol: 'tstb', address: '0xC63cFA91A3BFf41cE31Ff436f67D3ACBC977DB95', supply: '99000', decimals: '18',\n    reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '99000'}}, reserveRatio: '1000000',\n    owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'\n  },\n  {\n    name: 'testa', symbol: 'tsta', address: '0x8fA4101ef19D0a078239d035659e92b278bD083C', supply: '9981', decimals: '18',\n    reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '9981'}}, reserveRatio: '1000000',\n    owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'\n  },\n  {\n    name: 'testc', symbol: 'tstc', address: '0x4A6fA6bc3BfE4C9661bC692D9798425350C9e3D4', supply: '100990', decimals: '18',\n    reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '100990'}}, reserveRatio: '1000000',\n    owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'\n  }\n]\n                        \n                    \n\n                \n                    \n                        A mock of the tokens in the system. \n\n                    \n                \n\n            \n        \n        \n            \n                \n                    \n                        \n                        \n                            \n                            transactionTypes\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     Array\n\n                        \n                    \n                    \n                        \n                            Default value : ['transactions', 'conversions', 'disbursements', 'rewards', 'reclamation']\n                        \n                    \n\n                \n                    \n                        A mock of curated  transaction types. \n\n                    \n                \n\n            \n        \n\n    src/app/_models/account.ts\n    \n            \n            \n                \n                    \n                        \n                        \n                            \n                            defaultAccount\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         AccountDetails\n\n                        \n                    \n                    \n                        \n                            Default value : {\n  date_registered: Date.now(),\n  gender: 'other',\n  identities: {\n    evm: {\n      'bloxberg:8996': [''],\n      'oldchain:1': [''],\n    },\n    latitude: 0,\n    longitude: 0,\n  },\n  location: {\n    area_name: 'Kilifi',\n  },\n  products: [],\n  vcard: {\n    email: [{\n      value: '',\n    }],\n    fn: [{\n      value: 'Sarafu Contract',\n    }],\n    n: [{\n      value: ['Sarafu', 'Contract'],\n    }],\n    tel: [{\n      meta: {\n        TYP: [],\n      },\n      value: '',\n    }],\n    version: [{\n      value: '3.0',\n    }],\n  },\n}\n                        \n                    \n\n\n            \n        \n\n    src/environments/environment.dev.ts\n    \n            \n            \n                \n                    \n                        \n                        \n                            \n                            environment\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         object\n\n                        \n                    \n                    \n                        \n                            Default value : {\n  production: false,\n  bloxbergChainId: 8996,\n  logLevel: NgxLoggerLevel.ERROR,\n  serverLogLevel: NgxLoggerLevel.OFF,\n  loggingUrl: '',\n  cicMetaUrl: 'https://meta.dev.grassrootseconomics.net',\n  publicKeysUrl: 'https://dev.grassrootseconomics.net/.well-known/publickeys/',\n  cicCacheUrl: 'https://cache.dev.grassrootseconomics.net',\n  web3Provider: 'wss://bloxberg-ws.dev.grassrootseconomics.net',\n  cicUssdUrl: 'https://ussd.dev.grassrootseconomics.net',\n  registryAddress: '0xea6225212005e86a4490018ded4bf37f3e772161',\n  trustedDeclaratorAddress: '0xEb3907eCad74a0013c259D5874AE7f22DcBcC95C'\n}\n                        \n                    \n\n\n            \n        \n\n    src/environments/environment.prod.ts\n    \n            \n            \n                \n                    \n                        \n                        \n                            \n                            environment\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         object\n\n                        \n                    \n                    \n                        \n                            Default value : {\n  production: true,\n  bloxbergChainId: 8996,\n  logLevel: NgxLoggerLevel.ERROR,\n  serverLogLevel: NgxLoggerLevel.OFF,\n  loggingUrl: '',\n  cicMetaUrl: 'https://meta.dev.grassrootseconomics.net',\n  publicKeysUrl: 'https://dev.grassrootseconomics.net/.well-known/publickeys/',\n  cicCacheUrl: 'https://cache.dev.grassrootseconomics.net',\n  web3Provider: 'wss://bloxberg-ws.dev.grassrootseconomics.net',\n  cicUssdUrl: 'https://ussd.dev.grassrootseconomics.net',\n  registryAddress: '0xAf1B487491073C2d49136Db3FD87E293302CF839',\n  trustedDeclaratorAddress: '0xEb3907eCad74a0013c259D5874AE7f22DcBcC95C'\n}\n                        \n                    \n\n\n            \n        \n\n    src/environments/environment.ts\n    \n            \n            \n                \n                    \n                        \n                        \n                            \n                            environment\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :         object\n\n                        \n                    \n                    \n                        \n                            Default value : {\n  production: false,\n  bloxbergChainId: 8996,\n  logLevel: NgxLoggerLevel.ERROR,\n  serverLogLevel: NgxLoggerLevel.OFF,\n  loggingUrl: 'http://localhost:8000',\n  cicMetaUrl: 'https://meta.dev.grassrootseconomics.net',\n  publicKeysUrl: 'http://localhost:8000/keys.asc',\n  cicCacheUrl: 'https://cache.dev.grassrootseconomics.net',\n  web3Provider: 'ws://localhost:63546',\n  cicUssdUrl: 'https://ussd.dev.grassrootseconomics.net',\n  registryAddress: '0x6Ca3cB14aA6F761712E1C18646AfBA4d5Ae249E8',\n  trustedDeclaratorAddress: '0xEb3907eCad74a0013c259D5874AE7f22DcBcC95C'\n}\n                        \n                    \n\n\n            \n        \n\n    src/app/_pgp/pgp-key-store.ts\n    \n            \n            \n                \n                    \n                        \n                        \n                            \n                            keyring\n                            \n                        \n                    \n                \n                    \n                        \n                            Default value : new openpgp.Keyring()\n                        \n                    \n\n\n            \n        \n\n    src/app/_helpers/read-csv.ts\n    \n            \n            \n                \n                    \n                        \n                        \n                            \n                            objCsv\n                            \n                        \n                    \n                \n                    \n                        \n                            Type :     literal type\n\n                        \n                    \n                    \n                        \n                            Default value : {\n  size: 0,\n  dataFile: []\n}\n                        \n                    \n\n                \n                    \n                        An object defining the properties of the data read. \n\n                    \n                \n\n            \n        \n\n    src/app/_pgp/pgp-signer.ts\n    \n            \n            \n                \n                    \n                        \n                        \n                            \n                            openpgp\n                            \n                        \n                    \n                \n                    \n                        \n                            Default value : require('openpgp')\n                        \n                    \n\n\n            \n        \n\n    src/app/_services/transaction.service.ts\n    \n            \n            \n                \n                    \n                        \n                        \n                            \n                            vCard\n                            \n                        \n                    \n                \n                    \n                        \n                            Default value : require('vcard-parser')\n                        \n                    \n\n\n            \n        \n\n    src/app/_services/user.service.ts\n    \n            \n            \n                \n                    \n                        \n                        \n                            \n                            vCard\n                            \n                        \n                    \n                \n                    \n                        \n                            Default value : require('vcard-parser')\n                        \n                    \n\n\n            \n        \n\n\n\n\n                   \n    \n         result-matching \"\"\n        \n    \n    \n        No results matching \"\"\n    \n\n"}}
 }
diff --git a/docs/compodoc/miscellaneous/functions.html b/docs/compodoc/miscellaneous/functions.html
index b971da6..03c504e 100644
--- a/docs/compodoc/miscellaneous/functions.html
+++ b/docs/compodoc/miscellaneous/functions.html
@@ -78,9 +78,6 @@
                         
  • readCsv   (src/.../read-csv.ts)
  • -
  • - removeSpecialChar   (src/.../export-csv.ts) -
  • vcardValidation   (src/.../schema-validation.ts)
  • @@ -117,6 +114,8 @@ +

    Returns the sum of all values in an array.

    +
    Parameters : @@ -125,6 +124,7 @@ Name Optional + Description @@ -136,18 +136,34 @@ + +
      +
    • An array of numbers.
    • +
    + +
    + Example : +
    +
    Prints 6 for the array [1, 2, 3]:</p>
    +<p>```typescript</p>
    +<ul>
    +<li>console.log(arraySum([1, 2, 3]));</li>
    +<li>```</li>
    +</ul>
    +
    Returns : number
    - +

    The sum of all values in the array.

    +
    @@ -179,6 +195,8 @@ +

    Copies set text to clipboard.

    +
    Parameters : @@ -188,6 +206,7 @@ Name Type Optional + Description @@ -202,18 +221,34 @@ + +
      +
    • The text to be copied to the clipboard.
    • +
    + +
    + Example : +
    +
    copies &#39;Hello World!&#39; to the clipboard and prints &quot;true&quot;:</p>
    +<p>```typescript</p>
    +<ul>
    +<li>console.log(copyToClipboard(&#39;Hello World!&#39;));</li>
    +<li>```</li>
    +</ul>
    +
    Returns : boolean
    - +

    true - If the copy operation is successful.

    +
    @@ -245,6 +280,8 @@ +

    Exports data to a CSV format and provides a download file.

    +
    Parameters : @@ -253,6 +290,7 @@ Name Optional + Description @@ -264,6 +302,12 @@ + +
      +
    • An array of data to be converted to CSV format.
    • +
    + + filename @@ -273,6 +317,12 @@ + +
      +
    • The name of the file to be downloaded.
    • +
    + + delimiter @@ -282,6 +332,13 @@ + +
      +
    • The delimiter to be used when converting to CSV format. +Defaults to commas.
    • +
    + + @@ -294,66 +351,6 @@
    -
    - - - - - - - - - - - - - - - - - - @@ -385,6 +382,8 @@ + @@ -443,6 +445,12 @@ +
    - - - - removeSpecialChar - - - -
    -removeSpecialChar(str) -
    - -
    - Parameters : - - - - - - - - - - - - - - - - -
    NameOptional
    str - No -
    -
    -
    -
    -
    - Returns : string - -
    -
    -
    +

    Provides an avenue of fetching resources via HTTP calls.

    +
    Returns : void @@ -420,6 +419,8 @@
    +

    Parses data to CSV format.

    +
    Parameters : @@ -429,6 +430,7 @@
    Name Type OptionalDescription
    +
      +
    • The data to be parsed.
    • +
    + +
    @@ -454,7 +462,8 @@
    - +

    An array of the parsed data.

    +
    @@ -484,6 +493,8 @@ +

    Reads a csv file and converts it to an array.

    +
    Parameters : @@ -493,6 +504,7 @@ Name Type Optional + Description @@ -507,6 +519,12 @@ + +
      +
    • The file to be read.
    • +
    + + @@ -518,7 +536,8 @@
    - +

    An array of the read data.

    +
    @@ -550,6 +569,8 @@ +

    Validates a person object against the defined Person schema.

    +
    Parameters : @@ -559,6 +580,7 @@ Name Type Optional + Description @@ -573,6 +595,12 @@ + +
      +
    • A person object to be validated.
    • +
    + + @@ -614,6 +642,8 @@ +

    Validates a vcard object against the defined Vcard schema.

    +
    Parameters : @@ -623,6 +653,7 @@ Name Type Optional + Description @@ -637,6 +668,12 @@ + +
      +
    • A vcard object to be validated.
    • +
    + + diff --git a/docs/compodoc/miscellaneous/variables.html b/docs/compodoc/miscellaneous/variables.html index b7d5a60..5f3ed73 100644 --- a/docs/compodoc/miscellaneous/variables.html +++ b/docs/compodoc/miscellaneous/variables.html @@ -294,6 +294,12 @@ + + +

    A mock of the curated account types.

    +
    + + @@ -328,6 +334,12 @@ + + +

    A mock of actions made by the admin staff.

    +
    + + @@ -418,6 +430,12 @@ + + +

    A mock of curated area names.

    +
    + + @@ -462,6 +480,12 @@ + + +

    A mock of curated area types.

    +
    + + @@ -589,6 +613,12 @@ + + +

    A mock of the user's business categories

    +
    + + @@ -616,6 +646,12 @@ + + +

    A mock of curated genders

    +
    + + @@ -647,6 +683,12 @@ + + +

    Exports the MockBackendInterceptor as an Angular provider.

    +
    + + @@ -704,6 +746,12 @@ + + +

    A mock of the tokens in the system.

    +
    + + @@ -731,6 +779,12 @@ + + +

    A mock of curated transaction types.

    +
    + + @@ -982,6 +1036,12 @@ + + +

    An object defining the properties of the data read.

    +
    + + diff --git a/docs/typedoc/assets/js/search.js b/docs/typedoc/assets/js/search.js index c393ed0..9926fe0 100644 --- a/docs/typedoc/assets/js/search.js +++ b/docs/typedoc/assets/js/search.js @@ -1 +1 @@ -window.searchData = {"kinds":{"1":"Module","32":"Variable","64":"Function","128":"Class","256":"Interface","512":"Constructor","1024":"Property","2048":"Method","65536":"Type literal","262144":"Accessor","4194304":"Type alias","16777216":"Reference"},"rows":[{"id":0,"kind":1,"name":"app/_eth/accountIndex","url":"modules/app__eth_accountindex.html","classes":"tsd-kind-module"},{"id":1,"kind":128,"name":"AccountIndex","url":"classes/app__eth_accountindex.accountindex.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_eth/accountIndex"},{"id":2,"kind":512,"name":"constructor","url":"classes/app__eth_accountindex.accountindex.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_eth/accountIndex.AccountIndex"},{"id":3,"kind":1024,"name":"contract","url":"classes/app__eth_accountindex.accountindex.html#contract","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_eth/accountIndex.AccountIndex"},{"id":4,"kind":1024,"name":"contractAddress","url":"classes/app__eth_accountindex.accountindex.html#contractaddress","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_eth/accountIndex.AccountIndex"},{"id":5,"kind":1024,"name":"signerAddress","url":"classes/app__eth_accountindex.accountindex.html#signeraddress","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_eth/accountIndex.AccountIndex"},{"id":6,"kind":2048,"name":"addToAccountRegistry","url":"classes/app__eth_accountindex.accountindex.html#addtoaccountregistry","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_eth/accountIndex.AccountIndex"},{"id":7,"kind":2048,"name":"haveAccount","url":"classes/app__eth_accountindex.accountindex.html#haveaccount","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_eth/accountIndex.AccountIndex"},{"id":8,"kind":2048,"name":"last","url":"classes/app__eth_accountindex.accountindex.html#last","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_eth/accountIndex.AccountIndex"},{"id":9,"kind":2048,"name":"totalAccounts","url":"classes/app__eth_accountindex.accountindex.html#totalaccounts","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_eth/accountIndex.AccountIndex"},{"id":10,"kind":1,"name":"app/_eth","url":"modules/app__eth.html","classes":"tsd-kind-module"},{"id":11,"kind":1,"name":"app/_eth/token-registry","url":"modules/app__eth_token_registry.html","classes":"tsd-kind-module"},{"id":12,"kind":128,"name":"TokenRegistry","url":"classes/app__eth_token_registry.tokenregistry.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_eth/token-registry"},{"id":13,"kind":512,"name":"constructor","url":"classes/app__eth_token_registry.tokenregistry.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_eth/token-registry.TokenRegistry"},{"id":14,"kind":1024,"name":"contract","url":"classes/app__eth_token_registry.tokenregistry.html#contract","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_eth/token-registry.TokenRegistry"},{"id":15,"kind":1024,"name":"contractAddress","url":"classes/app__eth_token_registry.tokenregistry.html#contractaddress","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_eth/token-registry.TokenRegistry"},{"id":16,"kind":1024,"name":"signerAddress","url":"classes/app__eth_token_registry.tokenregistry.html#signeraddress","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_eth/token-registry.TokenRegistry"},{"id":17,"kind":2048,"name":"addressOf","url":"classes/app__eth_token_registry.tokenregistry.html#addressof","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_eth/token-registry.TokenRegistry"},{"id":18,"kind":2048,"name":"entry","url":"classes/app__eth_token_registry.tokenregistry.html#entry","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_eth/token-registry.TokenRegistry"},{"id":19,"kind":2048,"name":"totalTokens","url":"classes/app__eth_token_registry.tokenregistry.html#totaltokens","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_eth/token-registry.TokenRegistry"},{"id":20,"kind":1,"name":"app/_guards/auth.guard","url":"modules/app__guards_auth_guard.html","classes":"tsd-kind-module"},{"id":21,"kind":128,"name":"AuthGuard","url":"classes/app__guards_auth_guard.authguard.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_guards/auth.guard"},{"id":22,"kind":512,"name":"constructor","url":"classes/app__guards_auth_guard.authguard.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_guards/auth.guard.AuthGuard"},{"id":23,"kind":2048,"name":"canActivate","url":"classes/app__guards_auth_guard.authguard.html#canactivate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_guards/auth.guard.AuthGuard"},{"id":24,"kind":1,"name":"app/_guards","url":"modules/app__guards.html","classes":"tsd-kind-module"},{"id":25,"kind":1,"name":"app/_guards/role.guard","url":"modules/app__guards_role_guard.html","classes":"tsd-kind-module"},{"id":26,"kind":128,"name":"RoleGuard","url":"classes/app__guards_role_guard.roleguard.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_guards/role.guard"},{"id":27,"kind":512,"name":"constructor","url":"classes/app__guards_role_guard.roleguard.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_guards/role.guard.RoleGuard"},{"id":28,"kind":2048,"name":"canActivate","url":"classes/app__guards_role_guard.roleguard.html#canactivate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_guards/role.guard.RoleGuard"},{"id":29,"kind":1,"name":"app/_helpers/array-sum","url":"modules/app__helpers_array_sum.html","classes":"tsd-kind-module"},{"id":30,"kind":64,"name":"arraySum","url":"modules/app__helpers_array_sum.html#arraysum","classes":"tsd-kind-function tsd-parent-kind-module","parent":"app/_helpers/array-sum"},{"id":31,"kind":1,"name":"app/_helpers/clipboard-copy","url":"modules/app__helpers_clipboard_copy.html","classes":"tsd-kind-module"},{"id":32,"kind":64,"name":"copyToClipboard","url":"modules/app__helpers_clipboard_copy.html#copytoclipboard","classes":"tsd-kind-function tsd-parent-kind-module","parent":"app/_helpers/clipboard-copy"},{"id":33,"kind":1,"name":"app/_helpers/custom-error-state-matcher","url":"modules/app__helpers_custom_error_state_matcher.html","classes":"tsd-kind-module"},{"id":34,"kind":128,"name":"CustomErrorStateMatcher","url":"classes/app__helpers_custom_error_state_matcher.customerrorstatematcher.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_helpers/custom-error-state-matcher"},{"id":35,"kind":512,"name":"constructor","url":"classes/app__helpers_custom_error_state_matcher.customerrorstatematcher.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_helpers/custom-error-state-matcher.CustomErrorStateMatcher"},{"id":36,"kind":2048,"name":"isErrorState","url":"classes/app__helpers_custom_error_state_matcher.customerrorstatematcher.html#iserrorstate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_helpers/custom-error-state-matcher.CustomErrorStateMatcher"},{"id":37,"kind":1,"name":"app/_helpers/custom.validator","url":"modules/app__helpers_custom_validator.html","classes":"tsd-kind-module"},{"id":38,"kind":128,"name":"CustomValidator","url":"classes/app__helpers_custom_validator.customvalidator.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_helpers/custom.validator"},{"id":39,"kind":2048,"name":"passwordMatchValidator","url":"classes/app__helpers_custom_validator.customvalidator.html#passwordmatchvalidator","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"app/_helpers/custom.validator.CustomValidator"},{"id":40,"kind":2048,"name":"patternValidator","url":"classes/app__helpers_custom_validator.customvalidator.html#patternvalidator","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"app/_helpers/custom.validator.CustomValidator"},{"id":41,"kind":512,"name":"constructor","url":"classes/app__helpers_custom_validator.customvalidator.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_helpers/custom.validator.CustomValidator"},{"id":42,"kind":1,"name":"app/_helpers/export-csv","url":"modules/app__helpers_export_csv.html","classes":"tsd-kind-module"},{"id":43,"kind":64,"name":"exportCsv","url":"modules/app__helpers_export_csv.html#exportcsv","classes":"tsd-kind-function tsd-parent-kind-module","parent":"app/_helpers/export-csv"},{"id":44,"kind":1,"name":"app/_helpers/global-error-handler","url":"modules/app__helpers_global_error_handler.html","classes":"tsd-kind-module"},{"id":45,"kind":128,"name":"HttpError","url":"classes/app__helpers_global_error_handler.httperror.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_helpers/global-error-handler"},{"id":46,"kind":65536,"name":"__type","url":"classes/app__helpers_global_error_handler.httperror.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-class","parent":"app/_helpers/global-error-handler.HttpError"},{"id":47,"kind":512,"name":"constructor","url":"classes/app__helpers_global_error_handler.httperror.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"app/_helpers/global-error-handler.HttpError"},{"id":48,"kind":1024,"name":"status","url":"classes/app__helpers_global_error_handler.httperror.html#status","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_helpers/global-error-handler.HttpError"},{"id":49,"kind":128,"name":"GlobalErrorHandler","url":"classes/app__helpers_global_error_handler.globalerrorhandler.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_helpers/global-error-handler"},{"id":50,"kind":512,"name":"constructor","url":"classes/app__helpers_global_error_handler.globalerrorhandler.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"app/_helpers/global-error-handler.GlobalErrorHandler"},{"id":51,"kind":1024,"name":"sentencesForWarningLogging","url":"classes/app__helpers_global_error_handler.globalerrorhandler.html#sentencesforwarninglogging","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"app/_helpers/global-error-handler.GlobalErrorHandler"},{"id":52,"kind":2048,"name":"handleError","url":"classes/app__helpers_global_error_handler.globalerrorhandler.html#handleerror","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"app/_helpers/global-error-handler.GlobalErrorHandler"},{"id":53,"kind":2048,"name":"logError","url":"classes/app__helpers_global_error_handler.globalerrorhandler.html#logerror","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_helpers/global-error-handler.GlobalErrorHandler"},{"id":54,"kind":2048,"name":"isWarning","url":"classes/app__helpers_global_error_handler.globalerrorhandler.html#iswarning","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"app/_helpers/global-error-handler.GlobalErrorHandler"},{"id":55,"kind":1,"name":"app/_helpers/http-getter","url":"modules/app__helpers_http_getter.html","classes":"tsd-kind-module"},{"id":56,"kind":64,"name":"HttpGetter","url":"modules/app__helpers_http_getter.html#httpgetter","classes":"tsd-kind-function tsd-parent-kind-module","parent":"app/_helpers/http-getter"},{"id":57,"kind":1,"name":"app/_helpers","url":"modules/app__helpers.html","classes":"tsd-kind-module"},{"id":58,"kind":1,"name":"app/_helpers/mock-backend","url":"modules/app__helpers_mock_backend.html","classes":"tsd-kind-module"},{"id":59,"kind":128,"name":"MockBackendInterceptor","url":"classes/app__helpers_mock_backend.mockbackendinterceptor.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_helpers/mock-backend"},{"id":60,"kind":512,"name":"constructor","url":"classes/app__helpers_mock_backend.mockbackendinterceptor.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_helpers/mock-backend.MockBackendInterceptor"},{"id":61,"kind":2048,"name":"intercept","url":"classes/app__helpers_mock_backend.mockbackendinterceptor.html#intercept","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_helpers/mock-backend.MockBackendInterceptor"},{"id":62,"kind":32,"name":"MockBackendProvider","url":"modules/app__helpers_mock_backend.html#mockbackendprovider","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"app/_helpers/mock-backend"},{"id":63,"kind":65536,"name":"__type","url":"modules/app__helpers_mock_backend.html#mockbackendprovider.__type","classes":"tsd-kind-type-literal tsd-parent-kind-variable","parent":"app/_helpers/mock-backend.MockBackendProvider"},{"id":64,"kind":1024,"name":"provide","url":"modules/app__helpers_mock_backend.html#mockbackendprovider.__type.provide","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_helpers/mock-backend.MockBackendProvider.__type"},{"id":65,"kind":1024,"name":"useClass","url":"modules/app__helpers_mock_backend.html#mockbackendprovider.__type.useclass","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_helpers/mock-backend.MockBackendProvider.__type"},{"id":66,"kind":1024,"name":"multi","url":"modules/app__helpers_mock_backend.html#mockbackendprovider.__type.multi","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_helpers/mock-backend.MockBackendProvider.__type"},{"id":67,"kind":1,"name":"app/_helpers/read-csv","url":"modules/app__helpers_read_csv.html","classes":"tsd-kind-module"},{"id":68,"kind":64,"name":"readCsv","url":"modules/app__helpers_read_csv.html#readcsv","classes":"tsd-kind-function tsd-parent-kind-module","parent":"app/_helpers/read-csv"},{"id":69,"kind":1,"name":"app/_helpers/schema-validation","url":"modules/app__helpers_schema_validation.html","classes":"tsd-kind-module"},{"id":70,"kind":64,"name":"personValidation","url":"modules/app__helpers_schema_validation.html#personvalidation","classes":"tsd-kind-function tsd-parent-kind-module","parent":"app/_helpers/schema-validation"},{"id":71,"kind":64,"name":"vcardValidation","url":"modules/app__helpers_schema_validation.html#vcardvalidation","classes":"tsd-kind-function tsd-parent-kind-module","parent":"app/_helpers/schema-validation"},{"id":72,"kind":1,"name":"app/_interceptors/error.interceptor","url":"modules/app__interceptors_error_interceptor.html","classes":"tsd-kind-module"},{"id":73,"kind":128,"name":"ErrorInterceptor","url":"classes/app__interceptors_error_interceptor.errorinterceptor.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_interceptors/error.interceptor"},{"id":74,"kind":512,"name":"constructor","url":"classes/app__interceptors_error_interceptor.errorinterceptor.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_interceptors/error.interceptor.ErrorInterceptor"},{"id":75,"kind":2048,"name":"intercept","url":"classes/app__interceptors_error_interceptor.errorinterceptor.html#intercept","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_interceptors/error.interceptor.ErrorInterceptor"},{"id":76,"kind":1,"name":"app/_interceptors/http-config.interceptor","url":"modules/app__interceptors_http_config_interceptor.html","classes":"tsd-kind-module"},{"id":77,"kind":128,"name":"HttpConfigInterceptor","url":"classes/app__interceptors_http_config_interceptor.httpconfiginterceptor.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_interceptors/http-config.interceptor"},{"id":78,"kind":512,"name":"constructor","url":"classes/app__interceptors_http_config_interceptor.httpconfiginterceptor.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_interceptors/http-config.interceptor.HttpConfigInterceptor"},{"id":79,"kind":2048,"name":"intercept","url":"classes/app__interceptors_http_config_interceptor.httpconfiginterceptor.html#intercept","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_interceptors/http-config.interceptor.HttpConfigInterceptor"},{"id":80,"kind":1,"name":"app/_interceptors","url":"modules/app__interceptors.html","classes":"tsd-kind-module"},{"id":81,"kind":1,"name":"app/_interceptors/logging.interceptor","url":"modules/app__interceptors_logging_interceptor.html","classes":"tsd-kind-module"},{"id":82,"kind":128,"name":"LoggingInterceptor","url":"classes/app__interceptors_logging_interceptor.logginginterceptor.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_interceptors/logging.interceptor"},{"id":83,"kind":512,"name":"constructor","url":"classes/app__interceptors_logging_interceptor.logginginterceptor.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_interceptors/logging.interceptor.LoggingInterceptor"},{"id":84,"kind":2048,"name":"intercept","url":"classes/app__interceptors_logging_interceptor.logginginterceptor.html#intercept","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_interceptors/logging.interceptor.LoggingInterceptor"},{"id":85,"kind":1,"name":"app/_models/account","url":"modules/app__models_account.html","classes":"tsd-kind-module"},{"id":86,"kind":256,"name":"AccountDetails","url":"interfaces/app__models_account.accountdetails.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/account"},{"id":87,"kind":1024,"name":"date_registered","url":"interfaces/app__models_account.accountdetails.html#date_registered","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":88,"kind":1024,"name":"gender","url":"interfaces/app__models_account.accountdetails.html#gender","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":89,"kind":1024,"name":"age","url":"interfaces/app__models_account.accountdetails.html#age","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":90,"kind":1024,"name":"type","url":"interfaces/app__models_account.accountdetails.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":91,"kind":1024,"name":"balance","url":"interfaces/app__models_account.accountdetails.html#balance","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":92,"kind":1024,"name":"identities","url":"interfaces/app__models_account.accountdetails.html#identities","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":93,"kind":65536,"name":"__type","url":"interfaces/app__models_account.accountdetails.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":94,"kind":1024,"name":"evm","url":"interfaces/app__models_account.accountdetails.html#__type.evm","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":95,"kind":65536,"name":"__type","url":"interfaces/app__models_account.accountdetails.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":96,"kind":1024,"name":"bloxberg:8996","url":"interfaces/app__models_account.accountdetails.html#__type.__type-1.bloxberg_8996","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type.__type"},{"id":97,"kind":1024,"name":"oldchain:1","url":"interfaces/app__models_account.accountdetails.html#__type.__type-1.oldchain_1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type.__type"},{"id":98,"kind":1024,"name":"latitude","url":"interfaces/app__models_account.accountdetails.html#__type.latitude","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":99,"kind":1024,"name":"longitude","url":"interfaces/app__models_account.accountdetails.html#__type.longitude","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":100,"kind":1024,"name":"location","url":"interfaces/app__models_account.accountdetails.html#location","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":101,"kind":65536,"name":"__type","url":"interfaces/app__models_account.accountdetails.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":102,"kind":1024,"name":"area","url":"interfaces/app__models_account.accountdetails.html#__type-2.area","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":103,"kind":1024,"name":"area_name","url":"interfaces/app__models_account.accountdetails.html#__type-2.area_name","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":104,"kind":1024,"name":"area_type","url":"interfaces/app__models_account.accountdetails.html#__type-2.area_type","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":105,"kind":1024,"name":"products","url":"interfaces/app__models_account.accountdetails.html#products","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":106,"kind":1024,"name":"category","url":"interfaces/app__models_account.accountdetails.html#category","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":107,"kind":1024,"name":"vcard","url":"interfaces/app__models_account.accountdetails.html#vcard","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":108,"kind":65536,"name":"__type","url":"interfaces/app__models_account.accountdetails.html#__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":109,"kind":1024,"name":"email","url":"interfaces/app__models_account.accountdetails.html#__type-3.email","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":110,"kind":1024,"name":"fn","url":"interfaces/app__models_account.accountdetails.html#__type-3.fn","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":111,"kind":1024,"name":"n","url":"interfaces/app__models_account.accountdetails.html#__type-3.n","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":112,"kind":1024,"name":"tel","url":"interfaces/app__models_account.accountdetails.html#__type-3.tel","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":113,"kind":1024,"name":"version","url":"interfaces/app__models_account.accountdetails.html#__type-3.version","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":114,"kind":256,"name":"Signature","url":"interfaces/app__models_account.signature.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/account"},{"id":115,"kind":1024,"name":"algo","url":"interfaces/app__models_account.signature.html#algo","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.Signature"},{"id":116,"kind":1024,"name":"data","url":"interfaces/app__models_account.signature.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.Signature"},{"id":117,"kind":1024,"name":"digest","url":"interfaces/app__models_account.signature.html#digest","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.Signature"},{"id":118,"kind":1024,"name":"engine","url":"interfaces/app__models_account.signature.html#engine","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.Signature"},{"id":119,"kind":256,"name":"Meta","url":"interfaces/app__models_account.meta.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/account"},{"id":120,"kind":1024,"name":"data","url":"interfaces/app__models_account.meta.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.Meta"},{"id":121,"kind":1024,"name":"id","url":"interfaces/app__models_account.meta.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.Meta"},{"id":122,"kind":1024,"name":"signature","url":"interfaces/app__models_account.meta.html#signature","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.Meta"},{"id":123,"kind":256,"name":"MetaResponse","url":"interfaces/app__models_account.metaresponse.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/account"},{"id":124,"kind":1024,"name":"id","url":"interfaces/app__models_account.metaresponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.MetaResponse"},{"id":125,"kind":1024,"name":"m","url":"interfaces/app__models_account.metaresponse.html#m","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.MetaResponse"},{"id":126,"kind":32,"name":"defaultAccount","url":"modules/app__models_account.html#defaultaccount","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"app/_models/account"},{"id":127,"kind":1,"name":"app/_models","url":"modules/app__models.html","classes":"tsd-kind-module"},{"id":128,"kind":1,"name":"app/_models/mappings","url":"modules/app__models_mappings.html","classes":"tsd-kind-module"},{"id":129,"kind":256,"name":"Action","url":"interfaces/app__models_mappings.action.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/mappings"},{"id":130,"kind":1024,"name":"id","url":"interfaces/app__models_mappings.action.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/mappings.Action"},{"id":131,"kind":1024,"name":"user","url":"interfaces/app__models_mappings.action.html#user","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/mappings.Action"},{"id":132,"kind":1024,"name":"role","url":"interfaces/app__models_mappings.action.html#role","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/mappings.Action"},{"id":133,"kind":1024,"name":"action","url":"interfaces/app__models_mappings.action.html#action","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/mappings.Action"},{"id":134,"kind":1024,"name":"approval","url":"interfaces/app__models_mappings.action.html#approval","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/mappings.Action"},{"id":135,"kind":256,"name":"Category","url":"interfaces/app__models_mappings.category.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/mappings"},{"id":136,"kind":1024,"name":"name","url":"interfaces/app__models_mappings.category.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/mappings.Category"},{"id":137,"kind":1024,"name":"products","url":"interfaces/app__models_mappings.category.html#products","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/mappings.Category"},{"id":138,"kind":256,"name":"AreaName","url":"interfaces/app__models_mappings.areaname.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/mappings"},{"id":139,"kind":1024,"name":"name","url":"interfaces/app__models_mappings.areaname.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/mappings.AreaName"},{"id":140,"kind":1024,"name":"locations","url":"interfaces/app__models_mappings.areaname.html#locations","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/mappings.AreaName"},{"id":141,"kind":256,"name":"AreaType","url":"interfaces/app__models_mappings.areatype.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/mappings"},{"id":142,"kind":1024,"name":"name","url":"interfaces/app__models_mappings.areatype.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/mappings.AreaType"},{"id":143,"kind":1024,"name":"area","url":"interfaces/app__models_mappings.areatype.html#area","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/mappings.AreaType"},{"id":144,"kind":1,"name":"app/_models/settings","url":"modules/app__models_settings.html","classes":"tsd-kind-module"},{"id":145,"kind":128,"name":"Settings","url":"classes/app__models_settings.settings.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_models/settings"},{"id":146,"kind":512,"name":"constructor","url":"classes/app__models_settings.settings.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_models/settings.Settings"},{"id":147,"kind":1024,"name":"w3","url":"classes/app__models_settings.settings.html#w3","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/settings.Settings"},{"id":148,"kind":1024,"name":"scanFilter","url":"classes/app__models_settings.settings.html#scanfilter","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/settings.Settings"},{"id":149,"kind":1024,"name":"registry","url":"classes/app__models_settings.settings.html#registry","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/settings.Settings"},{"id":150,"kind":1024,"name":"txHelper","url":"classes/app__models_settings.settings.html#txhelper","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/settings.Settings"},{"id":151,"kind":128,"name":"W3","url":"classes/app__models_settings.w3.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_models/settings"},{"id":152,"kind":512,"name":"constructor","url":"classes/app__models_settings.w3.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_models/settings.W3"},{"id":153,"kind":1024,"name":"engine","url":"classes/app__models_settings.w3.html#engine","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/settings.W3"},{"id":154,"kind":1024,"name":"provider","url":"classes/app__models_settings.w3.html#provider","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/settings.W3"},{"id":155,"kind":1,"name":"app/_models/staff","url":"modules/app__models_staff.html","classes":"tsd-kind-module"},{"id":156,"kind":256,"name":"Staff","url":"interfaces/app__models_staff.staff.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/staff"},{"id":157,"kind":1024,"name":"comment","url":"interfaces/app__models_staff.staff.html#comment","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/staff.Staff"},{"id":158,"kind":1024,"name":"email","url":"interfaces/app__models_staff.staff.html#email","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/staff.Staff"},{"id":159,"kind":1024,"name":"name","url":"interfaces/app__models_staff.staff.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/staff.Staff"},{"id":160,"kind":1024,"name":"tag","url":"interfaces/app__models_staff.staff.html#tag","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/staff.Staff"},{"id":161,"kind":1024,"name":"userid","url":"interfaces/app__models_staff.staff.html#userid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/staff.Staff"},{"id":162,"kind":1,"name":"app/_models/token","url":"modules/app__models_token.html","classes":"tsd-kind-module"},{"id":163,"kind":256,"name":"Token","url":"interfaces/app__models_token.token.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/token"},{"id":164,"kind":1024,"name":"name","url":"interfaces/app__models_token.token.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/token.Token"},{"id":165,"kind":1024,"name":"symbol","url":"interfaces/app__models_token.token.html#symbol","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/token.Token"},{"id":166,"kind":1024,"name":"address","url":"interfaces/app__models_token.token.html#address","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/token.Token"},{"id":167,"kind":1024,"name":"supply","url":"interfaces/app__models_token.token.html#supply","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/token.Token"},{"id":168,"kind":1024,"name":"decimals","url":"interfaces/app__models_token.token.html#decimals","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/token.Token"},{"id":169,"kind":1024,"name":"reserves","url":"interfaces/app__models_token.token.html#reserves","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/token.Token"},{"id":170,"kind":65536,"name":"__type","url":"interfaces/app__models_token.token.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"app/_models/token.Token"},{"id":171,"kind":1024,"name":"0xa686005CE37Dce7738436256982C3903f2E4ea8E","url":"interfaces/app__models_token.token.html#__type.0xa686005ce37dce7738436256982c3903f2e4ea8e","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/token.Token.__type"},{"id":172,"kind":65536,"name":"__type","url":"interfaces/app__models_token.token.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"app/_models/token.Token.__type"},{"id":173,"kind":1024,"name":"weight","url":"interfaces/app__models_token.token.html#__type.__type-1.weight","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/token.Token.__type.__type"},{"id":174,"kind":1024,"name":"balance","url":"interfaces/app__models_token.token.html#__type.__type-1.balance","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/token.Token.__type.__type"},{"id":175,"kind":1024,"name":"reserveRatio","url":"interfaces/app__models_token.token.html#reserveratio","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/token.Token"},{"id":176,"kind":1024,"name":"owner","url":"interfaces/app__models_token.token.html#owner","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/token.Token"},{"id":177,"kind":1,"name":"app/_models/transaction","url":"modules/app__models_transaction.html","classes":"tsd-kind-module"},{"id":178,"kind":128,"name":"BlocksBloom","url":"classes/app__models_transaction.blocksbloom.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_models/transaction"},{"id":179,"kind":512,"name":"constructor","url":"classes/app__models_transaction.blocksbloom.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_models/transaction.BlocksBloom"},{"id":180,"kind":1024,"name":"low","url":"classes/app__models_transaction.blocksbloom.html#low","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.BlocksBloom"},{"id":181,"kind":1024,"name":"blockFilter","url":"classes/app__models_transaction.blocksbloom.html#blockfilter","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.BlocksBloom"},{"id":182,"kind":1024,"name":"blocktxFilter","url":"classes/app__models_transaction.blocksbloom.html#blocktxfilter","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.BlocksBloom"},{"id":183,"kind":1024,"name":"alg","url":"classes/app__models_transaction.blocksbloom.html#alg","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.BlocksBloom"},{"id":184,"kind":1024,"name":"filterRounds","url":"classes/app__models_transaction.blocksbloom.html#filterrounds","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.BlocksBloom"},{"id":185,"kind":128,"name":"TxToken","url":"classes/app__models_transaction.txtoken.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_models/transaction"},{"id":186,"kind":512,"name":"constructor","url":"classes/app__models_transaction.txtoken.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_models/transaction.TxToken"},{"id":187,"kind":1024,"name":"address","url":"classes/app__models_transaction.txtoken.html#address","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.TxToken"},{"id":188,"kind":1024,"name":"name","url":"classes/app__models_transaction.txtoken.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.TxToken"},{"id":189,"kind":1024,"name":"symbol","url":"classes/app__models_transaction.txtoken.html#symbol","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.TxToken"},{"id":190,"kind":128,"name":"Tx","url":"classes/app__models_transaction.tx.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_models/transaction"},{"id":191,"kind":512,"name":"constructor","url":"classes/app__models_transaction.tx.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_models/transaction.Tx"},{"id":192,"kind":1024,"name":"block","url":"classes/app__models_transaction.tx.html#block","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Tx"},{"id":193,"kind":1024,"name":"success","url":"classes/app__models_transaction.tx.html#success","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Tx"},{"id":194,"kind":1024,"name":"timestamp","url":"classes/app__models_transaction.tx.html#timestamp","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Tx"},{"id":195,"kind":1024,"name":"txHash","url":"classes/app__models_transaction.tx.html#txhash","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Tx"},{"id":196,"kind":1024,"name":"txIndex","url":"classes/app__models_transaction.tx.html#txindex","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Tx"},{"id":197,"kind":128,"name":"Transaction","url":"classes/app__models_transaction.transaction.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_models/transaction"},{"id":198,"kind":512,"name":"constructor","url":"classes/app__models_transaction.transaction.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_models/transaction.Transaction"},{"id":199,"kind":1024,"name":"from","url":"classes/app__models_transaction.transaction.html#from","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Transaction"},{"id":200,"kind":1024,"name":"sender","url":"classes/app__models_transaction.transaction.html#sender","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Transaction"},{"id":201,"kind":1024,"name":"to","url":"classes/app__models_transaction.transaction.html#to","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Transaction"},{"id":202,"kind":1024,"name":"recipient","url":"classes/app__models_transaction.transaction.html#recipient","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Transaction"},{"id":203,"kind":1024,"name":"token","url":"classes/app__models_transaction.transaction.html#token","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Transaction"},{"id":204,"kind":1024,"name":"tx","url":"classes/app__models_transaction.transaction.html#tx","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Transaction"},{"id":205,"kind":1024,"name":"value","url":"classes/app__models_transaction.transaction.html#value","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Transaction"},{"id":206,"kind":1024,"name":"type","url":"classes/app__models_transaction.transaction.html#type","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Transaction"},{"id":207,"kind":128,"name":"Conversion","url":"classes/app__models_transaction.conversion.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_models/transaction"},{"id":208,"kind":512,"name":"constructor","url":"classes/app__models_transaction.conversion.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_models/transaction.Conversion"},{"id":209,"kind":1024,"name":"destinationToken","url":"classes/app__models_transaction.conversion.html#destinationtoken","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Conversion"},{"id":210,"kind":1024,"name":"fromValue","url":"classes/app__models_transaction.conversion.html#fromvalue","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Conversion"},{"id":211,"kind":1024,"name":"sourceToken","url":"classes/app__models_transaction.conversion.html#sourcetoken","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Conversion"},{"id":212,"kind":1024,"name":"toValue","url":"classes/app__models_transaction.conversion.html#tovalue","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Conversion"},{"id":213,"kind":1024,"name":"trader","url":"classes/app__models_transaction.conversion.html#trader","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Conversion"},{"id":214,"kind":1024,"name":"user","url":"classes/app__models_transaction.conversion.html#user","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Conversion"},{"id":215,"kind":1024,"name":"tx","url":"classes/app__models_transaction.conversion.html#tx","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Conversion"},{"id":216,"kind":1,"name":"app/_pgp","url":"modules/app__pgp.html","classes":"tsd-kind-module"},{"id":217,"kind":1,"name":"app/_pgp/pgp-key-store","url":"modules/app__pgp_pgp_key_store.html","classes":"tsd-kind-module"},{"id":218,"kind":128,"name":"MutablePgpKeyStore","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_pgp/pgp-key-store"},{"id":219,"kind":512,"name":"constructor","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":220,"kind":2048,"name":"loadKeyring","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#loadkeyring","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":221,"kind":2048,"name":"importKeyPair","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#importkeypair","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":222,"kind":2048,"name":"importPublicKey","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#importpublickey","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":223,"kind":2048,"name":"importPrivateKey","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#importprivatekey","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":224,"kind":2048,"name":"getPublicKeys","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getpublickeys","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":225,"kind":2048,"name":"getTrustedKeys","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#gettrustedkeys","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":226,"kind":2048,"name":"getTrustedActiveKeys","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#gettrustedactivekeys","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":227,"kind":2048,"name":"getEncryptKeys","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getencryptkeys","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":228,"kind":2048,"name":"getPrivateKeys","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getprivatekeys","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":229,"kind":2048,"name":"getPrivateKey","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getprivatekey","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":230,"kind":2048,"name":"isValidKey","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#isvalidkey","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":231,"kind":2048,"name":"isEncryptedPrivateKey","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#isencryptedprivatekey","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":232,"kind":2048,"name":"getFingerprint","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getfingerprint","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":233,"kind":2048,"name":"getKeyId","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getkeyid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":234,"kind":2048,"name":"getPrivateKeyId","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getprivatekeyid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":235,"kind":2048,"name":"getKeysForId","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getkeysforid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":236,"kind":2048,"name":"getPublicKeyForId","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getpublickeyforid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":237,"kind":2048,"name":"getPrivateKeyForId","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getprivatekeyforid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":238,"kind":2048,"name":"getPublicKeyForSubkeyId","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getpublickeyforsubkeyid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":239,"kind":2048,"name":"getPublicKeysForAddress","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getpublickeysforaddress","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":240,"kind":2048,"name":"removeKeysForId","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#removekeysforid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":241,"kind":2048,"name":"removePublicKeyForId","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#removepublickeyforid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":242,"kind":2048,"name":"removePublicKey","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#removepublickey","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":243,"kind":2048,"name":"clearKeysInKeyring","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#clearkeysinkeyring","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":244,"kind":2048,"name":"sign","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#sign","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":245,"kind":256,"name":"MutableKeyStore","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_pgp/pgp-key-store"},{"id":246,"kind":2048,"name":"loadKeyring","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#loadkeyring","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":247,"kind":2048,"name":"importKeyPair","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#importkeypair","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":248,"kind":2048,"name":"importPublicKey","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#importpublickey","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":249,"kind":2048,"name":"importPrivateKey","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#importprivatekey","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":250,"kind":2048,"name":"getPublicKeys","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getpublickeys","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":251,"kind":2048,"name":"getTrustedKeys","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#gettrustedkeys","classes":"tsd-kind-method tsd-parent-kind-interface tsd-is-overwrite","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":252,"kind":2048,"name":"getTrustedActiveKeys","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#gettrustedactivekeys","classes":"tsd-kind-method tsd-parent-kind-interface tsd-is-overwrite","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":253,"kind":2048,"name":"getEncryptKeys","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getencryptkeys","classes":"tsd-kind-method tsd-parent-kind-interface tsd-is-overwrite","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":254,"kind":2048,"name":"getPrivateKeys","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getprivatekeys","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":255,"kind":2048,"name":"getPrivateKey","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getprivatekey","classes":"tsd-kind-method tsd-parent-kind-interface tsd-is-overwrite","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":256,"kind":2048,"name":"isValidKey","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#isvalidkey","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":257,"kind":2048,"name":"isEncryptedPrivateKey","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#isencryptedprivatekey","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":258,"kind":2048,"name":"getFingerprint","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getfingerprint","classes":"tsd-kind-method tsd-parent-kind-interface tsd-is-overwrite","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":259,"kind":2048,"name":"getKeyId","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getkeyid","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":260,"kind":2048,"name":"getPrivateKeyId","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getprivatekeyid","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":261,"kind":2048,"name":"getKeysForId","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getkeysforid","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":262,"kind":2048,"name":"getPublicKeyForId","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getpublickeyforid","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":263,"kind":2048,"name":"getPrivateKeyForId","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getprivatekeyforid","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":264,"kind":2048,"name":"getPublicKeyForSubkeyId","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getpublickeyforsubkeyid","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":265,"kind":2048,"name":"getPublicKeysForAddress","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getpublickeysforaddress","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":266,"kind":2048,"name":"removeKeysForId","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#removekeysforid","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":267,"kind":2048,"name":"removePublicKeyForId","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#removepublickeyforid","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":268,"kind":2048,"name":"removePublicKey","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#removepublickey","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":269,"kind":2048,"name":"clearKeysInKeyring","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#clearkeysinkeyring","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":270,"kind":2048,"name":"sign","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#sign","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":271,"kind":1,"name":"app/_pgp/pgp-signer","url":"modules/app__pgp_pgp_signer.html","classes":"tsd-kind-module"},{"id":272,"kind":256,"name":"Signable","url":"interfaces/app__pgp_pgp_signer.signable.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_pgp/pgp-signer"},{"id":273,"kind":2048,"name":"digest","url":"interfaces/app__pgp_pgp_signer.signable.html#digest","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signable"},{"id":274,"kind":4194304,"name":"Signature","url":"modules/app__pgp_pgp_signer.html#signature","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"app/_pgp/pgp-signer"},{"id":275,"kind":65536,"name":"__type","url":"modules/app__pgp_pgp_signer.html#signature.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"app/_pgp/pgp-signer.Signature"},{"id":276,"kind":1024,"name":"engine","url":"modules/app__pgp_pgp_signer.html#signature.__type.engine","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_pgp/pgp-signer.Signature.__type"},{"id":277,"kind":1024,"name":"algo","url":"modules/app__pgp_pgp_signer.html#signature.__type.algo","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_pgp/pgp-signer.Signature.__type"},{"id":278,"kind":1024,"name":"data","url":"modules/app__pgp_pgp_signer.html#signature.__type.data","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_pgp/pgp-signer.Signature.__type"},{"id":279,"kind":1024,"name":"digest","url":"modules/app__pgp_pgp_signer.html#signature.__type.digest","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_pgp/pgp-signer.Signature.__type"},{"id":280,"kind":256,"name":"Signer","url":"interfaces/app__pgp_pgp_signer.signer.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_pgp/pgp-signer"},{"id":281,"kind":2048,"name":"onsign","url":"interfaces/app__pgp_pgp_signer.signer.html#onsign","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signer"},{"id":282,"kind":2048,"name":"onverify","url":"interfaces/app__pgp_pgp_signer.signer.html#onverify","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signer"},{"id":283,"kind":2048,"name":"fingerprint","url":"interfaces/app__pgp_pgp_signer.signer.html#fingerprint","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signer"},{"id":284,"kind":2048,"name":"prepare","url":"interfaces/app__pgp_pgp_signer.signer.html#prepare","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signer"},{"id":285,"kind":2048,"name":"verify","url":"interfaces/app__pgp_pgp_signer.signer.html#verify","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signer"},{"id":286,"kind":2048,"name":"sign","url":"interfaces/app__pgp_pgp_signer.signer.html#sign","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signer"},{"id":287,"kind":128,"name":"PGPSigner","url":"classes/app__pgp_pgp_signer.pgpsigner.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_pgp/pgp-signer"},{"id":288,"kind":512,"name":"constructor","url":"classes/app__pgp_pgp_signer.pgpsigner.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":289,"kind":1024,"name":"engine","url":"classes/app__pgp_pgp_signer.pgpsigner.html#engine","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":290,"kind":1024,"name":"algo","url":"classes/app__pgp_pgp_signer.pgpsigner.html#algo","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":291,"kind":1024,"name":"dgst","url":"classes/app__pgp_pgp_signer.pgpsigner.html#dgst","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":292,"kind":1024,"name":"signature","url":"classes/app__pgp_pgp_signer.pgpsigner.html#signature","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":293,"kind":1024,"name":"keyStore","url":"classes/app__pgp_pgp_signer.pgpsigner.html#keystore","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":294,"kind":1024,"name":"onsign","url":"classes/app__pgp_pgp_signer.pgpsigner.html#onsign","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":295,"kind":65536,"name":"__type","url":"classes/app__pgp_pgp_signer.pgpsigner.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":296,"kind":1024,"name":"onverify","url":"classes/app__pgp_pgp_signer.pgpsigner.html#onverify","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":297,"kind":65536,"name":"__type","url":"classes/app__pgp_pgp_signer.pgpsigner.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":298,"kind":1024,"name":"loggingService","url":"classes/app__pgp_pgp_signer.pgpsigner.html#loggingservice","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":299,"kind":2048,"name":"fingerprint","url":"classes/app__pgp_pgp_signer.pgpsigner.html#fingerprint","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":300,"kind":2048,"name":"prepare","url":"classes/app__pgp_pgp_signer.pgpsigner.html#prepare","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":301,"kind":2048,"name":"verify","url":"classes/app__pgp_pgp_signer.pgpsigner.html#verify","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":302,"kind":2048,"name":"sign","url":"classes/app__pgp_pgp_signer.pgpsigner.html#sign","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":303,"kind":1,"name":"app/_services/auth.service","url":"modules/app__services_auth_service.html","classes":"tsd-kind-module"},{"id":304,"kind":128,"name":"AuthService","url":"classes/app__services_auth_service.authservice.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_services/auth.service"},{"id":305,"kind":512,"name":"constructor","url":"classes/app__services_auth_service.authservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":306,"kind":1024,"name":"sessionToken","url":"classes/app__services_auth_service.authservice.html#sessiontoken","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":307,"kind":1024,"name":"sessionLoginCount","url":"classes/app__services_auth_service.authservice.html#sessionlogincount","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":308,"kind":1024,"name":"mutableKeyStore","url":"classes/app__services_auth_service.authservice.html#mutablekeystore","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":309,"kind":2048,"name":"init","url":"classes/app__services_auth_service.authservice.html#init","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":310,"kind":2048,"name":"setState","url":"classes/app__services_auth_service.authservice.html#setstate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":311,"kind":2048,"name":"getWithToken","url":"classes/app__services_auth_service.authservice.html#getwithtoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":312,"kind":2048,"name":"sendResponse","url":"classes/app__services_auth_service.authservice.html#sendresponse","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":313,"kind":2048,"name":"getChallenge","url":"classes/app__services_auth_service.authservice.html#getchallenge","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":314,"kind":2048,"name":"login","url":"classes/app__services_auth_service.authservice.html#login","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":315,"kind":2048,"name":"loginResponse","url":"classes/app__services_auth_service.authservice.html#loginresponse","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":316,"kind":2048,"name":"loginView","url":"classes/app__services_auth_service.authservice.html#loginview","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":317,"kind":2048,"name":"setKey","url":"classes/app__services_auth_service.authservice.html#setkey","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":318,"kind":2048,"name":"logout","url":"classes/app__services_auth_service.authservice.html#logout","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":319,"kind":2048,"name":"getTrustedUsers","url":"classes/app__services_auth_service.authservice.html#gettrustedusers","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":320,"kind":2048,"name":"getPublicKeys","url":"classes/app__services_auth_service.authservice.html#getpublickeys","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":321,"kind":2048,"name":"getPrivateKey","url":"classes/app__services_auth_service.authservice.html#getprivatekey","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":322,"kind":1,"name":"app/_services/block-sync.service","url":"modules/app__services_block_sync_service.html","classes":"tsd-kind-module"},{"id":323,"kind":128,"name":"BlockSyncService","url":"classes/app__services_block_sync_service.blocksyncservice.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_services/block-sync.service"},{"id":324,"kind":512,"name":"constructor","url":"classes/app__services_block_sync_service.blocksyncservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_services/block-sync.service.BlockSyncService"},{"id":325,"kind":1024,"name":"readyStateTarget","url":"classes/app__services_block_sync_service.blocksyncservice.html#readystatetarget","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/block-sync.service.BlockSyncService"},{"id":326,"kind":1024,"name":"readyState","url":"classes/app__services_block_sync_service.blocksyncservice.html#readystate","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/block-sync.service.BlockSyncService"},{"id":327,"kind":2048,"name":"blockSync","url":"classes/app__services_block_sync_service.blocksyncservice.html#blocksync","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/block-sync.service.BlockSyncService"},{"id":328,"kind":2048,"name":"readyStateProcessor","url":"classes/app__services_block_sync_service.blocksyncservice.html#readystateprocessor","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/block-sync.service.BlockSyncService"},{"id":329,"kind":2048,"name":"newTransferEvent","url":"classes/app__services_block_sync_service.blocksyncservice.html#newtransferevent","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/block-sync.service.BlockSyncService"},{"id":330,"kind":2048,"name":"newConversionEvent","url":"classes/app__services_block_sync_service.blocksyncservice.html#newconversionevent","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/block-sync.service.BlockSyncService"},{"id":331,"kind":2048,"name":"scan","url":"classes/app__services_block_sync_service.blocksyncservice.html#scan","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/block-sync.service.BlockSyncService"},{"id":332,"kind":2048,"name":"fetcher","url":"classes/app__services_block_sync_service.blocksyncservice.html#fetcher","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/block-sync.service.BlockSyncService"},{"id":333,"kind":1,"name":"app/_services/error-dialog.service","url":"modules/app__services_error_dialog_service.html","classes":"tsd-kind-module"},{"id":334,"kind":128,"name":"ErrorDialogService","url":"classes/app__services_error_dialog_service.errordialogservice.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_services/error-dialog.service"},{"id":335,"kind":512,"name":"constructor","url":"classes/app__services_error_dialog_service.errordialogservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_services/error-dialog.service.ErrorDialogService"},{"id":336,"kind":1024,"name":"isDialogOpen","url":"classes/app__services_error_dialog_service.errordialogservice.html#isdialogopen","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/error-dialog.service.ErrorDialogService"},{"id":337,"kind":1024,"name":"dialog","url":"classes/app__services_error_dialog_service.errordialogservice.html#dialog","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/error-dialog.service.ErrorDialogService"},{"id":338,"kind":2048,"name":"openDialog","url":"classes/app__services_error_dialog_service.errordialogservice.html#opendialog","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/error-dialog.service.ErrorDialogService"},{"id":339,"kind":1,"name":"app/_services","url":"modules/app__services.html","classes":"tsd-kind-module"},{"id":340,"kind":1,"name":"app/_services/location.service","url":"modules/app__services_location_service.html","classes":"tsd-kind-module"},{"id":341,"kind":128,"name":"LocationService","url":"classes/app__services_location_service.locationservice.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_services/location.service"},{"id":342,"kind":512,"name":"constructor","url":"classes/app__services_location_service.locationservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_services/location.service.LocationService"},{"id":343,"kind":2048,"name":"getAreaNames","url":"classes/app__services_location_service.locationservice.html#getareanames","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/location.service.LocationService"},{"id":344,"kind":2048,"name":"getAreaNameByLocation","url":"classes/app__services_location_service.locationservice.html#getareanamebylocation","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/location.service.LocationService"},{"id":345,"kind":2048,"name":"getAreaTypes","url":"classes/app__services_location_service.locationservice.html#getareatypes","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/location.service.LocationService"},{"id":346,"kind":2048,"name":"getAreaTypeByArea","url":"classes/app__services_location_service.locationservice.html#getareatypebyarea","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/location.service.LocationService"},{"id":347,"kind":1,"name":"app/_services/logging.service","url":"modules/app__services_logging_service.html","classes":"tsd-kind-module"},{"id":348,"kind":128,"name":"LoggingService","url":"classes/app__services_logging_service.loggingservice.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_services/logging.service"},{"id":349,"kind":512,"name":"constructor","url":"classes/app__services_logging_service.loggingservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_services/logging.service.LoggingService"},{"id":350,"kind":1024,"name":"env","url":"classes/app__services_logging_service.loggingservice.html#env","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/logging.service.LoggingService"},{"id":351,"kind":1024,"name":"canDebug","url":"classes/app__services_logging_service.loggingservice.html#candebug","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/logging.service.LoggingService"},{"id":352,"kind":2048,"name":"sendTraceLevelMessage","url":"classes/app__services_logging_service.loggingservice.html#sendtracelevelmessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/logging.service.LoggingService"},{"id":353,"kind":2048,"name":"sendDebugLevelMessage","url":"classes/app__services_logging_service.loggingservice.html#senddebuglevelmessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/logging.service.LoggingService"},{"id":354,"kind":2048,"name":"sendInfoLevelMessage","url":"classes/app__services_logging_service.loggingservice.html#sendinfolevelmessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/logging.service.LoggingService"},{"id":355,"kind":2048,"name":"sendLogLevelMessage","url":"classes/app__services_logging_service.loggingservice.html#sendloglevelmessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/logging.service.LoggingService"},{"id":356,"kind":2048,"name":"sendWarnLevelMessage","url":"classes/app__services_logging_service.loggingservice.html#sendwarnlevelmessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/logging.service.LoggingService"},{"id":357,"kind":2048,"name":"sendErrorLevelMessage","url":"classes/app__services_logging_service.loggingservice.html#senderrorlevelmessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/logging.service.LoggingService"},{"id":358,"kind":2048,"name":"sendFatalLevelMessage","url":"classes/app__services_logging_service.loggingservice.html#sendfatallevelmessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/logging.service.LoggingService"},{"id":359,"kind":1,"name":"app/_services/registry.service","url":"modules/app__services_registry_service.html","classes":"tsd-kind-module"},{"id":360,"kind":128,"name":"RegistryService","url":"classes/app__services_registry_service.registryservice.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_services/registry.service"},{"id":361,"kind":512,"name":"constructor","url":"classes/app__services_registry_service.registryservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_services/registry.service.RegistryService"},{"id":362,"kind":1024,"name":"web3","url":"classes/app__services_registry_service.registryservice.html#web3","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/registry.service.RegistryService"},{"id":363,"kind":1024,"name":"fileGetter","url":"classes/app__services_registry_service.registryservice.html#filegetter","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/registry.service.RegistryService"},{"id":364,"kind":1024,"name":"registry","url":"classes/app__services_registry_service.registryservice.html#registry","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/registry.service.RegistryService"},{"id":365,"kind":2048,"name":"getRegistry","url":"classes/app__services_registry_service.registryservice.html#getregistry","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/registry.service.RegistryService"},{"id":366,"kind":2048,"name":"getWeb3","url":"classes/app__services_registry_service.registryservice.html#getweb3","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/registry.service.RegistryService"},{"id":367,"kind":1,"name":"app/_services/token.service","url":"modules/app__services_token_service.html","classes":"tsd-kind-module"},{"id":368,"kind":128,"name":"TokenService","url":"classes/app__services_token_service.tokenservice.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_services/token.service"},{"id":369,"kind":512,"name":"constructor","url":"classes/app__services_token_service.tokenservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":370,"kind":1024,"name":"registry","url":"classes/app__services_token_service.tokenservice.html#registry","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":371,"kind":1024,"name":"tokenRegistry","url":"classes/app__services_token_service.tokenservice.html#tokenregistry","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":372,"kind":1024,"name":"LoadEvent","url":"classes/app__services_token_service.tokenservice.html#loadevent","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":373,"kind":2048,"name":"getTokens","url":"classes/app__services_token_service.tokenservice.html#gettokens","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":374,"kind":2048,"name":"getTokenBySymbol","url":"classes/app__services_token_service.tokenservice.html#gettokenbysymbol","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":375,"kind":2048,"name":"getTokenBalance","url":"classes/app__services_token_service.tokenservice.html#gettokenbalance","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":376,"kind":1,"name":"app/_services/transaction.service","url":"modules/app__services_transaction_service.html","classes":"tsd-kind-module"},{"id":377,"kind":128,"name":"TransactionService","url":"classes/app__services_transaction_service.transactionservice.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_services/transaction.service"},{"id":378,"kind":512,"name":"constructor","url":"classes/app__services_transaction_service.transactionservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":379,"kind":1024,"name":"transactions","url":"classes/app__services_transaction_service.transactionservice.html#transactions","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":380,"kind":1024,"name":"transactionList","url":"classes/app__services_transaction_service.transactionservice.html#transactionlist","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"app/_services/transaction.service.TransactionService"},{"id":381,"kind":1024,"name":"transactionsSubject","url":"classes/app__services_transaction_service.transactionservice.html#transactionssubject","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":382,"kind":1024,"name":"userInfo","url":"classes/app__services_transaction_service.transactionservice.html#userinfo","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":383,"kind":1024,"name":"web3","url":"classes/app__services_transaction_service.transactionservice.html#web3","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":384,"kind":1024,"name":"registry","url":"classes/app__services_transaction_service.transactionservice.html#registry","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":385,"kind":2048,"name":"getAllTransactions","url":"classes/app__services_transaction_service.transactionservice.html#getalltransactions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":386,"kind":2048,"name":"getAddressTransactions","url":"classes/app__services_transaction_service.transactionservice.html#getaddresstransactions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":387,"kind":2048,"name":"setTransaction","url":"classes/app__services_transaction_service.transactionservice.html#settransaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":388,"kind":2048,"name":"setConversion","url":"classes/app__services_transaction_service.transactionservice.html#setconversion","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":389,"kind":2048,"name":"addTransaction","url":"classes/app__services_transaction_service.transactionservice.html#addtransaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":390,"kind":2048,"name":"resetTransactionsList","url":"classes/app__services_transaction_service.transactionservice.html#resettransactionslist","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":391,"kind":2048,"name":"getAccountInfo","url":"classes/app__services_transaction_service.transactionservice.html#getaccountinfo","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":392,"kind":2048,"name":"transferRequest","url":"classes/app__services_transaction_service.transactionservice.html#transferrequest","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":393,"kind":1,"name":"app/_services/user.service","url":"modules/app__services_user_service.html","classes":"tsd-kind-module"},{"id":394,"kind":128,"name":"UserService","url":"classes/app__services_user_service.userservice.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_services/user.service"},{"id":395,"kind":512,"name":"constructor","url":"classes/app__services_user_service.userservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":396,"kind":1024,"name":"headers","url":"classes/app__services_user_service.userservice.html#headers","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":397,"kind":1024,"name":"keystore","url":"classes/app__services_user_service.userservice.html#keystore","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":398,"kind":1024,"name":"signer","url":"classes/app__services_user_service.userservice.html#signer","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":399,"kind":1024,"name":"registry","url":"classes/app__services_user_service.userservice.html#registry","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":400,"kind":1024,"name":"accounts","url":"classes/app__services_user_service.userservice.html#accounts","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":401,"kind":1024,"name":"accountsList","url":"classes/app__services_user_service.userservice.html#accountslist","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"app/_services/user.service.UserService"},{"id":402,"kind":1024,"name":"accountsSubject","url":"classes/app__services_user_service.userservice.html#accountssubject","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":403,"kind":1024,"name":"actions","url":"classes/app__services_user_service.userservice.html#actions","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":404,"kind":1024,"name":"actionsList","url":"classes/app__services_user_service.userservice.html#actionslist","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"app/_services/user.service.UserService"},{"id":405,"kind":1024,"name":"actionsSubject","url":"classes/app__services_user_service.userservice.html#actionssubject","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":406,"kind":2048,"name":"resetPin","url":"classes/app__services_user_service.userservice.html#resetpin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":407,"kind":2048,"name":"getAccountStatus","url":"classes/app__services_user_service.userservice.html#getaccountstatus","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":408,"kind":2048,"name":"getLockedAccounts","url":"classes/app__services_user_service.userservice.html#getlockedaccounts","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":409,"kind":2048,"name":"changeAccountInfo","url":"classes/app__services_user_service.userservice.html#changeaccountinfo","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":410,"kind":2048,"name":"updateMeta","url":"classes/app__services_user_service.userservice.html#updatemeta","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":411,"kind":2048,"name":"getActions","url":"classes/app__services_user_service.userservice.html#getactions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":412,"kind":2048,"name":"getActionById","url":"classes/app__services_user_service.userservice.html#getactionbyid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":413,"kind":2048,"name":"approveAction","url":"classes/app__services_user_service.userservice.html#approveaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":414,"kind":2048,"name":"revokeAction","url":"classes/app__services_user_service.userservice.html#revokeaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":415,"kind":2048,"name":"getAccountDetailsFromMeta","url":"classes/app__services_user_service.userservice.html#getaccountdetailsfrommeta","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":416,"kind":2048,"name":"wrap","url":"classes/app__services_user_service.userservice.html#wrap","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":417,"kind":2048,"name":"loadAccounts","url":"classes/app__services_user_service.userservice.html#loadaccounts","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":418,"kind":2048,"name":"getAccountByAddress","url":"classes/app__services_user_service.userservice.html#getaccountbyaddress","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":419,"kind":2048,"name":"getAccountByPhone","url":"classes/app__services_user_service.userservice.html#getaccountbyphone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":420,"kind":2048,"name":"resetAccountsList","url":"classes/app__services_user_service.userservice.html#resetaccountslist","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":421,"kind":2048,"name":"searchAccountByName","url":"classes/app__services_user_service.userservice.html#searchaccountbyname","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":422,"kind":2048,"name":"getCategories","url":"classes/app__services_user_service.userservice.html#getcategories","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":423,"kind":2048,"name":"getCategoryByProduct","url":"classes/app__services_user_service.userservice.html#getcategorybyproduct","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":424,"kind":2048,"name":"getAccountTypes","url":"classes/app__services_user_service.userservice.html#getaccounttypes","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":425,"kind":2048,"name":"getTransactionTypes","url":"classes/app__services_user_service.userservice.html#gettransactiontypes","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":426,"kind":2048,"name":"getGenders","url":"classes/app__services_user_service.userservice.html#getgenders","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":427,"kind":1,"name":"app/app-routing.module","url":"modules/app_app_routing_module.html","classes":"tsd-kind-module"},{"id":428,"kind":128,"name":"AppRoutingModule","url":"classes/app_app_routing_module.approutingmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/app-routing.module"},{"id":429,"kind":512,"name":"constructor","url":"classes/app_app_routing_module.approutingmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/app-routing.module.AppRoutingModule"},{"id":430,"kind":1,"name":"app/app.component","url":"modules/app_app_component.html","classes":"tsd-kind-module"},{"id":431,"kind":128,"name":"AppComponent","url":"classes/app_app_component.appcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/app.component"},{"id":432,"kind":512,"name":"constructor","url":"classes/app_app_component.appcomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/app.component.AppComponent"},{"id":433,"kind":1024,"name":"title","url":"classes/app_app_component.appcomponent.html#title","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/app.component.AppComponent"},{"id":434,"kind":1024,"name":"readyStateTarget","url":"classes/app_app_component.appcomponent.html#readystatetarget","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/app.component.AppComponent"},{"id":435,"kind":1024,"name":"readyState","url":"classes/app_app_component.appcomponent.html#readystate","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/app.component.AppComponent"},{"id":436,"kind":1024,"name":"mediaQuery","url":"classes/app_app_component.appcomponent.html#mediaquery","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/app.component.AppComponent"},{"id":437,"kind":2048,"name":"onResize","url":"classes/app_app_component.appcomponent.html#onresize","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/app.component.AppComponent"},{"id":438,"kind":2048,"name":"cicTransfer","url":"classes/app_app_component.appcomponent.html#cictransfer","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/app.component.AppComponent"},{"id":439,"kind":2048,"name":"cicConvert","url":"classes/app_app_component.appcomponent.html#cicconvert","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/app.component.AppComponent"},{"id":440,"kind":1,"name":"app/app.module","url":"modules/app_app_module.html","classes":"tsd-kind-module"},{"id":441,"kind":128,"name":"AppModule","url":"classes/app_app_module.appmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/app.module"},{"id":442,"kind":512,"name":"constructor","url":"classes/app_app_module.appmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/app.module.AppModule"},{"id":443,"kind":1,"name":"app/auth/_directives","url":"modules/app_auth__directives.html","classes":"tsd-kind-module"},{"id":444,"kind":1,"name":"app/auth/_directives/password-toggle.directive","url":"modules/app_auth__directives_password_toggle_directive.html","classes":"tsd-kind-module"},{"id":445,"kind":128,"name":"PasswordToggleDirective","url":"classes/app_auth__directives_password_toggle_directive.passwordtoggledirective.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/auth/_directives/password-toggle.directive"},{"id":446,"kind":512,"name":"constructor","url":"classes/app_auth__directives_password_toggle_directive.passwordtoggledirective.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/auth/_directives/password-toggle.directive.PasswordToggleDirective"},{"id":447,"kind":1024,"name":"id","url":"classes/app_auth__directives_password_toggle_directive.passwordtoggledirective.html#id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/auth/_directives/password-toggle.directive.PasswordToggleDirective"},{"id":448,"kind":1024,"name":"iconId","url":"classes/app_auth__directives_password_toggle_directive.passwordtoggledirective.html#iconid","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/auth/_directives/password-toggle.directive.PasswordToggleDirective"},{"id":449,"kind":2048,"name":"togglePasswordVisibility","url":"classes/app_auth__directives_password_toggle_directive.passwordtoggledirective.html#togglepasswordvisibility","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/auth/_directives/password-toggle.directive.PasswordToggleDirective"},{"id":450,"kind":1,"name":"app/auth/auth-routing.module","url":"modules/app_auth_auth_routing_module.html","classes":"tsd-kind-module"},{"id":451,"kind":128,"name":"AuthRoutingModule","url":"classes/app_auth_auth_routing_module.authroutingmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/auth/auth-routing.module"},{"id":452,"kind":512,"name":"constructor","url":"classes/app_auth_auth_routing_module.authroutingmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/auth/auth-routing.module.AuthRoutingModule"},{"id":453,"kind":1,"name":"app/auth/auth.component","url":"modules/app_auth_auth_component.html","classes":"tsd-kind-module"},{"id":454,"kind":128,"name":"AuthComponent","url":"classes/app_auth_auth_component.authcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/auth/auth.component"},{"id":455,"kind":512,"name":"constructor","url":"classes/app_auth_auth_component.authcomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/auth/auth.component.AuthComponent"},{"id":456,"kind":1024,"name":"keyForm","url":"classes/app_auth_auth_component.authcomponent.html#keyform","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/auth/auth.component.AuthComponent"},{"id":457,"kind":1024,"name":"submitted","url":"classes/app_auth_auth_component.authcomponent.html#submitted","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/auth/auth.component.AuthComponent"},{"id":458,"kind":1024,"name":"loading","url":"classes/app_auth_auth_component.authcomponent.html#loading","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/auth/auth.component.AuthComponent"},{"id":459,"kind":1024,"name":"matcher","url":"classes/app_auth_auth_component.authcomponent.html#matcher","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/auth/auth.component.AuthComponent"},{"id":460,"kind":2048,"name":"ngOnInit","url":"classes/app_auth_auth_component.authcomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/auth/auth.component.AuthComponent"},{"id":461,"kind":262144,"name":"keyFormStub","url":"classes/app_auth_auth_component.authcomponent.html#keyformstub","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"app/auth/auth.component.AuthComponent"},{"id":462,"kind":2048,"name":"onSubmit","url":"classes/app_auth_auth_component.authcomponent.html#onsubmit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/auth/auth.component.AuthComponent"},{"id":463,"kind":2048,"name":"login","url":"classes/app_auth_auth_component.authcomponent.html#login","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/auth/auth.component.AuthComponent"},{"id":464,"kind":2048,"name":"switchWindows","url":"classes/app_auth_auth_component.authcomponent.html#switchwindows","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/auth/auth.component.AuthComponent"},{"id":465,"kind":2048,"name":"toggleDisplay","url":"classes/app_auth_auth_component.authcomponent.html#toggledisplay","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/auth/auth.component.AuthComponent"},{"id":466,"kind":1,"name":"app/auth/auth.module","url":"modules/app_auth_auth_module.html","classes":"tsd-kind-module"},{"id":467,"kind":128,"name":"AuthModule","url":"classes/app_auth_auth_module.authmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/auth/auth.module"},{"id":468,"kind":512,"name":"constructor","url":"classes/app_auth_auth_module.authmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/auth/auth.module.AuthModule"},{"id":469,"kind":1,"name":"app/pages/accounts/account-details/account-details.component","url":"modules/app_pages_accounts_account_details_account_details_component.html","classes":"tsd-kind-module"},{"id":470,"kind":128,"name":"AccountDetailsComponent","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/accounts/account-details/account-details.component"},{"id":471,"kind":512,"name":"constructor","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":472,"kind":1024,"name":"transactionsDataSource","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#transactionsdatasource","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":473,"kind":1024,"name":"transactionsDisplayedColumns","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#transactionsdisplayedcolumns","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":474,"kind":1024,"name":"transactionsDefaultPageSize","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#transactionsdefaultpagesize","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":475,"kind":1024,"name":"transactionsPageSizeOptions","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#transactionspagesizeoptions","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":476,"kind":1024,"name":"transactionTablePaginator","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#transactiontablepaginator","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":477,"kind":1024,"name":"transactionTableSort","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#transactiontablesort","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":478,"kind":1024,"name":"userDataSource","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#userdatasource","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":479,"kind":1024,"name":"userDisplayedColumns","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#userdisplayedcolumns","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":480,"kind":1024,"name":"usersDefaultPageSize","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#usersdefaultpagesize","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":481,"kind":1024,"name":"usersPageSizeOptions","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#userspagesizeoptions","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":482,"kind":1024,"name":"userTablePaginator","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#usertablepaginator","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":483,"kind":1024,"name":"userTableSort","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#usertablesort","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":484,"kind":1024,"name":"accountInfoForm","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#accountinfoform","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":485,"kind":1024,"name":"account","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#account","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":486,"kind":1024,"name":"accountAddress","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#accountaddress","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":487,"kind":1024,"name":"accountStatus","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#accountstatus","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":488,"kind":1024,"name":"accounts","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#accounts","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":489,"kind":1024,"name":"accountsType","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#accountstype","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":490,"kind":1024,"name":"categories","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#categories","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":491,"kind":1024,"name":"areaNames","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#areanames","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":492,"kind":1024,"name":"areaTypes","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#areatypes","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":493,"kind":1024,"name":"transaction","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#transaction","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":494,"kind":1024,"name":"transactions","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#transactions","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":495,"kind":1024,"name":"transactionsType","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#transactionstype","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":496,"kind":1024,"name":"accountTypes","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#accounttypes","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":497,"kind":1024,"name":"transactionsTypes","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#transactionstypes","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":498,"kind":1024,"name":"genders","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#genders","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":499,"kind":1024,"name":"matcher","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#matcher","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":500,"kind":1024,"name":"submitted","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#submitted","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":501,"kind":1024,"name":"bloxbergLink","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#bloxberglink","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":502,"kind":2048,"name":"ngOnInit","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":503,"kind":2048,"name":"doTransactionFilter","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#dotransactionfilter","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":504,"kind":2048,"name":"doUserFilter","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#douserfilter","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":505,"kind":2048,"name":"viewTransaction","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#viewtransaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":506,"kind":2048,"name":"viewAccount","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#viewaccount","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":507,"kind":262144,"name":"accountInfoFormStub","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#accountinfoformstub","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":508,"kind":2048,"name":"saveInfo","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#saveinfo","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":509,"kind":2048,"name":"filterAccounts","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#filteraccounts","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":510,"kind":2048,"name":"filterTransactions","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#filtertransactions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":511,"kind":2048,"name":"resetPin","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#resetpin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":512,"kind":2048,"name":"downloadCsv","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#downloadcsv","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":513,"kind":2048,"name":"copyAddress","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#copyaddress","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":514,"kind":1,"name":"app/pages/accounts/account-search/account-search.component","url":"modules/app_pages_accounts_account_search_account_search_component.html","classes":"tsd-kind-module"},{"id":515,"kind":128,"name":"AccountSearchComponent","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/accounts/account-search/account-search.component"},{"id":516,"kind":512,"name":"constructor","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":517,"kind":1024,"name":"nameSearchForm","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#namesearchform","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":518,"kind":1024,"name":"nameSearchSubmitted","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#namesearchsubmitted","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":519,"kind":1024,"name":"nameSearchLoading","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#namesearchloading","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":520,"kind":1024,"name":"phoneSearchForm","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#phonesearchform","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":521,"kind":1024,"name":"phoneSearchSubmitted","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#phonesearchsubmitted","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":522,"kind":1024,"name":"phoneSearchLoading","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#phonesearchloading","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":523,"kind":1024,"name":"addressSearchForm","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#addresssearchform","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":524,"kind":1024,"name":"addressSearchSubmitted","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#addresssearchsubmitted","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":525,"kind":1024,"name":"addressSearchLoading","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#addresssearchloading","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":526,"kind":1024,"name":"matcher","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#matcher","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":527,"kind":2048,"name":"ngOnInit","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":528,"kind":262144,"name":"nameSearchFormStub","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#namesearchformstub","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":529,"kind":262144,"name":"phoneSearchFormStub","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#phonesearchformstub","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":530,"kind":262144,"name":"addressSearchFormStub","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#addresssearchformstub","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":531,"kind":2048,"name":"onNameSearch","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#onnamesearch","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":532,"kind":2048,"name":"onPhoneSearch","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#onphonesearch","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":533,"kind":2048,"name":"onAddressSearch","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#onaddresssearch","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":534,"kind":1,"name":"app/pages/accounts/accounts-routing.module","url":"modules/app_pages_accounts_accounts_routing_module.html","classes":"tsd-kind-module"},{"id":535,"kind":128,"name":"AccountsRoutingModule","url":"classes/app_pages_accounts_accounts_routing_module.accountsroutingmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/accounts/accounts-routing.module"},{"id":536,"kind":512,"name":"constructor","url":"classes/app_pages_accounts_accounts_routing_module.accountsroutingmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/accounts/accounts-routing.module.AccountsRoutingModule"},{"id":537,"kind":1,"name":"app/pages/accounts/accounts.component","url":"modules/app_pages_accounts_accounts_component.html","classes":"tsd-kind-module"},{"id":538,"kind":128,"name":"AccountsComponent","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/accounts/accounts.component"},{"id":539,"kind":512,"name":"constructor","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":540,"kind":1024,"name":"dataSource","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#datasource","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":541,"kind":1024,"name":"accounts","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#accounts","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":542,"kind":1024,"name":"displayedColumns","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#displayedcolumns","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":543,"kind":1024,"name":"defaultPageSize","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#defaultpagesize","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":544,"kind":1024,"name":"pageSizeOptions","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#pagesizeoptions","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":545,"kind":1024,"name":"accountsType","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#accountstype","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":546,"kind":1024,"name":"accountTypes","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#accounttypes","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":547,"kind":1024,"name":"paginator","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#paginator","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":548,"kind":1024,"name":"sort","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#sort","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":549,"kind":2048,"name":"ngOnInit","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":550,"kind":2048,"name":"doFilter","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#dofilter","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":551,"kind":2048,"name":"viewAccount","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#viewaccount","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":552,"kind":2048,"name":"filterAccounts","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#filteraccounts","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":553,"kind":2048,"name":"refreshPaginator","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#refreshpaginator","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":554,"kind":2048,"name":"downloadCsv","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#downloadcsv","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":555,"kind":1,"name":"app/pages/accounts/accounts.module","url":"modules/app_pages_accounts_accounts_module.html","classes":"tsd-kind-module"},{"id":556,"kind":128,"name":"AccountsModule","url":"classes/app_pages_accounts_accounts_module.accountsmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/accounts/accounts.module"},{"id":557,"kind":512,"name":"constructor","url":"classes/app_pages_accounts_accounts_module.accountsmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/accounts/accounts.module.AccountsModule"},{"id":558,"kind":1,"name":"app/pages/accounts/create-account/create-account.component","url":"modules/app_pages_accounts_create_account_create_account_component.html","classes":"tsd-kind-module"},{"id":559,"kind":128,"name":"CreateAccountComponent","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/accounts/create-account/create-account.component"},{"id":560,"kind":512,"name":"constructor","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/accounts/create-account/create-account.component.CreateAccountComponent"},{"id":561,"kind":1024,"name":"createForm","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html#createform","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/create-account/create-account.component.CreateAccountComponent"},{"id":562,"kind":1024,"name":"matcher","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html#matcher","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/create-account/create-account.component.CreateAccountComponent"},{"id":563,"kind":1024,"name":"submitted","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html#submitted","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/create-account/create-account.component.CreateAccountComponent"},{"id":564,"kind":1024,"name":"categories","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html#categories","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/create-account/create-account.component.CreateAccountComponent"},{"id":565,"kind":1024,"name":"areaNames","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html#areanames","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/create-account/create-account.component.CreateAccountComponent"},{"id":566,"kind":1024,"name":"accountTypes","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html#accounttypes","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/create-account/create-account.component.CreateAccountComponent"},{"id":567,"kind":1024,"name":"genders","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html#genders","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/create-account/create-account.component.CreateAccountComponent"},{"id":568,"kind":2048,"name":"ngOnInit","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/create-account/create-account.component.CreateAccountComponent"},{"id":569,"kind":262144,"name":"createFormStub","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html#createformstub","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"app/pages/accounts/create-account/create-account.component.CreateAccountComponent"},{"id":570,"kind":2048,"name":"onSubmit","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html#onsubmit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/create-account/create-account.component.CreateAccountComponent"},{"id":571,"kind":1,"name":"app/pages/admin/admin-routing.module","url":"modules/app_pages_admin_admin_routing_module.html","classes":"tsd-kind-module"},{"id":572,"kind":128,"name":"AdminRoutingModule","url":"classes/app_pages_admin_admin_routing_module.adminroutingmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/admin/admin-routing.module"},{"id":573,"kind":512,"name":"constructor","url":"classes/app_pages_admin_admin_routing_module.adminroutingmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/admin/admin-routing.module.AdminRoutingModule"},{"id":574,"kind":1,"name":"app/pages/admin/admin.component","url":"modules/app_pages_admin_admin_component.html","classes":"tsd-kind-module"},{"id":575,"kind":128,"name":"AdminComponent","url":"classes/app_pages_admin_admin_component.admincomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/admin/admin.component"},{"id":576,"kind":512,"name":"constructor","url":"classes/app_pages_admin_admin_component.admincomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":577,"kind":1024,"name":"dataSource","url":"classes/app_pages_admin_admin_component.admincomponent.html#datasource","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":578,"kind":1024,"name":"displayedColumns","url":"classes/app_pages_admin_admin_component.admincomponent.html#displayedcolumns","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":579,"kind":1024,"name":"action","url":"classes/app_pages_admin_admin_component.admincomponent.html#action","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":580,"kind":1024,"name":"actions","url":"classes/app_pages_admin_admin_component.admincomponent.html#actions","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":581,"kind":1024,"name":"paginator","url":"classes/app_pages_admin_admin_component.admincomponent.html#paginator","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":582,"kind":1024,"name":"sort","url":"classes/app_pages_admin_admin_component.admincomponent.html#sort","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":583,"kind":2048,"name":"ngOnInit","url":"classes/app_pages_admin_admin_component.admincomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":584,"kind":2048,"name":"doFilter","url":"classes/app_pages_admin_admin_component.admincomponent.html#dofilter","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":585,"kind":2048,"name":"approvalStatus","url":"classes/app_pages_admin_admin_component.admincomponent.html#approvalstatus","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":586,"kind":2048,"name":"approveAction","url":"classes/app_pages_admin_admin_component.admincomponent.html#approveaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":587,"kind":2048,"name":"disapproveAction","url":"classes/app_pages_admin_admin_component.admincomponent.html#disapproveaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":588,"kind":2048,"name":"expandCollapse","url":"classes/app_pages_admin_admin_component.admincomponent.html#expandcollapse","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":589,"kind":2048,"name":"downloadCsv","url":"classes/app_pages_admin_admin_component.admincomponent.html#downloadcsv","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":590,"kind":1,"name":"app/pages/admin/admin.module","url":"modules/app_pages_admin_admin_module.html","classes":"tsd-kind-module"},{"id":591,"kind":128,"name":"AdminModule","url":"classes/app_pages_admin_admin_module.adminmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/admin/admin.module"},{"id":592,"kind":512,"name":"constructor","url":"classes/app_pages_admin_admin_module.adminmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/admin/admin.module.AdminModule"},{"id":593,"kind":1,"name":"app/pages/pages-routing.module","url":"modules/app_pages_pages_routing_module.html","classes":"tsd-kind-module"},{"id":594,"kind":128,"name":"PagesRoutingModule","url":"classes/app_pages_pages_routing_module.pagesroutingmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/pages-routing.module"},{"id":595,"kind":512,"name":"constructor","url":"classes/app_pages_pages_routing_module.pagesroutingmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/pages-routing.module.PagesRoutingModule"},{"id":596,"kind":1,"name":"app/pages/pages.component","url":"modules/app_pages_pages_component.html","classes":"tsd-kind-module"},{"id":597,"kind":128,"name":"PagesComponent","url":"classes/app_pages_pages_component.pagescomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/pages.component"},{"id":598,"kind":512,"name":"constructor","url":"classes/app_pages_pages_component.pagescomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/pages.component.PagesComponent"},{"id":599,"kind":1024,"name":"url","url":"classes/app_pages_pages_component.pagescomponent.html#url","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/pages.component.PagesComponent"},{"id":600,"kind":1,"name":"app/pages/pages.module","url":"modules/app_pages_pages_module.html","classes":"tsd-kind-module"},{"id":601,"kind":128,"name":"PagesModule","url":"classes/app_pages_pages_module.pagesmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/pages.module"},{"id":602,"kind":512,"name":"constructor","url":"classes/app_pages_pages_module.pagesmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/pages.module.PagesModule"},{"id":603,"kind":1,"name":"app/pages/settings/organization/organization.component","url":"modules/app_pages_settings_organization_organization_component.html","classes":"tsd-kind-module"},{"id":604,"kind":128,"name":"OrganizationComponent","url":"classes/app_pages_settings_organization_organization_component.organizationcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/settings/organization/organization.component"},{"id":605,"kind":512,"name":"constructor","url":"classes/app_pages_settings_organization_organization_component.organizationcomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/settings/organization/organization.component.OrganizationComponent"},{"id":606,"kind":1024,"name":"organizationForm","url":"classes/app_pages_settings_organization_organization_component.organizationcomponent.html#organizationform","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/settings/organization/organization.component.OrganizationComponent"},{"id":607,"kind":1024,"name":"submitted","url":"classes/app_pages_settings_organization_organization_component.organizationcomponent.html#submitted","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/settings/organization/organization.component.OrganizationComponent"},{"id":608,"kind":1024,"name":"matcher","url":"classes/app_pages_settings_organization_organization_component.organizationcomponent.html#matcher","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/settings/organization/organization.component.OrganizationComponent"},{"id":609,"kind":2048,"name":"ngOnInit","url":"classes/app_pages_settings_organization_organization_component.organizationcomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/settings/organization/organization.component.OrganizationComponent"},{"id":610,"kind":262144,"name":"organizationFormStub","url":"classes/app_pages_settings_organization_organization_component.organizationcomponent.html#organizationformstub","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"app/pages/settings/organization/organization.component.OrganizationComponent"},{"id":611,"kind":2048,"name":"onSubmit","url":"classes/app_pages_settings_organization_organization_component.organizationcomponent.html#onsubmit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/settings/organization/organization.component.OrganizationComponent"},{"id":612,"kind":1,"name":"app/pages/settings/settings-routing.module","url":"modules/app_pages_settings_settings_routing_module.html","classes":"tsd-kind-module"},{"id":613,"kind":128,"name":"SettingsRoutingModule","url":"classes/app_pages_settings_settings_routing_module.settingsroutingmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/settings/settings-routing.module"},{"id":614,"kind":512,"name":"constructor","url":"classes/app_pages_settings_settings_routing_module.settingsroutingmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/settings/settings-routing.module.SettingsRoutingModule"},{"id":615,"kind":1,"name":"app/pages/settings/settings.component","url":"modules/app_pages_settings_settings_component.html","classes":"tsd-kind-module"},{"id":616,"kind":128,"name":"SettingsComponent","url":"classes/app_pages_settings_settings_component.settingscomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/settings/settings.component"},{"id":617,"kind":512,"name":"constructor","url":"classes/app_pages_settings_settings_component.settingscomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":618,"kind":1024,"name":"date","url":"classes/app_pages_settings_settings_component.settingscomponent.html#date","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":619,"kind":1024,"name":"dataSource","url":"classes/app_pages_settings_settings_component.settingscomponent.html#datasource","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":620,"kind":1024,"name":"displayedColumns","url":"classes/app_pages_settings_settings_component.settingscomponent.html#displayedcolumns","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":621,"kind":1024,"name":"trustedUsers","url":"classes/app_pages_settings_settings_component.settingscomponent.html#trustedusers","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":622,"kind":1024,"name":"paginator","url":"classes/app_pages_settings_settings_component.settingscomponent.html#paginator","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":623,"kind":1024,"name":"sort","url":"classes/app_pages_settings_settings_component.settingscomponent.html#sort","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":624,"kind":2048,"name":"ngOnInit","url":"classes/app_pages_settings_settings_component.settingscomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":625,"kind":2048,"name":"doFilter","url":"classes/app_pages_settings_settings_component.settingscomponent.html#dofilter","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":626,"kind":2048,"name":"downloadCsv","url":"classes/app_pages_settings_settings_component.settingscomponent.html#downloadcsv","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":627,"kind":2048,"name":"logout","url":"classes/app_pages_settings_settings_component.settingscomponent.html#logout","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":628,"kind":1,"name":"app/pages/settings/settings.module","url":"modules/app_pages_settings_settings_module.html","classes":"tsd-kind-module"},{"id":629,"kind":128,"name":"SettingsModule","url":"classes/app_pages_settings_settings_module.settingsmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/settings/settings.module"},{"id":630,"kind":512,"name":"constructor","url":"classes/app_pages_settings_settings_module.settingsmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/settings/settings.module.SettingsModule"},{"id":631,"kind":1,"name":"app/pages/tokens/token-details/token-details.component","url":"modules/app_pages_tokens_token_details_token_details_component.html","classes":"tsd-kind-module"},{"id":632,"kind":128,"name":"TokenDetailsComponent","url":"classes/app_pages_tokens_token_details_token_details_component.tokendetailscomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/tokens/token-details/token-details.component"},{"id":633,"kind":512,"name":"constructor","url":"classes/app_pages_tokens_token_details_token_details_component.tokendetailscomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/tokens/token-details/token-details.component.TokenDetailsComponent"},{"id":634,"kind":1024,"name":"token","url":"classes/app_pages_tokens_token_details_token_details_component.tokendetailscomponent.html#token","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/tokens/token-details/token-details.component.TokenDetailsComponent"},{"id":635,"kind":2048,"name":"ngOnInit","url":"classes/app_pages_tokens_token_details_token_details_component.tokendetailscomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/tokens/token-details/token-details.component.TokenDetailsComponent"},{"id":636,"kind":1,"name":"app/pages/tokens/tokens-routing.module","url":"modules/app_pages_tokens_tokens_routing_module.html","classes":"tsd-kind-module"},{"id":637,"kind":128,"name":"TokensRoutingModule","url":"classes/app_pages_tokens_tokens_routing_module.tokensroutingmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/tokens/tokens-routing.module"},{"id":638,"kind":512,"name":"constructor","url":"classes/app_pages_tokens_tokens_routing_module.tokensroutingmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/tokens/tokens-routing.module.TokensRoutingModule"},{"id":639,"kind":1,"name":"app/pages/tokens/tokens.component","url":"modules/app_pages_tokens_tokens_component.html","classes":"tsd-kind-module"},{"id":640,"kind":128,"name":"TokensComponent","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/tokens/tokens.component"},{"id":641,"kind":512,"name":"constructor","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/tokens/tokens.component.TokensComponent"},{"id":642,"kind":1024,"name":"dataSource","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html#datasource","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/tokens/tokens.component.TokensComponent"},{"id":643,"kind":1024,"name":"columnsToDisplay","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html#columnstodisplay","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/tokens/tokens.component.TokensComponent"},{"id":644,"kind":1024,"name":"paginator","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html#paginator","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/tokens/tokens.component.TokensComponent"},{"id":645,"kind":1024,"name":"sort","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html#sort","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/tokens/tokens.component.TokensComponent"},{"id":646,"kind":1024,"name":"tokens","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html#tokens","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/tokens/tokens.component.TokensComponent"},{"id":647,"kind":2048,"name":"ngOnInit","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/tokens/tokens.component.TokensComponent"},{"id":648,"kind":2048,"name":"doFilter","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html#dofilter","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/tokens/tokens.component.TokensComponent"},{"id":649,"kind":2048,"name":"viewToken","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html#viewtoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/tokens/tokens.component.TokensComponent"},{"id":650,"kind":2048,"name":"downloadCsv","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html#downloadcsv","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/tokens/tokens.component.TokensComponent"},{"id":651,"kind":1,"name":"app/pages/tokens/tokens.module","url":"modules/app_pages_tokens_tokens_module.html","classes":"tsd-kind-module"},{"id":652,"kind":128,"name":"TokensModule","url":"classes/app_pages_tokens_tokens_module.tokensmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/tokens/tokens.module"},{"id":653,"kind":512,"name":"constructor","url":"classes/app_pages_tokens_tokens_module.tokensmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/tokens/tokens.module.TokensModule"},{"id":654,"kind":1,"name":"app/pages/transactions/transaction-details/transaction-details.component","url":"modules/app_pages_transactions_transaction_details_transaction_details_component.html","classes":"tsd-kind-module"},{"id":655,"kind":128,"name":"TransactionDetailsComponent","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/transactions/transaction-details/transaction-details.component"},{"id":656,"kind":512,"name":"constructor","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":657,"kind":1024,"name":"transaction","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#transaction","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":658,"kind":1024,"name":"senderBloxbergLink","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#senderbloxberglink","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":659,"kind":1024,"name":"recipientBloxbergLink","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#recipientbloxberglink","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":660,"kind":1024,"name":"traderBloxbergLink","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#traderbloxberglink","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":661,"kind":2048,"name":"ngOnInit","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":662,"kind":2048,"name":"viewSender","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#viewsender","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":663,"kind":2048,"name":"viewRecipient","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#viewrecipient","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":664,"kind":2048,"name":"viewTrader","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#viewtrader","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":665,"kind":2048,"name":"reverseTransaction","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#reversetransaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":666,"kind":2048,"name":"copyAddress","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#copyaddress","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":667,"kind":1,"name":"app/pages/transactions/transactions-routing.module","url":"modules/app_pages_transactions_transactions_routing_module.html","classes":"tsd-kind-module"},{"id":668,"kind":128,"name":"TransactionsRoutingModule","url":"classes/app_pages_transactions_transactions_routing_module.transactionsroutingmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/transactions/transactions-routing.module"},{"id":669,"kind":512,"name":"constructor","url":"classes/app_pages_transactions_transactions_routing_module.transactionsroutingmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/transactions/transactions-routing.module.TransactionsRoutingModule"},{"id":670,"kind":1,"name":"app/pages/transactions/transactions.component","url":"modules/app_pages_transactions_transactions_component.html","classes":"tsd-kind-module"},{"id":671,"kind":128,"name":"TransactionsComponent","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/transactions/transactions.component"},{"id":672,"kind":512,"name":"constructor","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":673,"kind":1024,"name":"transactionDataSource","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#transactiondatasource","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":674,"kind":1024,"name":"transactionDisplayedColumns","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#transactiondisplayedcolumns","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":675,"kind":1024,"name":"defaultPageSize","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#defaultpagesize","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":676,"kind":1024,"name":"pageSizeOptions","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#pagesizeoptions","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":677,"kind":1024,"name":"transactions","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#transactions","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":678,"kind":1024,"name":"transaction","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#transaction","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":679,"kind":1024,"name":"transactionsType","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#transactionstype","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":680,"kind":1024,"name":"transactionsTypes","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#transactionstypes","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":681,"kind":1024,"name":"paginator","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#paginator","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":682,"kind":1024,"name":"sort","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#sort","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":683,"kind":2048,"name":"ngOnInit","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":684,"kind":2048,"name":"viewTransaction","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#viewtransaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":685,"kind":2048,"name":"doFilter","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#dofilter","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":686,"kind":2048,"name":"filterTransactions","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#filtertransactions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":687,"kind":2048,"name":"ngAfterViewInit","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#ngafterviewinit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":688,"kind":2048,"name":"downloadCsv","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#downloadcsv","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":689,"kind":1,"name":"app/pages/transactions/transactions.module","url":"modules/app_pages_transactions_transactions_module.html","classes":"tsd-kind-module"},{"id":690,"kind":128,"name":"TransactionsModule","url":"classes/app_pages_transactions_transactions_module.transactionsmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/transactions/transactions.module"},{"id":691,"kind":512,"name":"constructor","url":"classes/app_pages_transactions_transactions_module.transactionsmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/transactions/transactions.module.TransactionsModule"},{"id":692,"kind":1,"name":"app/shared/_directives/menu-selection.directive","url":"modules/app_shared__directives_menu_selection_directive.html","classes":"tsd-kind-module"},{"id":693,"kind":128,"name":"MenuSelectionDirective","url":"classes/app_shared__directives_menu_selection_directive.menuselectiondirective.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/shared/_directives/menu-selection.directive"},{"id":694,"kind":512,"name":"constructor","url":"classes/app_shared__directives_menu_selection_directive.menuselectiondirective.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/shared/_directives/menu-selection.directive.MenuSelectionDirective"},{"id":695,"kind":2048,"name":"onMenuSelect","url":"classes/app_shared__directives_menu_selection_directive.menuselectiondirective.html#onmenuselect","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/shared/_directives/menu-selection.directive.MenuSelectionDirective"},{"id":696,"kind":1,"name":"app/shared/_directives/menu-toggle.directive","url":"modules/app_shared__directives_menu_toggle_directive.html","classes":"tsd-kind-module"},{"id":697,"kind":128,"name":"MenuToggleDirective","url":"classes/app_shared__directives_menu_toggle_directive.menutoggledirective.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/shared/_directives/menu-toggle.directive"},{"id":698,"kind":512,"name":"constructor","url":"classes/app_shared__directives_menu_toggle_directive.menutoggledirective.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/shared/_directives/menu-toggle.directive.MenuToggleDirective"},{"id":699,"kind":2048,"name":"onMenuToggle","url":"classes/app_shared__directives_menu_toggle_directive.menutoggledirective.html#onmenutoggle","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/shared/_directives/menu-toggle.directive.MenuToggleDirective"},{"id":700,"kind":1,"name":"app/shared/_pipes/safe.pipe","url":"modules/app_shared__pipes_safe_pipe.html","classes":"tsd-kind-module"},{"id":701,"kind":128,"name":"SafePipe","url":"classes/app_shared__pipes_safe_pipe.safepipe.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/shared/_pipes/safe.pipe"},{"id":702,"kind":512,"name":"constructor","url":"classes/app_shared__pipes_safe_pipe.safepipe.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/shared/_pipes/safe.pipe.SafePipe"},{"id":703,"kind":2048,"name":"transform","url":"classes/app_shared__pipes_safe_pipe.safepipe.html#transform","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/shared/_pipes/safe.pipe.SafePipe"},{"id":704,"kind":1,"name":"app/shared/_pipes/token-ratio.pipe","url":"modules/app_shared__pipes_token_ratio_pipe.html","classes":"tsd-kind-module"},{"id":705,"kind":128,"name":"TokenRatioPipe","url":"classes/app_shared__pipes_token_ratio_pipe.tokenratiopipe.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/shared/_pipes/token-ratio.pipe"},{"id":706,"kind":512,"name":"constructor","url":"classes/app_shared__pipes_token_ratio_pipe.tokenratiopipe.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/shared/_pipes/token-ratio.pipe.TokenRatioPipe"},{"id":707,"kind":2048,"name":"transform","url":"classes/app_shared__pipes_token_ratio_pipe.tokenratiopipe.html#transform","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/shared/_pipes/token-ratio.pipe.TokenRatioPipe"},{"id":708,"kind":1,"name":"app/shared/error-dialog/error-dialog.component","url":"modules/app_shared_error_dialog_error_dialog_component.html","classes":"tsd-kind-module"},{"id":709,"kind":128,"name":"ErrorDialogComponent","url":"classes/app_shared_error_dialog_error_dialog_component.errordialogcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/shared/error-dialog/error-dialog.component"},{"id":710,"kind":512,"name":"constructor","url":"classes/app_shared_error_dialog_error_dialog_component.errordialogcomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/shared/error-dialog/error-dialog.component.ErrorDialogComponent"},{"id":711,"kind":1024,"name":"data","url":"classes/app_shared_error_dialog_error_dialog_component.errordialogcomponent.html#data","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/shared/error-dialog/error-dialog.component.ErrorDialogComponent"},{"id":712,"kind":1,"name":"app/shared/footer/footer.component","url":"modules/app_shared_footer_footer_component.html","classes":"tsd-kind-module"},{"id":713,"kind":128,"name":"FooterComponent","url":"classes/app_shared_footer_footer_component.footercomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/shared/footer/footer.component"},{"id":714,"kind":512,"name":"constructor","url":"classes/app_shared_footer_footer_component.footercomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/shared/footer/footer.component.FooterComponent"},{"id":715,"kind":2048,"name":"ngOnInit","url":"classes/app_shared_footer_footer_component.footercomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/shared/footer/footer.component.FooterComponent"},{"id":716,"kind":1,"name":"app/shared/shared.module","url":"modules/app_shared_shared_module.html","classes":"tsd-kind-module"},{"id":717,"kind":128,"name":"SharedModule","url":"classes/app_shared_shared_module.sharedmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/shared/shared.module"},{"id":718,"kind":512,"name":"constructor","url":"classes/app_shared_shared_module.sharedmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/shared/shared.module.SharedModule"},{"id":719,"kind":1,"name":"app/shared/sidebar/sidebar.component","url":"modules/app_shared_sidebar_sidebar_component.html","classes":"tsd-kind-module"},{"id":720,"kind":128,"name":"SidebarComponent","url":"classes/app_shared_sidebar_sidebar_component.sidebarcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/shared/sidebar/sidebar.component"},{"id":721,"kind":512,"name":"constructor","url":"classes/app_shared_sidebar_sidebar_component.sidebarcomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/shared/sidebar/sidebar.component.SidebarComponent"},{"id":722,"kind":2048,"name":"ngOnInit","url":"classes/app_shared_sidebar_sidebar_component.sidebarcomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/shared/sidebar/sidebar.component.SidebarComponent"},{"id":723,"kind":1,"name":"app/shared/topbar/topbar.component","url":"modules/app_shared_topbar_topbar_component.html","classes":"tsd-kind-module"},{"id":724,"kind":128,"name":"TopbarComponent","url":"classes/app_shared_topbar_topbar_component.topbarcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/shared/topbar/topbar.component"},{"id":725,"kind":512,"name":"constructor","url":"classes/app_shared_topbar_topbar_component.topbarcomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/shared/topbar/topbar.component.TopbarComponent"},{"id":726,"kind":2048,"name":"ngOnInit","url":"classes/app_shared_topbar_topbar_component.topbarcomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/shared/topbar/topbar.component.TopbarComponent"},{"id":727,"kind":1,"name":"assets/js/ethtx/dist/hex","url":"modules/assets_js_ethtx_dist_hex.html","classes":"tsd-kind-module"},{"id":728,"kind":64,"name":"fromHex","url":"modules/assets_js_ethtx_dist_hex.html#fromhex","classes":"tsd-kind-function tsd-parent-kind-module","parent":"assets/js/ethtx/dist/hex"},{"id":729,"kind":64,"name":"toHex","url":"modules/assets_js_ethtx_dist_hex.html#tohex","classes":"tsd-kind-function tsd-parent-kind-module","parent":"assets/js/ethtx/dist/hex"},{"id":730,"kind":64,"name":"strip0x","url":"modules/assets_js_ethtx_dist_hex.html#strip0x","classes":"tsd-kind-function tsd-parent-kind-module","parent":"assets/js/ethtx/dist/hex"},{"id":731,"kind":64,"name":"add0x","url":"modules/assets_js_ethtx_dist_hex.html#add0x","classes":"tsd-kind-function tsd-parent-kind-module","parent":"assets/js/ethtx/dist/hex"},{"id":732,"kind":1,"name":"assets/js/ethtx/dist","url":"modules/assets_js_ethtx_dist.html","classes":"tsd-kind-module"},{"id":733,"kind":1,"name":"assets/js/ethtx/dist/tx","url":"modules/assets_js_ethtx_dist_tx.html","classes":"tsd-kind-module"},{"id":734,"kind":128,"name":"Tx","url":"classes/assets_js_ethtx_dist_tx.tx.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"assets/js/ethtx/dist/tx"},{"id":735,"kind":512,"name":"constructor","url":"classes/assets_js_ethtx_dist_tx.tx.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":736,"kind":1024,"name":"nonce","url":"classes/assets_js_ethtx_dist_tx.tx.html#nonce","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":737,"kind":1024,"name":"gasPrice","url":"classes/assets_js_ethtx_dist_tx.tx.html#gasprice","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":738,"kind":1024,"name":"gasLimit","url":"classes/assets_js_ethtx_dist_tx.tx.html#gaslimit","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":739,"kind":1024,"name":"to","url":"classes/assets_js_ethtx_dist_tx.tx.html#to","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":740,"kind":1024,"name":"value","url":"classes/assets_js_ethtx_dist_tx.tx.html#value","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":741,"kind":1024,"name":"data","url":"classes/assets_js_ethtx_dist_tx.tx.html#data","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":742,"kind":1024,"name":"v","url":"classes/assets_js_ethtx_dist_tx.tx.html#v","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":743,"kind":1024,"name":"r","url":"classes/assets_js_ethtx_dist_tx.tx.html#r","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":744,"kind":1024,"name":"s","url":"classes/assets_js_ethtx_dist_tx.tx.html#s","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":745,"kind":1024,"name":"chainId","url":"classes/assets_js_ethtx_dist_tx.tx.html#chainid","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":746,"kind":1024,"name":"_signatureSet","url":"classes/assets_js_ethtx_dist_tx.tx.html#_signatureset","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":747,"kind":1024,"name":"_workBuffer","url":"classes/assets_js_ethtx_dist_tx.tx.html#_workbuffer","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":748,"kind":1024,"name":"_outBuffer","url":"classes/assets_js_ethtx_dist_tx.tx.html#_outbuffer","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":749,"kind":1024,"name":"_outBufferCursor","url":"classes/assets_js_ethtx_dist_tx.tx.html#_outbuffercursor","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":750,"kind":1024,"name":"serializeNumber","url":"classes/assets_js_ethtx_dist_tx.tx.html#serializenumber","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":751,"kind":1024,"name":"write","url":"classes/assets_js_ethtx_dist_tx.tx.html#write","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":752,"kind":2048,"name":"serializeBytes","url":"classes/assets_js_ethtx_dist_tx.tx.html#serializebytes","classes":"tsd-kind-method tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":753,"kind":2048,"name":"canonicalOrder","url":"classes/assets_js_ethtx_dist_tx.tx.html#canonicalorder","classes":"tsd-kind-method tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":754,"kind":2048,"name":"serializeRLP","url":"classes/assets_js_ethtx_dist_tx.tx.html#serializerlp","classes":"tsd-kind-method tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":755,"kind":2048,"name":"message","url":"classes/assets_js_ethtx_dist_tx.tx.html#message","classes":"tsd-kind-method tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":756,"kind":2048,"name":"setSignature","url":"classes/assets_js_ethtx_dist_tx.tx.html#setsignature","classes":"tsd-kind-method tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":757,"kind":2048,"name":"clearSignature","url":"classes/assets_js_ethtx_dist_tx.tx.html#clearsignature","classes":"tsd-kind-method tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":758,"kind":64,"name":"stringToValue","url":"modules/assets_js_ethtx_dist_tx.html#stringtovalue","classes":"tsd-kind-function tsd-parent-kind-module","parent":"assets/js/ethtx/dist/tx"},{"id":759,"kind":64,"name":"hexToValue","url":"modules/assets_js_ethtx_dist_tx.html#hextovalue","classes":"tsd-kind-function tsd-parent-kind-module","parent":"assets/js/ethtx/dist/tx"},{"id":760,"kind":64,"name":"toValue","url":"modules/assets_js_ethtx_dist_tx.html#tovalue","classes":"tsd-kind-function tsd-parent-kind-module","parent":"assets/js/ethtx/dist/tx"},{"id":761,"kind":1,"name":"environments/environment.dev","url":"modules/environments_environment_dev.html","classes":"tsd-kind-module"},{"id":762,"kind":32,"name":"environment","url":"modules/environments_environment_dev.html#environment","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"environments/environment.dev"},{"id":763,"kind":65536,"name":"__type","url":"modules/environments_environment_dev.html#environment.__type","classes":"tsd-kind-type-literal tsd-parent-kind-variable","parent":"environments/environment.dev.environment"},{"id":764,"kind":1024,"name":"production","url":"modules/environments_environment_dev.html#environment.__type.production","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":765,"kind":1024,"name":"bloxbergChainId","url":"modules/environments_environment_dev.html#environment.__type.bloxbergchainid","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":766,"kind":1024,"name":"logLevel","url":"modules/environments_environment_dev.html#environment.__type.loglevel","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":767,"kind":1024,"name":"serverLogLevel","url":"modules/environments_environment_dev.html#environment.__type.serverloglevel","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":768,"kind":1024,"name":"loggingUrl","url":"modules/environments_environment_dev.html#environment.__type.loggingurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":769,"kind":1024,"name":"cicMetaUrl","url":"modules/environments_environment_dev.html#environment.__type.cicmetaurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":770,"kind":1024,"name":"publicKeysUrl","url":"modules/environments_environment_dev.html#environment.__type.publickeysurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":771,"kind":1024,"name":"cicCacheUrl","url":"modules/environments_environment_dev.html#environment.__type.ciccacheurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":772,"kind":1024,"name":"web3Provider","url":"modules/environments_environment_dev.html#environment.__type.web3provider","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":773,"kind":1024,"name":"cicUssdUrl","url":"modules/environments_environment_dev.html#environment.__type.cicussdurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":774,"kind":1024,"name":"registryAddress","url":"modules/environments_environment_dev.html#environment.__type.registryaddress","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":775,"kind":1024,"name":"trustedDeclaratorAddress","url":"modules/environments_environment_dev.html#environment.__type.trusteddeclaratoraddress","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":776,"kind":1,"name":"environments/environment.prod","url":"modules/environments_environment_prod.html","classes":"tsd-kind-module"},{"id":777,"kind":32,"name":"environment","url":"modules/environments_environment_prod.html#environment","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"environments/environment.prod"},{"id":778,"kind":65536,"name":"__type","url":"modules/environments_environment_prod.html#environment.__type","classes":"tsd-kind-type-literal tsd-parent-kind-variable","parent":"environments/environment.prod.environment"},{"id":779,"kind":1024,"name":"production","url":"modules/environments_environment_prod.html#environment.__type.production","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":780,"kind":1024,"name":"bloxbergChainId","url":"modules/environments_environment_prod.html#environment.__type.bloxbergchainid","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":781,"kind":1024,"name":"logLevel","url":"modules/environments_environment_prod.html#environment.__type.loglevel","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":782,"kind":1024,"name":"serverLogLevel","url":"modules/environments_environment_prod.html#environment.__type.serverloglevel","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":783,"kind":1024,"name":"loggingUrl","url":"modules/environments_environment_prod.html#environment.__type.loggingurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":784,"kind":1024,"name":"cicMetaUrl","url":"modules/environments_environment_prod.html#environment.__type.cicmetaurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":785,"kind":1024,"name":"publicKeysUrl","url":"modules/environments_environment_prod.html#environment.__type.publickeysurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":786,"kind":1024,"name":"cicCacheUrl","url":"modules/environments_environment_prod.html#environment.__type.ciccacheurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":787,"kind":1024,"name":"web3Provider","url":"modules/environments_environment_prod.html#environment.__type.web3provider","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":788,"kind":1024,"name":"cicUssdUrl","url":"modules/environments_environment_prod.html#environment.__type.cicussdurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":789,"kind":1024,"name":"registryAddress","url":"modules/environments_environment_prod.html#environment.__type.registryaddress","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":790,"kind":1024,"name":"trustedDeclaratorAddress","url":"modules/environments_environment_prod.html#environment.__type.trusteddeclaratoraddress","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":791,"kind":1,"name":"environments/environment","url":"modules/environments_environment.html","classes":"tsd-kind-module"},{"id":792,"kind":32,"name":"environment","url":"modules/environments_environment.html#environment","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"environments/environment"},{"id":793,"kind":65536,"name":"__type","url":"modules/environments_environment.html#environment.__type","classes":"tsd-kind-type-literal tsd-parent-kind-variable","parent":"environments/environment.environment"},{"id":794,"kind":1024,"name":"production","url":"modules/environments_environment.html#environment.__type.production","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":795,"kind":1024,"name":"bloxbergChainId","url":"modules/environments_environment.html#environment.__type.bloxbergchainid","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":796,"kind":1024,"name":"logLevel","url":"modules/environments_environment.html#environment.__type.loglevel","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":797,"kind":1024,"name":"serverLogLevel","url":"modules/environments_environment.html#environment.__type.serverloglevel","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":798,"kind":1024,"name":"loggingUrl","url":"modules/environments_environment.html#environment.__type.loggingurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":799,"kind":1024,"name":"cicMetaUrl","url":"modules/environments_environment.html#environment.__type.cicmetaurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":800,"kind":1024,"name":"publicKeysUrl","url":"modules/environments_environment.html#environment.__type.publickeysurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":801,"kind":1024,"name":"cicCacheUrl","url":"modules/environments_environment.html#environment.__type.ciccacheurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":802,"kind":1024,"name":"web3Provider","url":"modules/environments_environment.html#environment.__type.web3provider","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":803,"kind":1024,"name":"cicUssdUrl","url":"modules/environments_environment.html#environment.__type.cicussdurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":804,"kind":1024,"name":"registryAddress","url":"modules/environments_environment.html#environment.__type.registryaddress","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":805,"kind":1024,"name":"trustedDeclaratorAddress","url":"modules/environments_environment.html#environment.__type.trusteddeclaratoraddress","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":806,"kind":1,"name":"main","url":"modules/main.html","classes":"tsd-kind-module"},{"id":807,"kind":1,"name":"polyfills","url":"modules/polyfills.html","classes":"tsd-kind-module"},{"id":808,"kind":1,"name":"test","url":"modules/test.html","classes":"tsd-kind-module"},{"id":809,"kind":1,"name":"testing/activated-route-stub","url":"modules/testing_activated_route_stub.html","classes":"tsd-kind-module"},{"id":810,"kind":128,"name":"ActivatedRouteStub","url":"classes/testing_activated_route_stub.activatedroutestub.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"testing/activated-route-stub"},{"id":811,"kind":512,"name":"constructor","url":"classes/testing_activated_route_stub.activatedroutestub.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"testing/activated-route-stub.ActivatedRouteStub"},{"id":812,"kind":1024,"name":"subject","url":"classes/testing_activated_route_stub.activatedroutestub.html#subject","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"testing/activated-route-stub.ActivatedRouteStub"},{"id":813,"kind":1024,"name":"paramMap","url":"classes/testing_activated_route_stub.activatedroutestub.html#parammap","classes":"tsd-kind-property tsd-parent-kind-class","parent":"testing/activated-route-stub.ActivatedRouteStub"},{"id":814,"kind":2048,"name":"setParamMap","url":"classes/testing_activated_route_stub.activatedroutestub.html#setparammap","classes":"tsd-kind-method tsd-parent-kind-class","parent":"testing/activated-route-stub.ActivatedRouteStub"},{"id":815,"kind":1,"name":"testing","url":"modules/testing.html","classes":"tsd-kind-module"},{"id":816,"kind":1,"name":"testing/router-link-directive-stub","url":"modules/testing_router_link_directive_stub.html","classes":"tsd-kind-module"},{"id":817,"kind":128,"name":"RouterLinkDirectiveStub","url":"classes/testing_router_link_directive_stub.routerlinkdirectivestub.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"testing/router-link-directive-stub"},{"id":818,"kind":512,"name":"constructor","url":"classes/testing_router_link_directive_stub.routerlinkdirectivestub.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"testing/router-link-directive-stub.RouterLinkDirectiveStub"},{"id":819,"kind":1024,"name":"linkParams","url":"classes/testing_router_link_directive_stub.routerlinkdirectivestub.html#linkparams","classes":"tsd-kind-property tsd-parent-kind-class","parent":"testing/router-link-directive-stub.RouterLinkDirectiveStub"},{"id":820,"kind":1024,"name":"navigatedTo","url":"classes/testing_router_link_directive_stub.routerlinkdirectivestub.html#navigatedto","classes":"tsd-kind-property tsd-parent-kind-class","parent":"testing/router-link-directive-stub.RouterLinkDirectiveStub"},{"id":821,"kind":2048,"name":"onClick","url":"classes/testing_router_link_directive_stub.routerlinkdirectivestub.html#onclick","classes":"tsd-kind-method tsd-parent-kind-class","parent":"testing/router-link-directive-stub.RouterLinkDirectiveStub"},{"id":822,"kind":1,"name":"testing/shared-module-stub","url":"modules/testing_shared_module_stub.html","classes":"tsd-kind-module"},{"id":823,"kind":128,"name":"SidebarStubComponent","url":"classes/testing_shared_module_stub.sidebarstubcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"testing/shared-module-stub"},{"id":824,"kind":512,"name":"constructor","url":"classes/testing_shared_module_stub.sidebarstubcomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"testing/shared-module-stub.SidebarStubComponent"},{"id":825,"kind":128,"name":"TopbarStubComponent","url":"classes/testing_shared_module_stub.topbarstubcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"testing/shared-module-stub"},{"id":826,"kind":512,"name":"constructor","url":"classes/testing_shared_module_stub.topbarstubcomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"testing/shared-module-stub.TopbarStubComponent"},{"id":827,"kind":128,"name":"FooterStubComponent","url":"classes/testing_shared_module_stub.footerstubcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"testing/shared-module-stub"},{"id":828,"kind":512,"name":"constructor","url":"classes/testing_shared_module_stub.footerstubcomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"testing/shared-module-stub.FooterStubComponent"},{"id":829,"kind":1,"name":"testing/token-service-stub","url":"modules/testing_token_service_stub.html","classes":"tsd-kind-module"},{"id":830,"kind":128,"name":"TokenServiceStub","url":"classes/testing_token_service_stub.tokenservicestub.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"testing/token-service-stub"},{"id":831,"kind":512,"name":"constructor","url":"classes/testing_token_service_stub.tokenservicestub.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"testing/token-service-stub.TokenServiceStub"},{"id":832,"kind":2048,"name":"getBySymbol","url":"classes/testing_token_service_stub.tokenservicestub.html#getbysymbol","classes":"tsd-kind-method tsd-parent-kind-class","parent":"testing/token-service-stub.TokenServiceStub"},{"id":833,"kind":1,"name":"testing/transaction-service-stub","url":"modules/testing_transaction_service_stub.html","classes":"tsd-kind-module"},{"id":834,"kind":128,"name":"TransactionServiceStub","url":"classes/testing_transaction_service_stub.transactionservicestub.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"testing/transaction-service-stub"},{"id":835,"kind":512,"name":"constructor","url":"classes/testing_transaction_service_stub.transactionservicestub.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"testing/transaction-service-stub.TransactionServiceStub"},{"id":836,"kind":2048,"name":"setTransaction","url":"classes/testing_transaction_service_stub.transactionservicestub.html#settransaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"testing/transaction-service-stub.TransactionServiceStub"},{"id":837,"kind":2048,"name":"setConversion","url":"classes/testing_transaction_service_stub.transactionservicestub.html#setconversion","classes":"tsd-kind-method tsd-parent-kind-class","parent":"testing/transaction-service-stub.TransactionServiceStub"},{"id":838,"kind":2048,"name":"getAllTransactions","url":"classes/testing_transaction_service_stub.transactionservicestub.html#getalltransactions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"testing/transaction-service-stub.TransactionServiceStub"},{"id":839,"kind":1,"name":"testing/user-service-stub","url":"modules/testing_user_service_stub.html","classes":"tsd-kind-module"},{"id":840,"kind":128,"name":"UserServiceStub","url":"classes/testing_user_service_stub.userservicestub.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"testing/user-service-stub"},{"id":841,"kind":512,"name":"constructor","url":"classes/testing_user_service_stub.userservicestub.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"testing/user-service-stub.UserServiceStub"},{"id":842,"kind":1024,"name":"users","url":"classes/testing_user_service_stub.userservicestub.html#users","classes":"tsd-kind-property tsd-parent-kind-class","parent":"testing/user-service-stub.UserServiceStub"},{"id":843,"kind":1024,"name":"actions","url":"classes/testing_user_service_stub.userservicestub.html#actions","classes":"tsd-kind-property tsd-parent-kind-class","parent":"testing/user-service-stub.UserServiceStub"},{"id":844,"kind":2048,"name":"getUserById","url":"classes/testing_user_service_stub.userservicestub.html#getuserbyid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"testing/user-service-stub.UserServiceStub"},{"id":845,"kind":2048,"name":"getUser","url":"classes/testing_user_service_stub.userservicestub.html#getuser","classes":"tsd-kind-method tsd-parent-kind-class","parent":"testing/user-service-stub.UserServiceStub"},{"id":846,"kind":2048,"name":"getActionById","url":"classes/testing_user_service_stub.userservicestub.html#getactionbyid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"testing/user-service-stub.UserServiceStub"},{"id":847,"kind":2048,"name":"approveAction","url":"classes/testing_user_service_stub.userservicestub.html#approveaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"testing/user-service-stub.UserServiceStub"},{"id":848,"kind":16777216,"name":"AccountIndex","url":"modules/app__eth.html#accountindex","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_eth"},{"id":849,"kind":16777216,"name":"TokenRegistry","url":"modules/app__eth.html#tokenregistry","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_eth"},{"id":850,"kind":16777216,"name":"AuthGuard","url":"modules/app__guards.html#authguard","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_guards"},{"id":851,"kind":16777216,"name":"RoleGuard","url":"modules/app__guards.html#roleguard","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_guards"},{"id":852,"kind":16777216,"name":"CustomValidator","url":"modules/app__helpers.html#customvalidator","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":853,"kind":16777216,"name":"CustomErrorStateMatcher","url":"modules/app__helpers.html#customerrorstatematcher","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":854,"kind":16777216,"name":"MockBackendInterceptor","url":"modules/app__helpers.html#mockbackendinterceptor","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":855,"kind":16777216,"name":"MockBackendProvider","url":"modules/app__helpers.html#mockbackendprovider","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":856,"kind":16777216,"name":"arraySum","url":"modules/app__helpers.html#arraysum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":857,"kind":16777216,"name":"HttpGetter","url":"modules/app__helpers.html#httpgetter","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":858,"kind":16777216,"name":"HttpError","url":"modules/app__helpers.html#httperror","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":859,"kind":16777216,"name":"GlobalErrorHandler","url":"modules/app__helpers.html#globalerrorhandler","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":860,"kind":16777216,"name":"exportCsv","url":"modules/app__helpers.html#exportcsv","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":861,"kind":16777216,"name":"readCsv","url":"modules/app__helpers.html#readcsv","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":862,"kind":16777216,"name":"copyToClipboard","url":"modules/app__helpers.html#copytoclipboard","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":863,"kind":16777216,"name":"personValidation","url":"modules/app__helpers.html#personvalidation","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":864,"kind":16777216,"name":"vcardValidation","url":"modules/app__helpers.html#vcardvalidation","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":865,"kind":16777216,"name":"ErrorInterceptor","url":"modules/app__interceptors.html#errorinterceptor","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_interceptors"},{"id":866,"kind":16777216,"name":"HttpConfigInterceptor","url":"modules/app__interceptors.html#httpconfiginterceptor","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_interceptors"},{"id":867,"kind":16777216,"name":"LoggingInterceptor","url":"modules/app__interceptors.html#logginginterceptor","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_interceptors"},{"id":868,"kind":16777216,"name":"BlocksBloom","url":"modules/app__models.html#blocksbloom","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":869,"kind":16777216,"name":"TxToken","url":"modules/app__models.html#txtoken","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":870,"kind":16777216,"name":"Tx","url":"modules/app__models.html#tx","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":871,"kind":16777216,"name":"Transaction","url":"modules/app__models.html#transaction","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":872,"kind":16777216,"name":"Conversion","url":"modules/app__models.html#conversion","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":873,"kind":16777216,"name":"Settings","url":"modules/app__models.html#settings","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":874,"kind":16777216,"name":"W3","url":"modules/app__models.html#w3","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":875,"kind":16777216,"name":"AccountDetails","url":"modules/app__models.html#accountdetails","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":876,"kind":16777216,"name":"Signature","url":"modules/app__models.html#signature","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":877,"kind":16777216,"name":"Meta","url":"modules/app__models.html#meta","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":878,"kind":16777216,"name":"MetaResponse","url":"modules/app__models.html#metaresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":879,"kind":16777216,"name":"defaultAccount","url":"modules/app__models.html#defaultaccount","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":880,"kind":16777216,"name":"Staff","url":"modules/app__models.html#staff","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":881,"kind":16777216,"name":"Token","url":"modules/app__models.html#token","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":882,"kind":16777216,"name":"Action","url":"modules/app__models.html#action","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":883,"kind":16777216,"name":"Category","url":"modules/app__models.html#category","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":884,"kind":16777216,"name":"AreaName","url":"modules/app__models.html#areaname","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":885,"kind":16777216,"name":"AreaType","url":"modules/app__models.html#areatype","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":886,"kind":16777216,"name":"MutablePgpKeyStore","url":"modules/app__pgp.html#mutablepgpkeystore","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":887,"kind":16777216,"name":"MutableKeyStore","url":"modules/app__pgp.html#mutablekeystore","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":888,"kind":16777216,"name":"Signable","url":"modules/app__pgp.html#signable","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":889,"kind":16777216,"name":"Signature","url":"modules/app__pgp.html#signature","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":890,"kind":16777216,"name":"Signer","url":"modules/app__pgp.html#signer","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":891,"kind":16777216,"name":"PGPSigner","url":"modules/app__pgp.html#pgpsigner","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":892,"kind":16777216,"name":"AuthService","url":"modules/app__services.html#authservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":893,"kind":16777216,"name":"TransactionService","url":"modules/app__services.html#transactionservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":894,"kind":16777216,"name":"UserService","url":"modules/app__services.html#userservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":895,"kind":16777216,"name":"TokenService","url":"modules/app__services.html#tokenservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":896,"kind":16777216,"name":"BlockSyncService","url":"modules/app__services.html#blocksyncservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":897,"kind":16777216,"name":"LocationService","url":"modules/app__services.html#locationservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":898,"kind":16777216,"name":"LoggingService","url":"modules/app__services.html#loggingservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":899,"kind":16777216,"name":"ErrorDialogService","url":"modules/app__services.html#errordialogservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":900,"kind":16777216,"name":"Tx","url":"modules/assets_js_ethtx_dist.html#tx","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"assets/js/ethtx/dist"},{"id":901,"kind":16777216,"name":"ActivatedRouteStub","url":"modules/testing.html#activatedroutestub","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":902,"kind":16777216,"name":"RouterLinkDirectiveStub","url":"modules/testing.html#routerlinkdirectivestub","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":903,"kind":16777216,"name":"SidebarStubComponent","url":"modules/testing.html#sidebarstubcomponent","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":904,"kind":16777216,"name":"TopbarStubComponent","url":"modules/testing.html#topbarstubcomponent","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":905,"kind":16777216,"name":"FooterStubComponent","url":"modules/testing.html#footerstubcomponent","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":906,"kind":16777216,"name":"UserServiceStub","url":"modules/testing.html#userservicestub","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":907,"kind":16777216,"name":"TokenServiceStub","url":"modules/testing.html#tokenservicestub","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":908,"kind":16777216,"name":"TransactionServiceStub","url":"modules/testing.html#transactionservicestub","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"}],"index":{"version":"2.3.9","fields":["name","parent"],"fieldVectors":[["name/0",[0,60.406]],["parent/0",[]],["name/1",[1,60.406]],["parent/1",[0,6.733]],["name/2",[2,24.97]],["parent/2",[3,5.336]],["name/3",[4,60.406]],["parent/3",[3,5.336]],["name/4",[5,60.406]],["parent/4",[3,5.336]],["name/5",[6,60.406]],["parent/5",[3,5.336]],["name/6",[7,65.638]],["parent/6",[3,5.336]],["name/7",[8,65.638]],["parent/7",[3,5.336]],["name/8",[9,65.638]],["parent/8",[3,5.336]],["name/9",[10,65.638]],["parent/9",[3,5.336]],["name/10",[11,56.959]],["parent/10",[]],["name/11",[12,33.506,13,35.242]],["parent/11",[]],["name/12",[14,56.959]],["parent/12",[12,3.93,13,4.134]],["name/13",[2,24.97]],["parent/13",[12,3.93,15,4.134]],["name/14",[4,60.406]],["parent/14",[12,3.93,15,4.134]],["name/15",[5,60.406]],["parent/15",[12,3.93,15,4.134]],["name/16",[6,60.406]],["parent/16",[12,3.93,15,4.134]],["name/17",[16,65.638]],["parent/17",[12,3.93,15,4.134]],["name/18",[17,65.638]],["parent/18",[12,3.93,15,4.134]],["name/19",[18,65.638]],["parent/19",[12,3.93,15,4.134]],["name/20",[19,60.406]],["parent/20",[]],["name/21",[20,60.406]],["parent/21",[19,6.733]],["name/22",[2,24.97]],["parent/22",[21,6.733]],["name/23",[22,60.406]],["parent/23",[21,6.733]],["name/24",[23,56.959]],["parent/24",[]],["name/25",[24,60.406]],["parent/25",[]],["name/26",[25,60.406]],["parent/26",[24,6.733]],["name/27",[2,24.97]],["parent/27",[26,6.733]],["name/28",[22,60.406]],["parent/28",[26,6.733]],["name/29",[27,43.31,28,43.31]],["parent/29",[]],["name/30",[29,60.406]],["parent/30",[27,5.08,28,5.08]],["name/31",[30,43.31,31,43.31]],["parent/31",[]],["name/32",[32,60.406]],["parent/32",[30,5.08,31,5.08]],["name/33",[33,24.9,34,19.099,35,24.9,36,22.504]],["parent/33",[]],["name/34",[37,60.406]],["parent/34",[33,3.068,34,2.353,35,3.068,36,2.773]],["name/35",[2,24.97]],["parent/35",[33,3.068,34,2.353,35,3.068,38,3.407]],["name/36",[39,65.638]],["parent/36",[33,3.068,34,2.353,35,3.068,38,3.407]],["name/37",[40,60.406]],["parent/37",[]],["name/38",[41,60.406]],["parent/38",[40,6.733]],["name/39",[42,65.638]],["parent/39",[43,6.349]],["name/40",[44,65.638]],["parent/40",[43,6.349]],["name/41",[2,24.97]],["parent/41",[43,6.349]],["name/42",[45,43.31,46,38.993]],["parent/42",[]],["name/43",[47,60.406]],["parent/43",[45,5.08,46,4.574]],["name/44",[34,23.312,48,25.021,49,31.831]],["parent/44",[]],["name/45",[50,60.406]],["parent/45",[34,2.817,48,3.023,49,3.846]],["name/46",[51,42.4]],["parent/46",[34,2.817,48,3.023,52,3.846]],["name/47",[2,24.97]],["parent/47",[34,2.817,48,3.023,52,3.846]],["name/48",[53,65.638]],["parent/48",[34,2.817,48,3.023,52,3.846]],["name/49",[54,60.406]],["parent/49",[34,2.817,48,3.023,49,3.846]],["name/50",[2,24.97]],["parent/50",[34,2.817,48,3.023,55,3.534]],["name/51",[56,65.638]],["parent/51",[34,2.817,48,3.023,55,3.534]],["name/52",[57,65.638]],["parent/52",[34,2.817,48,3.023,55,3.534]],["name/53",[58,65.638]],["parent/53",[34,2.817,48,3.023,55,3.534]],["name/54",[59,65.638]],["parent/54",[34,2.817,48,3.023,55,3.534]],["name/55",[60,43.31,61,43.31]],["parent/55",[]],["name/56",[62,60.406]],["parent/56",[60,5.08,61,5.08]],["name/57",[63,42.4]],["parent/57",[]],["name/58",[64,33.506,65,40.839]],["parent/58",[]],["name/59",[66,60.406]],["parent/59",[64,3.93,65,4.79]],["name/60",[2,24.97]],["parent/60",[64,3.93,67,5.08]],["name/61",[68,54.385]],["parent/61",[64,3.93,67,5.08]],["name/62",[69,60.406]],["parent/62",[64,3.93,65,4.79]],["name/63",[51,42.4]],["parent/63",[64,3.93,70,5.52]],["name/64",[71,65.638]],["parent/64",[64,3.93,72,4.79]],["name/65",[73,65.638]],["parent/65",[64,3.93,72,4.79]],["name/66",[74,65.638]],["parent/66",[64,3.93,72,4.79]],["name/67",[46,38.993,75,43.31]],["parent/67",[]],["name/68",[76,60.406]],["parent/68",[46,4.574,75,5.08]],["name/69",[77,40.839,78,40.839]],["parent/69",[]],["name/70",[79,60.406]],["parent/70",[77,4.79,78,4.79]],["name/71",[80,60.406]],["parent/71",[77,4.79,78,4.79]],["name/72",[81,60.406]],["parent/72",[]],["name/73",[82,60.406]],["parent/73",[81,6.733]],["name/74",[2,24.97]],["parent/74",[83,6.733]],["name/75",[68,54.385]],["parent/75",[83,6.733]],["name/76",[84,38.993,85,43.31]],["parent/76",[]],["name/77",[86,60.406]],["parent/77",[84,4.574,85,5.08]],["name/78",[2,24.97]],["parent/78",[84,4.574,87,5.08]],["name/79",[68,54.385]],["parent/79",[84,4.574,87,5.08]],["name/80",[88,54.385]],["parent/80",[]],["name/81",[89,60.406]],["parent/81",[]],["name/82",[90,60.406]],["parent/82",[89,6.733]],["name/83",[2,24.97]],["parent/83",[91,6.733]],["name/84",[68,54.385]],["parent/84",[91,6.733]],["name/85",[92,50.618]],["parent/85",[]],["name/86",[93,60.406]],["parent/86",[92,5.642]],["name/87",[94,65.638]],["parent/87",[95,4.808]],["name/88",[96,65.638]],["parent/88",[95,4.808]],["name/89",[97,65.638]],["parent/89",[95,4.808]],["name/90",[98,60.406]],["parent/90",[95,4.808]],["name/91",[99,60.406]],["parent/91",[95,4.808]],["name/92",[100,65.638]],["parent/92",[95,4.808]],["name/93",[51,42.4]],["parent/93",[95,4.808]],["name/94",[101,65.638]],["parent/94",[102,4.895]],["name/95",[51,42.4]],["parent/95",[102,4.895]],["name/96",[103,65.638]],["parent/96",[104,6.733]],["name/97",[105,65.638]],["parent/97",[104,6.733]],["name/98",[106,65.638]],["parent/98",[102,4.895]],["name/99",[107,65.638]],["parent/99",[102,4.895]],["name/100",[108,65.638]],["parent/100",[95,4.808]],["name/101",[51,42.4]],["parent/101",[95,4.808]],["name/102",[109,60.406]],["parent/102",[102,4.895]],["name/103",[110,65.638]],["parent/103",[102,4.895]],["name/104",[111,65.638]],["parent/104",[102,4.895]],["name/105",[112,60.406]],["parent/105",[95,4.808]],["name/106",[113,56.959]],["parent/106",[95,4.808]],["name/107",[114,65.638]],["parent/107",[95,4.808]],["name/108",[51,42.4]],["parent/108",[95,4.808]],["name/109",[115,60.406]],["parent/109",[102,4.895]],["name/110",[116,65.638]],["parent/110",[102,4.895]],["name/111",[117,65.638]],["parent/111",[102,4.895]],["name/112",[118,65.638]],["parent/112",[102,4.895]],["name/113",[119,65.638]],["parent/113",[102,4.895]],["name/114",[120,50.618]],["parent/114",[92,5.642]],["name/115",[121,56.959]],["parent/115",[122,6.062]],["name/116",[123,52.329]],["parent/116",[122,6.062]],["name/117",[124,56.959]],["parent/117",[122,6.062]],["name/118",[125,54.385]],["parent/118",[122,6.062]],["name/119",[126,60.406]],["parent/119",[92,5.642]],["name/120",[123,52.329]],["parent/120",[127,6.349]],["name/121",[128,54.385]],["parent/121",[127,6.349]],["name/122",[120,50.618]],["parent/122",[127,6.349]],["name/123",[129,60.406]],["parent/123",[92,5.642]],["name/124",[128,54.385]],["parent/124",[130,6.733]],["name/125",[131,65.638]],["parent/125",[130,6.733]],["name/126",[132,60.406]],["parent/126",[92,5.642]],["name/127",[133,39.365]],["parent/127",[]],["name/128",[134,52.329]],["parent/128",[]],["name/129",[135,54.385]],["parent/129",[134,5.833]],["name/130",[128,54.385]],["parent/130",[136,5.833]],["name/131",[137,60.406]],["parent/131",[136,5.833]],["name/132",[138,65.638]],["parent/132",[136,5.833]],["name/133",[135,54.385]],["parent/133",[136,5.833]],["name/134",[139,65.638]],["parent/134",[136,5.833]],["name/135",[113,56.959]],["parent/135",[134,5.833]],["name/136",[140,50.618]],["parent/136",[141,6.733]],["name/137",[112,60.406]],["parent/137",[141,6.733]],["name/138",[142,60.406]],["parent/138",[134,5.833]],["name/139",[140,50.618]],["parent/139",[143,6.733]],["name/140",[144,65.638]],["parent/140",[143,6.733]],["name/141",[145,60.406]],["parent/141",[134,5.833]],["name/142",[140,50.618]],["parent/142",[146,6.733]],["name/143",[109,60.406]],["parent/143",[146,6.733]],["name/144",[147,56.959]],["parent/144",[]],["name/145",[148,60.406]],["parent/145",[147,6.349]],["name/146",[2,24.97]],["parent/146",[149,5.833]],["name/147",[150,56.959]],["parent/147",[149,5.833]],["name/148",[151,65.638]],["parent/148",[149,5.833]],["name/149",[13,49.152]],["parent/149",[149,5.833]],["name/150",[152,65.638]],["parent/150",[149,5.833]],["name/151",[150,56.959]],["parent/151",[147,6.349]],["name/152",[2,24.97]],["parent/152",[153,6.349]],["name/153",[125,54.385]],["parent/153",[153,6.349]],["name/154",[154,65.638]],["parent/154",[153,6.349]],["name/155",[155,60.406]],["parent/155",[]],["name/156",[156,60.406]],["parent/156",[155,6.733]],["name/157",[157,65.638]],["parent/157",[158,5.833]],["name/158",[115,60.406]],["parent/158",[158,5.833]],["name/159",[140,50.618]],["parent/159",[158,5.833]],["name/160",[159,65.638]],["parent/160",[158,5.833]],["name/161",[160,65.638]],["parent/161",[158,5.833]],["name/162",[161,60.406]],["parent/162",[]],["name/163",[162,54.385]],["parent/163",[161,6.733]],["name/164",[140,50.618]],["parent/164",[163,5.209]],["name/165",[164,60.406]],["parent/165",[163,5.209]],["name/166",[165,60.406]],["parent/166",[163,5.209]],["name/167",[166,65.638]],["parent/167",[163,5.209]],["name/168",[167,65.638]],["parent/168",[163,5.209]],["name/169",[168,65.638]],["parent/169",[163,5.209]],["name/170",[51,42.4]],["parent/170",[163,5.209]],["name/171",[169,65.638]],["parent/171",[170,6.733]],["name/172",[51,42.4]],["parent/172",[170,6.733]],["name/173",[171,65.638]],["parent/173",[172,6.733]],["name/174",[99,60.406]],["parent/174",[172,6.733]],["name/175",[173,65.638]],["parent/175",[163,5.209]],["name/176",[174,65.638]],["parent/176",[163,5.209]],["name/177",[175,50.618]],["parent/177",[]],["name/178",[176,60.406]],["parent/178",[175,5.642]],["name/179",[2,24.97]],["parent/179",[177,5.642]],["name/180",[178,65.638]],["parent/180",[177,5.642]],["name/181",[179,65.638]],["parent/181",[177,5.642]],["name/182",[180,65.638]],["parent/182",[177,5.642]],["name/183",[181,65.638]],["parent/183",[177,5.642]],["name/184",[182,65.638]],["parent/184",[177,5.642]],["name/185",[183,60.406]],["parent/185",[175,5.642]],["name/186",[2,24.97]],["parent/186",[184,6.062]],["name/187",[165,60.406]],["parent/187",[184,6.062]],["name/188",[140,50.618]],["parent/188",[184,6.062]],["name/189",[164,60.406]],["parent/189",[184,6.062]],["name/190",[185,50.618]],["parent/190",[175,5.642]],["name/191",[2,24.97]],["parent/191",[186,5.642]],["name/192",[187,65.638]],["parent/192",[186,5.642]],["name/193",[188,65.638]],["parent/193",[186,5.642]],["name/194",[189,65.638]],["parent/194",[186,5.642]],["name/195",[190,65.638]],["parent/195",[186,5.642]],["name/196",[191,65.638]],["parent/196",[186,5.642]],["name/197",[192,52.329]],["parent/197",[175,5.642]],["name/198",[2,24.97]],["parent/198",[193,5.209]],["name/199",[194,65.638]],["parent/199",[193,5.209]],["name/200",[195,65.638]],["parent/200",[193,5.209]],["name/201",[196,60.406]],["parent/201",[193,5.209]],["name/202",[197,65.638]],["parent/202",[193,5.209]],["name/203",[162,54.385]],["parent/203",[193,5.209]],["name/204",[185,50.618]],["parent/204",[193,5.209]],["name/205",[198,60.406]],["parent/205",[193,5.209]],["name/206",[98,60.406]],["parent/206",[193,5.209]],["name/207",[199,60.406]],["parent/207",[175,5.642]],["name/208",[2,24.97]],["parent/208",[200,5.336]],["name/209",[201,65.638]],["parent/209",[200,5.336]],["name/210",[202,65.638]],["parent/210",[200,5.336]],["name/211",[203,65.638]],["parent/211",[200,5.336]],["name/212",[204,60.406]],["parent/212",[200,5.336]],["name/213",[205,65.638]],["parent/213",[200,5.336]],["name/214",[137,60.406]],["parent/214",[200,5.336]],["name/215",[185,50.618]],["parent/215",[200,5.336]],["name/216",[206,49.152]],["parent/216",[]],["name/217",[207,13.471,208,16.115,209,31.831]],["parent/217",[]],["name/218",[210,60.406]],["parent/218",[207,1.628,208,1.947,209,3.846]],["name/219",[2,24.97]],["parent/219",[207,1.628,208,1.947,211,2.446]],["name/220",[212,60.406]],["parent/220",[207,1.628,208,1.947,211,2.446]],["name/221",[213,60.406]],["parent/221",[207,1.628,208,1.947,211,2.446]],["name/222",[214,60.406]],["parent/222",[207,1.628,208,1.947,211,2.446]],["name/223",[215,60.406]],["parent/223",[207,1.628,208,1.947,211,2.446]],["name/224",[216,56.959]],["parent/224",[207,1.628,208,1.947,211,2.446]],["name/225",[217,60.406]],["parent/225",[207,1.628,208,1.947,211,2.446]],["name/226",[218,60.406]],["parent/226",[207,1.628,208,1.947,211,2.446]],["name/227",[219,60.406]],["parent/227",[207,1.628,208,1.947,211,2.446]],["name/228",[220,60.406]],["parent/228",[207,1.628,208,1.947,211,2.446]],["name/229",[221,56.959]],["parent/229",[207,1.628,208,1.947,211,2.446]],["name/230",[222,60.406]],["parent/230",[207,1.628,208,1.947,211,2.446]],["name/231",[223,60.406]],["parent/231",[207,1.628,208,1.947,211,2.446]],["name/232",[224,60.406]],["parent/232",[207,1.628,208,1.947,211,2.446]],["name/233",[225,60.406]],["parent/233",[207,1.628,208,1.947,211,2.446]],["name/234",[226,60.406]],["parent/234",[207,1.628,208,1.947,211,2.446]],["name/235",[227,60.406]],["parent/235",[207,1.628,208,1.947,211,2.446]],["name/236",[228,60.406]],["parent/236",[207,1.628,208,1.947,211,2.446]],["name/237",[229,60.406]],["parent/237",[207,1.628,208,1.947,211,2.446]],["name/238",[230,60.406]],["parent/238",[207,1.628,208,1.947,211,2.446]],["name/239",[231,60.406]],["parent/239",[207,1.628,208,1.947,211,2.446]],["name/240",[232,60.406]],["parent/240",[207,1.628,208,1.947,211,2.446]],["name/241",[233,60.406]],["parent/241",[207,1.628,208,1.947,211,2.446]],["name/242",[234,60.406]],["parent/242",[207,1.628,208,1.947,211,2.446]],["name/243",[235,60.406]],["parent/243",[207,1.628,208,1.947,211,2.446]],["name/244",[236,54.385]],["parent/244",[207,1.628,208,1.947,211,2.446]],["name/245",[237,56.959]],["parent/245",[207,1.628,208,1.947,209,3.846]],["name/246",[212,60.406]],["parent/246",[207,1.628,208,1.947,238,2.473]],["name/247",[213,60.406]],["parent/247",[207,1.628,208,1.947,238,2.473]],["name/248",[214,60.406]],["parent/248",[207,1.628,208,1.947,238,2.473]],["name/249",[215,60.406]],["parent/249",[207,1.628,208,1.947,238,2.473]],["name/250",[216,56.959]],["parent/250",[207,1.628,208,1.947,238,2.473]],["name/251",[217,60.406]],["parent/251",[207,1.628,208,1.947,238,2.473]],["name/252",[218,60.406]],["parent/252",[207,1.628,208,1.947,238,2.473]],["name/253",[219,60.406]],["parent/253",[207,1.628,208,1.947,238,2.473]],["name/254",[220,60.406]],["parent/254",[207,1.628,208,1.947,238,2.473]],["name/255",[221,56.959]],["parent/255",[207,1.628,208,1.947,238,2.473]],["name/256",[222,60.406]],["parent/256",[207,1.628,208,1.947,238,2.473]],["name/257",[223,60.406]],["parent/257",[207,1.628,208,1.947,238,2.473]],["name/258",[224,60.406]],["parent/258",[207,1.628,208,1.947,238,2.473]],["name/259",[225,60.406]],["parent/259",[207,1.628,208,1.947,238,2.473]],["name/260",[226,60.406]],["parent/260",[207,1.628,208,1.947,238,2.473]],["name/261",[227,60.406]],["parent/261",[207,1.628,208,1.947,238,2.473]],["name/262",[228,60.406]],["parent/262",[207,1.628,208,1.947,238,2.473]],["name/263",[229,60.406]],["parent/263",[207,1.628,208,1.947,238,2.473]],["name/264",[230,60.406]],["parent/264",[207,1.628,208,1.947,238,2.473]],["name/265",[231,60.406]],["parent/265",[207,1.628,208,1.947,238,2.473]],["name/266",[232,60.406]],["parent/266",[207,1.628,208,1.947,238,2.473]],["name/267",[233,60.406]],["parent/267",[207,1.628,208,1.947,238,2.473]],["name/268",[234,60.406]],["parent/268",[207,1.628,208,1.947,238,2.473]],["name/269",[235,60.406]],["parent/269",[207,1.628,208,1.947,238,2.473]],["name/270",[236,54.385]],["parent/270",[207,1.628,208,1.947,238,2.473]],["name/271",[207,17.283,239,34.322]],["parent/271",[]],["name/272",[240,60.406]],["parent/272",[207,2.027,239,4.026]],["name/273",[124,56.959]],["parent/273",[207,2.027,241,5.52]],["name/274",[120,50.618]],["parent/274",[207,2.027,239,4.026]],["name/275",[51,42.4]],["parent/275",[207,2.027,242,5.52]],["name/276",[125,54.385]],["parent/276",[207,2.027,243,4.574]],["name/277",[121,56.959]],["parent/277",[207,2.027,243,4.574]],["name/278",[123,52.329]],["parent/278",[207,2.027,243,4.574]],["name/279",[124,56.959]],["parent/279",[207,2.027,243,4.574]],["name/280",[239,47.87]],["parent/280",[207,2.027,239,4.026]],["name/281",[244,60.406]],["parent/281",[207,2.027,245,4.257]],["name/282",[246,60.406]],["parent/282",[207,2.027,245,4.257]],["name/283",[247,60.406]],["parent/283",[207,2.027,245,4.257]],["name/284",[248,60.406]],["parent/284",[207,2.027,245,4.257]],["name/285",[249,60.406]],["parent/285",[207,2.027,245,4.257]],["name/286",[236,54.385]],["parent/286",[207,2.027,245,4.257]],["name/287",[250,60.406]],["parent/287",[207,2.027,239,4.026]],["name/288",[2,24.97]],["parent/288",[207,2.027,251,3.508]],["name/289",[125,54.385]],["parent/289",[207,2.027,251,3.508]],["name/290",[121,56.959]],["parent/290",[207,2.027,251,3.508]],["name/291",[252,65.638]],["parent/291",[207,2.027,251,3.508]],["name/292",[120,50.618]],["parent/292",[207,2.027,251,3.508]],["name/293",[253,60.406]],["parent/293",[207,2.027,251,3.508]],["name/294",[244,60.406]],["parent/294",[207,2.027,251,3.508]],["name/295",[51,42.4]],["parent/295",[207,2.027,251,3.508]],["name/296",[246,60.406]],["parent/296",[207,2.027,251,3.508]],["name/297",[51,42.4]],["parent/297",[207,2.027,251,3.508]],["name/298",[254,56.959]],["parent/298",[207,2.027,251,3.508]],["name/299",[247,60.406]],["parent/299",[207,2.027,251,3.508]],["name/300",[248,60.406]],["parent/300",[207,2.027,251,3.508]],["name/301",[249,60.406]],["parent/301",[207,2.027,251,3.508]],["name/302",[236,54.385]],["parent/302",[207,2.027,251,3.508]],["name/303",[255,60.406]],["parent/303",[]],["name/304",[256,60.406]],["parent/304",[255,6.733]],["name/305",[2,24.97]],["parent/305",[257,4.511]],["name/306",[258,65.638]],["parent/306",[257,4.511]],["name/307",[259,65.638]],["parent/307",[257,4.511]],["name/308",[237,56.959]],["parent/308",[257,4.511]],["name/309",[260,65.638]],["parent/309",[257,4.511]],["name/310",[261,65.638]],["parent/310",[257,4.511]],["name/311",[262,65.638]],["parent/311",[257,4.511]],["name/312",[263,65.638]],["parent/312",[257,4.511]],["name/313",[264,65.638]],["parent/313",[257,4.511]],["name/314",[265,60.406]],["parent/314",[257,4.511]],["name/315",[266,65.638]],["parent/315",[257,4.511]],["name/316",[267,65.638]],["parent/316",[257,4.511]],["name/317",[268,65.638]],["parent/317",[257,4.511]],["name/318",[269,60.406]],["parent/318",[257,4.511]],["name/319",[270,65.638]],["parent/319",[257,4.511]],["name/320",[216,56.959]],["parent/320",[257,4.511]],["name/321",[221,56.959]],["parent/321",[257,4.511]],["name/322",[271,32.102,272,43.31]],["parent/322",[]],["name/323",[273,60.406]],["parent/323",[271,3.766,272,5.08]],["name/324",[2,24.97]],["parent/324",[271,3.766,274,3.93]],["name/325",[275,60.406]],["parent/325",[271,3.766,274,3.93]],["name/326",[276,60.406]],["parent/326",[271,3.766,274,3.93]],["name/327",[277,65.638]],["parent/327",[271,3.766,274,3.93]],["name/328",[278,65.638]],["parent/328",[271,3.766,274,3.93]],["name/329",[279,65.638]],["parent/329",[271,3.766,274,3.93]],["name/330",[280,65.638]],["parent/330",[271,3.766,274,3.93]],["name/331",[281,65.638]],["parent/331",[271,3.766,274,3.93]],["name/332",[282,65.638]],["parent/332",[271,3.766,274,3.93]],["name/333",[283,36.293,284,43.31]],["parent/333",[]],["name/334",[285,60.406]],["parent/334",[283,4.257,284,5.08]],["name/335",[2,24.97]],["parent/335",[283,4.257,286,4.574]],["name/336",[287,65.638]],["parent/336",[283,4.257,286,4.574]],["name/337",[288,65.638]],["parent/337",[283,4.257,286,4.574]],["name/338",[289,65.638]],["parent/338",[283,4.257,286,4.574]],["name/339",[290,46.731]],["parent/339",[]],["name/340",[291,60.406]],["parent/340",[]],["name/341",[292,60.406]],["parent/341",[291,6.733]],["name/342",[2,24.97]],["parent/342",[293,5.833]],["name/343",[294,65.638]],["parent/343",[293,5.833]],["name/344",[295,65.638]],["parent/344",[293,5.833]],["name/345",[296,65.638]],["parent/345",[293,5.833]],["name/346",[297,65.638]],["parent/346",[293,5.833]],["name/347",[298,60.406]],["parent/347",[]],["name/348",[254,56.959]],["parent/348",[298,6.733]],["name/349",[2,24.97]],["parent/349",[299,5.094]],["name/350",[300,65.638]],["parent/350",[299,5.094]],["name/351",[301,65.638]],["parent/351",[299,5.094]],["name/352",[302,65.638]],["parent/352",[299,5.094]],["name/353",[303,65.638]],["parent/353",[299,5.094]],["name/354",[304,65.638]],["parent/354",[299,5.094]],["name/355",[305,65.638]],["parent/355",[299,5.094]],["name/356",[306,65.638]],["parent/356",[299,5.094]],["name/357",[307,65.638]],["parent/357",[299,5.094]],["name/358",[308,65.638]],["parent/358",[299,5.094]],["name/359",[309,60.406]],["parent/359",[]],["name/360",[310,65.638]],["parent/360",[309,6.733]],["name/361",[2,24.97]],["parent/361",[311,5.642]],["name/362",[312,60.406]],["parent/362",[311,5.642]],["name/363",[313,65.638]],["parent/363",[311,5.642]],["name/364",[13,49.152]],["parent/364",[311,5.642]],["name/365",[314,65.638]],["parent/365",[311,5.642]],["name/366",[315,65.638]],["parent/366",[311,5.642]],["name/367",[316,60.406]],["parent/367",[]],["name/368",[317,60.406]],["parent/368",[316,6.733]],["name/369",[2,24.97]],["parent/369",[318,5.479]],["name/370",[13,49.152]],["parent/370",[318,5.479]],["name/371",[14,56.959]],["parent/371",[318,5.479]],["name/372",[319,65.638]],["parent/372",[318,5.479]],["name/373",[320,65.638]],["parent/373",[318,5.479]],["name/374",[321,65.638]],["parent/374",[318,5.479]],["name/375",[322,65.638]],["parent/375",[318,5.479]],["name/376",[323,60.406]],["parent/376",[]],["name/377",[324,60.406]],["parent/377",[323,6.733]],["name/378",[2,24.97]],["parent/378",[325,4.65]],["name/379",[326,56.959]],["parent/379",[325,4.65]],["name/380",[327,65.638]],["parent/380",[325,4.65]],["name/381",[328,65.638]],["parent/381",[325,4.65]],["name/382",[329,65.638]],["parent/382",[325,4.65]],["name/383",[312,60.406]],["parent/383",[325,4.65]],["name/384",[13,49.152]],["parent/384",[325,4.65]],["name/385",[330,60.406]],["parent/385",[325,4.65]],["name/386",[331,65.638]],["parent/386",[325,4.65]],["name/387",[332,60.406]],["parent/387",[325,4.65]],["name/388",[333,60.406]],["parent/388",[325,4.65]],["name/389",[334,65.638]],["parent/389",[325,4.65]],["name/390",[335,65.638]],["parent/390",[325,4.65]],["name/391",[336,65.638]],["parent/391",[325,4.65]],["name/392",[337,65.638]],["parent/392",[325,4.65]],["name/393",[338,60.406]],["parent/393",[]],["name/394",[339,60.406]],["parent/394",[338,6.733]],["name/395",[2,24.97]],["parent/395",[340,3.804]],["name/396",[341,65.638]],["parent/396",[340,3.804]],["name/397",[253,60.406]],["parent/397",[340,3.804]],["name/398",[239,47.87]],["parent/398",[340,3.804]],["name/399",[13,49.152]],["parent/399",[340,3.804]],["name/400",[342,56.959]],["parent/400",[340,3.804]],["name/401",[343,65.638]],["parent/401",[340,3.804]],["name/402",[344,65.638]],["parent/402",[340,3.804]],["name/403",[345,56.959]],["parent/403",[340,3.804]],["name/404",[346,65.638]],["parent/404",[340,3.804]],["name/405",[347,65.638]],["parent/405",[340,3.804]],["name/406",[348,60.406]],["parent/406",[340,3.804]],["name/407",[349,65.638]],["parent/407",[340,3.804]],["name/408",[350,65.638]],["parent/408",[340,3.804]],["name/409",[351,65.638]],["parent/409",[340,3.804]],["name/410",[352,65.638]],["parent/410",[340,3.804]],["name/411",[353,65.638]],["parent/411",[340,3.804]],["name/412",[354,60.406]],["parent/412",[340,3.804]],["name/413",[355,56.959]],["parent/413",[340,3.804]],["name/414",[356,65.638]],["parent/414",[340,3.804]],["name/415",[357,65.638]],["parent/415",[340,3.804]],["name/416",[358,65.638]],["parent/416",[340,3.804]],["name/417",[359,65.638]],["parent/417",[340,3.804]],["name/418",[360,65.638]],["parent/418",[340,3.804]],["name/419",[361,65.638]],["parent/419",[340,3.804]],["name/420",[362,65.638]],["parent/420",[340,3.804]],["name/421",[363,65.638]],["parent/421",[340,3.804]],["name/422",[364,65.638]],["parent/422",[340,3.804]],["name/423",[365,65.638]],["parent/423",[340,3.804]],["name/424",[366,65.638]],["parent/424",[340,3.804]],["name/425",[367,65.638]],["parent/425",[340,3.804]],["name/426",[368,65.638]],["parent/426",[340,3.804]],["name/427",[369,40.839,370,29.451]],["parent/427",[]],["name/428",[371,65.638]],["parent/428",[369,4.79,370,3.455]],["name/429",[2,24.97]],["parent/429",[369,4.79,372,5.52]],["name/430",[373,60.406]],["parent/430",[]],["name/431",[374,65.638]],["parent/431",[373,6.733]],["name/432",[2,24.97]],["parent/432",[375,5.336]],["name/433",[376,65.638]],["parent/433",[375,5.336]],["name/434",[275,60.406]],["parent/434",[375,5.336]],["name/435",[276,60.406]],["parent/435",[375,5.336]],["name/436",[377,65.638]],["parent/436",[375,5.336]],["name/437",[378,65.638]],["parent/437",[375,5.336]],["name/438",[379,65.638]],["parent/438",[375,5.336]],["name/439",[380,65.638]],["parent/439",[375,5.336]],["name/440",[381,60.406]],["parent/440",[]],["name/441",[382,65.638]],["parent/441",[381,6.733]],["name/442",[2,24.97]],["parent/442",[383,7.316]],["name/443",[384,65.638]],["parent/443",[]],["name/444",[385,36.293,386,38.993]],["parent/444",[]],["name/445",[387,65.638]],["parent/445",[385,4.257,386,4.574]],["name/446",[2,24.97]],["parent/446",[385,4.257,388,4.574]],["name/447",[128,54.385]],["parent/447",[385,4.257,388,4.574]],["name/448",[389,65.638]],["parent/448",[385,4.257,388,4.574]],["name/449",[390,65.638]],["parent/449",[385,4.257,388,4.574]],["name/450",[370,29.451,391,40.839]],["parent/450",[]],["name/451",[392,65.638]],["parent/451",[370,3.455,391,4.79]],["name/452",[2,24.97]],["parent/452",[391,4.79,393,5.52]],["name/453",[394,60.406]],["parent/453",[]],["name/454",[395,65.638]],["parent/454",[394,6.733]],["name/455",[2,24.97]],["parent/455",[396,4.991]],["name/456",[397,65.638]],["parent/456",[396,4.991]],["name/457",[398,54.385]],["parent/457",[396,4.991]],["name/458",[399,65.638]],["parent/458",[396,4.991]],["name/459",[36,49.152]],["parent/459",[396,4.991]],["name/460",[400,41.716]],["parent/460",[396,4.991]],["name/461",[401,65.638]],["parent/461",[396,4.991]],["name/462",[402,56.959]],["parent/462",[396,4.991]],["name/463",[265,60.406]],["parent/463",[396,4.991]],["name/464",[403,65.638]],["parent/464",[396,4.991]],["name/465",[404,65.638]],["parent/465",[396,4.991]],["name/466",[405,60.406]],["parent/466",[]],["name/467",[406,65.638]],["parent/467",[405,6.733]],["name/468",[2,24.97]],["parent/468",[407,7.316]],["name/469",[408,15.063,409,17.148,410,28.287]],["parent/469",[]],["name/470",[411,65.638]],["parent/470",[408,1.82,409,2.072,410,3.418]],["name/471",[2,24.97]],["parent/471",[408,1.82,409,2.072,412,2.103]],["name/472",[413,65.638]],["parent/472",[408,1.82,409,2.072,412,2.103]],["name/473",[414,65.638]],["parent/473",[408,1.82,409,2.072,412,2.103]],["name/474",[415,65.638]],["parent/474",[408,1.82,409,2.072,412,2.103]],["name/475",[416,65.638]],["parent/475",[408,1.82,409,2.072,412,2.103]],["name/476",[417,65.638]],["parent/476",[408,1.82,409,2.072,412,2.103]],["name/477",[418,65.638]],["parent/477",[408,1.82,409,2.072,412,2.103]],["name/478",[419,65.638]],["parent/478",[408,1.82,409,2.072,412,2.103]],["name/479",[420,65.638]],["parent/479",[408,1.82,409,2.072,412,2.103]],["name/480",[421,65.638]],["parent/480",[408,1.82,409,2.072,412,2.103]],["name/481",[422,65.638]],["parent/481",[408,1.82,409,2.072,412,2.103]],["name/482",[423,65.638]],["parent/482",[408,1.82,409,2.072,412,2.103]],["name/483",[424,65.638]],["parent/483",[408,1.82,409,2.072,412,2.103]],["name/484",[425,65.638]],["parent/484",[408,1.82,409,2.072,412,2.103]],["name/485",[426,65.638]],["parent/485",[408,1.82,409,2.072,412,2.103]],["name/486",[427,65.638]],["parent/486",[408,1.82,409,2.072,412,2.103]],["name/487",[428,65.638]],["parent/487",[408,1.82,409,2.072,412,2.103]],["name/488",[342,56.959]],["parent/488",[408,1.82,409,2.072,412,2.103]],["name/489",[429,60.406]],["parent/489",[408,1.82,409,2.072,412,2.103]],["name/490",[430,60.406]],["parent/490",[408,1.82,409,2.072,412,2.103]],["name/491",[431,60.406]],["parent/491",[408,1.82,409,2.072,412,2.103]],["name/492",[432,65.638]],["parent/492",[408,1.82,409,2.072,412,2.103]],["name/493",[192,52.329]],["parent/493",[408,1.82,409,2.072,412,2.103]],["name/494",[326,56.959]],["parent/494",[408,1.82,409,2.072,412,2.103]],["name/495",[433,60.406]],["parent/495",[408,1.82,409,2.072,412,2.103]],["name/496",[434,56.959]],["parent/496",[408,1.82,409,2.072,412,2.103]],["name/497",[435,60.406]],["parent/497",[408,1.82,409,2.072,412,2.103]],["name/498",[436,60.406]],["parent/498",[408,1.82,409,2.072,412,2.103]],["name/499",[36,49.152]],["parent/499",[408,1.82,409,2.072,412,2.103]],["name/500",[398,54.385]],["parent/500",[408,1.82,409,2.072,412,2.103]],["name/501",[437,65.638]],["parent/501",[408,1.82,409,2.072,412,2.103]],["name/502",[400,41.716]],["parent/502",[408,1.82,409,2.072,412,2.103]],["name/503",[438,65.638]],["parent/503",[408,1.82,409,2.072,412,2.103]],["name/504",[439,65.638]],["parent/504",[408,1.82,409,2.072,412,2.103]],["name/505",[440,60.406]],["parent/505",[408,1.82,409,2.072,412,2.103]],["name/506",[441,60.406]],["parent/506",[408,1.82,409,2.072,412,2.103]],["name/507",[442,65.638]],["parent/507",[408,1.82,409,2.072,412,2.103]],["name/508",[443,65.638]],["parent/508",[408,1.82,409,2.072,412,2.103]],["name/509",[444,60.406]],["parent/509",[408,1.82,409,2.072,412,2.103]],["name/510",[445,60.406]],["parent/510",[408,1.82,409,2.072,412,2.103]],["name/511",[348,60.406]],["parent/511",[408,1.82,409,2.072,412,2.103]],["name/512",[446,50.618]],["parent/512",[408,1.82,409,2.072,412,2.103]],["name/513",[447,60.406]],["parent/513",[408,1.82,409,2.072,412,2.103]],["name/514",[408,15.063,448,21.712,449,33.757]],["parent/514",[]],["name/515",[450,65.638]],["parent/515",[408,1.82,448,2.624,449,4.079]],["name/516",[2,24.97]],["parent/516",[408,1.82,448,2.624,451,2.695]],["name/517",[452,65.638]],["parent/517",[408,1.82,448,2.624,451,2.695]],["name/518",[453,65.638]],["parent/518",[408,1.82,448,2.624,451,2.695]],["name/519",[454,65.638]],["parent/519",[408,1.82,448,2.624,451,2.695]],["name/520",[455,65.638]],["parent/520",[408,1.82,448,2.624,451,2.695]],["name/521",[456,65.638]],["parent/521",[408,1.82,448,2.624,451,2.695]],["name/522",[457,65.638]],["parent/522",[408,1.82,448,2.624,451,2.695]],["name/523",[458,65.638]],["parent/523",[408,1.82,448,2.624,451,2.695]],["name/524",[459,65.638]],["parent/524",[408,1.82,448,2.624,451,2.695]],["name/525",[460,65.638]],["parent/525",[408,1.82,448,2.624,451,2.695]],["name/526",[36,49.152]],["parent/526",[408,1.82,448,2.624,451,2.695]],["name/527",[400,41.716]],["parent/527",[408,1.82,448,2.624,451,2.695]],["name/528",[461,65.638]],["parent/528",[408,1.82,448,2.624,451,2.695]],["name/529",[462,65.638]],["parent/529",[408,1.82,448,2.624,451,2.695]],["name/530",[463,65.638]],["parent/530",[408,1.82,448,2.624,451,2.695]],["name/531",[464,65.638]],["parent/531",[408,1.82,448,2.624,451,2.695]],["name/532",[465,65.638]],["parent/532",[408,1.82,448,2.624,451,2.695]],["name/533",[466,65.638]],["parent/533",[408,1.82,448,2.624,451,2.695]],["name/534",[370,29.451,467,40.839]],["parent/534",[]],["name/535",[468,65.638]],["parent/535",[370,3.455,467,4.79]],["name/536",[2,24.97]],["parent/536",[467,4.79,469,5.52]],["name/537",[470,60.406]],["parent/537",[]],["name/538",[471,65.638]],["parent/538",[470,6.733]],["name/539",[2,24.97]],["parent/539",[472,4.578]],["name/540",[473,54.385]],["parent/540",[472,4.578]],["name/541",[342,56.959]],["parent/541",[472,4.578]],["name/542",[474,56.959]],["parent/542",[472,4.578]],["name/543",[475,60.406]],["parent/543",[472,4.578]],["name/544",[476,60.406]],["parent/544",[472,4.578]],["name/545",[429,60.406]],["parent/545",[472,4.578]],["name/546",[434,56.959]],["parent/546",[472,4.578]],["name/547",[477,52.329]],["parent/547",[472,4.578]],["name/548",[478,52.329]],["parent/548",[472,4.578]],["name/549",[400,41.716]],["parent/549",[472,4.578]],["name/550",[479,52.329]],["parent/550",[472,4.578]],["name/551",[441,60.406]],["parent/551",[472,4.578]],["name/552",[444,60.406]],["parent/552",[472,4.578]],["name/553",[480,65.638]],["parent/553",[472,4.578]],["name/554",[446,50.618]],["parent/554",[472,4.578]],["name/555",[481,60.406]],["parent/555",[]],["name/556",[482,65.638]],["parent/556",[481,6.733]],["name/557",[2,24.97]],["parent/557",[483,7.316]],["name/558",[484,24.103,485,24.103,486,33.757]],["parent/558",[]],["name/559",[487,65.638]],["parent/559",[484,2.912,485,2.912,486,4.079]],["name/560",[2,24.97]],["parent/560",[484,2.912,485,2.912,488,3.023]],["name/561",[489,65.638]],["parent/561",[484,2.912,485,2.912,488,3.023]],["name/562",[36,49.152]],["parent/562",[484,2.912,485,2.912,488,3.023]],["name/563",[398,54.385]],["parent/563",[484,2.912,485,2.912,488,3.023]],["name/564",[430,60.406]],["parent/564",[484,2.912,485,2.912,488,3.023]],["name/565",[431,60.406]],["parent/565",[484,2.912,485,2.912,488,3.023]],["name/566",[434,56.959]],["parent/566",[484,2.912,485,2.912,488,3.023]],["name/567",[436,60.406]],["parent/567",[484,2.912,485,2.912,488,3.023]],["name/568",[400,41.716]],["parent/568",[484,2.912,485,2.912,488,3.023]],["name/569",[490,65.638]],["parent/569",[484,2.912,485,2.912,488,3.023]],["name/570",[402,56.959]],["parent/570",[484,2.912,485,2.912,488,3.023]],["name/571",[370,29.451,491,40.839]],["parent/571",[]],["name/572",[492,65.638]],["parent/572",[370,3.455,491,4.79]],["name/573",[2,24.97]],["parent/573",[491,4.79,493,5.52]],["name/574",[494,60.406]],["parent/574",[]],["name/575",[495,65.638]],["parent/575",[494,6.733]],["name/576",[2,24.97]],["parent/576",[496,4.726]],["name/577",[473,54.385]],["parent/577",[496,4.726]],["name/578",[474,56.959]],["parent/578",[496,4.726]],["name/579",[135,54.385]],["parent/579",[496,4.726]],["name/580",[345,56.959]],["parent/580",[496,4.726]],["name/581",[477,52.329]],["parent/581",[496,4.726]],["name/582",[478,52.329]],["parent/582",[496,4.726]],["name/583",[400,41.716]],["parent/583",[496,4.726]],["name/584",[479,52.329]],["parent/584",[496,4.726]],["name/585",[497,65.638]],["parent/585",[496,4.726]],["name/586",[355,56.959]],["parent/586",[496,4.726]],["name/587",[498,65.638]],["parent/587",[496,4.726]],["name/588",[499,65.638]],["parent/588",[496,4.726]],["name/589",[446,50.618]],["parent/589",[496,4.726]],["name/590",[500,60.406]],["parent/590",[]],["name/591",[501,65.638]],["parent/591",[500,6.733]],["name/592",[2,24.97]],["parent/592",[502,7.316]],["name/593",[370,29.451,503,40.839]],["parent/593",[]],["name/594",[504,65.638]],["parent/594",[370,3.455,503,4.79]],["name/595",[2,24.97]],["parent/595",[503,4.79,505,5.52]],["name/596",[506,60.406]],["parent/596",[]],["name/597",[507,65.638]],["parent/597",[506,6.733]],["name/598",[2,24.97]],["parent/598",[508,6.733]],["name/599",[509,65.638]],["parent/599",[508,6.733]],["name/600",[510,60.406]],["parent/600",[]],["name/601",[511,65.638]],["parent/601",[510,6.733]],["name/602",[2,24.97]],["parent/602",[512,7.316]],["name/603",[513,60.406]],["parent/603",[]],["name/604",[514,65.638]],["parent/604",[513,6.733]],["name/605",[2,24.97]],["parent/605",[515,5.479]],["name/606",[516,65.638]],["parent/606",[515,5.479]],["name/607",[398,54.385]],["parent/607",[515,5.479]],["name/608",[36,49.152]],["parent/608",[515,5.479]],["name/609",[400,41.716]],["parent/609",[515,5.479]],["name/610",[517,65.638]],["parent/610",[515,5.479]],["name/611",[402,56.959]],["parent/611",[515,5.479]],["name/612",[370,29.451,518,40.839]],["parent/612",[]],["name/613",[519,65.638]],["parent/613",[370,3.455,518,4.79]],["name/614",[2,24.97]],["parent/614",[518,4.79,520,5.52]],["name/615",[521,60.406]],["parent/615",[]],["name/616",[522,65.638]],["parent/616",[521,6.733]],["name/617",[2,24.97]],["parent/617",[523,4.991]],["name/618",[524,65.638]],["parent/618",[523,4.991]],["name/619",[473,54.385]],["parent/619",[523,4.991]],["name/620",[474,56.959]],["parent/620",[523,4.991]],["name/621",[525,65.638]],["parent/621",[523,4.991]],["name/622",[477,52.329]],["parent/622",[523,4.991]],["name/623",[478,52.329]],["parent/623",[523,4.991]],["name/624",[400,41.716]],["parent/624",[523,4.991]],["name/625",[479,52.329]],["parent/625",[523,4.991]],["name/626",[446,50.618]],["parent/626",[523,4.991]],["name/627",[269,60.406]],["parent/627",[523,4.991]],["name/628",[526,60.406]],["parent/628",[]],["name/629",[527,65.638]],["parent/629",[526,6.733]],["name/630",[2,24.97]],["parent/630",[528,7.316]],["name/631",[410,28.287,529,29.243,530,29.243]],["parent/631",[]],["name/632",[531,65.638]],["parent/632",[410,3.418,529,3.534,530,3.534]],["name/633",[2,24.97]],["parent/633",[529,3.534,530,3.534,532,3.846]],["name/634",[162,54.385]],["parent/634",[529,3.534,530,3.534,532,3.846]],["name/635",[400,41.716]],["parent/635",[529,3.534,530,3.534,532,3.846]],["name/636",[370,29.451,533,40.839]],["parent/636",[]],["name/637",[534,65.638]],["parent/637",[370,3.455,533,4.79]],["name/638",[2,24.97]],["parent/638",[533,4.79,535,5.52]],["name/639",[536,60.406]],["parent/639",[]],["name/640",[537,65.638]],["parent/640",[536,6.733]],["name/641",[2,24.97]],["parent/641",[538,5.094]],["name/642",[473,54.385]],["parent/642",[538,5.094]],["name/643",[539,65.638]],["parent/643",[538,5.094]],["name/644",[477,52.329]],["parent/644",[538,5.094]],["name/645",[478,52.329]],["parent/645",[538,5.094]],["name/646",[540,65.638]],["parent/646",[538,5.094]],["name/647",[400,41.716]],["parent/647",[538,5.094]],["name/648",[479,52.329]],["parent/648",[538,5.094]],["name/649",[541,65.638]],["parent/649",[538,5.094]],["name/650",[446,50.618]],["parent/650",[538,5.094]],["name/651",[542,60.406]],["parent/651",[]],["name/652",[543,65.638]],["parent/652",[542,6.733]],["name/653",[2,24.97]],["parent/653",[544,7.316]],["name/654",[410,28.287,545,24.103,546,24.103]],["parent/654",[]],["name/655",[547,65.638]],["parent/655",[410,3.418,545,2.912,546,2.912]],["name/656",[2,24.97]],["parent/656",[545,2.912,546,2.912,548,3.023]],["name/657",[192,52.329]],["parent/657",[545,2.912,546,2.912,548,3.023]],["name/658",[549,65.638]],["parent/658",[545,2.912,546,2.912,548,3.023]],["name/659",[550,65.638]],["parent/659",[545,2.912,546,2.912,548,3.023]],["name/660",[551,65.638]],["parent/660",[545,2.912,546,2.912,548,3.023]],["name/661",[400,41.716]],["parent/661",[545,2.912,546,2.912,548,3.023]],["name/662",[552,65.638]],["parent/662",[545,2.912,546,2.912,548,3.023]],["name/663",[553,65.638]],["parent/663",[545,2.912,546,2.912,548,3.023]],["name/664",[554,65.638]],["parent/664",[545,2.912,546,2.912,548,3.023]],["name/665",[555,65.638]],["parent/665",[545,2.912,546,2.912,548,3.023]],["name/666",[447,60.406]],["parent/666",[545,2.912,546,2.912,548,3.023]],["name/667",[370,29.451,556,40.839]],["parent/667",[]],["name/668",[557,65.638]],["parent/668",[370,3.455,556,4.79]],["name/669",[2,24.97]],["parent/669",[556,4.79,558,5.52]],["name/670",[559,60.406]],["parent/670",[]],["name/671",[560,65.638]],["parent/671",[559,6.733]],["name/672",[2,24.97]],["parent/672",[561,4.511]],["name/673",[562,65.638]],["parent/673",[561,4.511]],["name/674",[563,65.638]],["parent/674",[561,4.511]],["name/675",[475,60.406]],["parent/675",[561,4.511]],["name/676",[476,60.406]],["parent/676",[561,4.511]],["name/677",[326,56.959]],["parent/677",[561,4.511]],["name/678",[192,52.329]],["parent/678",[561,4.511]],["name/679",[433,60.406]],["parent/679",[561,4.511]],["name/680",[435,60.406]],["parent/680",[561,4.511]],["name/681",[477,52.329]],["parent/681",[561,4.511]],["name/682",[478,52.329]],["parent/682",[561,4.511]],["name/683",[400,41.716]],["parent/683",[561,4.511]],["name/684",[440,60.406]],["parent/684",[561,4.511]],["name/685",[479,52.329]],["parent/685",[561,4.511]],["name/686",[445,60.406]],["parent/686",[561,4.511]],["name/687",[564,65.638]],["parent/687",[561,4.511]],["name/688",[446,50.618]],["parent/688",[561,4.511]],["name/689",[565,60.406]],["parent/689",[]],["name/690",[566,65.638]],["parent/690",[565,6.733]],["name/691",[2,24.97]],["parent/691",[567,7.316]],["name/692",[568,34.322,569,43.31]],["parent/692",[]],["name/693",[570,65.638]],["parent/693",[568,4.026,569,5.08]],["name/694",[2,24.97]],["parent/694",[568,4.026,571,5.08]],["name/695",[572,65.638]],["parent/695",[568,4.026,571,5.08]],["name/696",[386,38.993,568,34.322]],["parent/696",[]],["name/697",[573,65.638]],["parent/697",[386,4.574,568,4.026]],["name/698",[2,24.97]],["parent/698",[568,4.026,574,5.08]],["name/699",[575,65.638]],["parent/699",[568,4.026,574,5.08]],["name/700",[576,60.406]],["parent/700",[]],["name/701",[577,65.638]],["parent/701",[576,6.733]],["name/702",[2,24.97]],["parent/702",[578,6.733]],["name/703",[579,60.406]],["parent/703",[578,6.733]],["name/704",[580,38.993,581,43.31]],["parent/704",[]],["name/705",[582,65.638]],["parent/705",[580,4.574,581,5.08]],["name/706",[2,24.97]],["parent/706",[580,4.574,583,5.08]],["name/707",[579,60.406]],["parent/707",[580,4.574,583,5.08]],["name/708",[584,30.392,585,30.392,586,33.757]],["parent/708",[]],["name/709",[587,65.638]],["parent/709",[584,3.672,585,3.672,586,4.079]],["name/710",[2,24.97]],["parent/710",[584,3.672,585,3.672,588,4.079]],["name/711",[123,52.329]],["parent/711",[584,3.672,585,3.672,588,4.079]],["name/712",[589,60.406]],["parent/712",[]],["name/713",[590,65.638]],["parent/713",[589,6.733]],["name/714",[2,24.97]],["parent/714",[591,6.733]],["name/715",[400,41.716]],["parent/715",[591,6.733]],["name/716",[592,60.406]],["parent/716",[]],["name/717",[593,65.638]],["parent/717",[592,6.733]],["name/718",[2,24.97]],["parent/718",[594,7.316]],["name/719",[595,60.406]],["parent/719",[]],["name/720",[596,65.638]],["parent/720",[595,6.733]],["name/721",[2,24.97]],["parent/721",[597,6.733]],["name/722",[400,41.716]],["parent/722",[597,6.733]],["name/723",[598,60.406]],["parent/723",[]],["name/724",[599,65.638]],["parent/724",[598,6.733]],["name/725",[2,24.97]],["parent/725",[600,6.733]],["name/726",[400,41.716]],["parent/726",[600,6.733]],["name/727",[601,52.329]],["parent/727",[]],["name/728",[602,65.638]],["parent/728",[601,5.833]],["name/729",[603,65.638]],["parent/729",[601,5.833]],["name/730",[604,65.638]],["parent/730",[601,5.833]],["name/731",[605,65.638]],["parent/731",[601,5.833]],["name/732",[606,60.406]],["parent/732",[]],["name/733",[607,52.329]],["parent/733",[]],["name/734",[185,50.618]],["parent/734",[607,5.833]],["name/735",[2,24.97]],["parent/735",[608,4.175]],["name/736",[609,65.638]],["parent/736",[608,4.175]],["name/737",[610,65.638]],["parent/737",[608,4.175]],["name/738",[611,65.638]],["parent/738",[608,4.175]],["name/739",[196,60.406]],["parent/739",[608,4.175]],["name/740",[198,60.406]],["parent/740",[608,4.175]],["name/741",[123,52.329]],["parent/741",[608,4.175]],["name/742",[612,65.638]],["parent/742",[608,4.175]],["name/743",[613,65.638]],["parent/743",[608,4.175]],["name/744",[614,65.638]],["parent/744",[608,4.175]],["name/745",[615,65.638]],["parent/745",[608,4.175]],["name/746",[616,65.638]],["parent/746",[608,4.175]],["name/747",[617,65.638]],["parent/747",[608,4.175]],["name/748",[618,65.638]],["parent/748",[608,4.175]],["name/749",[619,65.638]],["parent/749",[608,4.175]],["name/750",[620,65.638]],["parent/750",[608,4.175]],["name/751",[621,65.638]],["parent/751",[608,4.175]],["name/752",[622,65.638]],["parent/752",[608,4.175]],["name/753",[623,65.638]],["parent/753",[608,4.175]],["name/754",[624,65.638]],["parent/754",[608,4.175]],["name/755",[625,65.638]],["parent/755",[608,4.175]],["name/756",[626,65.638]],["parent/756",[608,4.175]],["name/757",[627,65.638]],["parent/757",[608,4.175]],["name/758",[628,65.638]],["parent/758",[607,5.833]],["name/759",[629,65.638]],["parent/759",[607,5.833]],["name/760",[204,60.406]],["parent/760",[607,5.833]],["name/761",[630,60.406]],["parent/761",[]],["name/762",[631,56.959]],["parent/762",[630,6.733]],["name/763",[51,42.4]],["parent/763",[632,7.316]],["name/764",[633,56.959]],["parent/764",[634,4.895]],["name/765",[635,56.959]],["parent/765",[634,4.895]],["name/766",[636,56.959]],["parent/766",[634,4.895]],["name/767",[637,56.959]],["parent/767",[634,4.895]],["name/768",[638,56.959]],["parent/768",[634,4.895]],["name/769",[639,56.959]],["parent/769",[634,4.895]],["name/770",[640,56.959]],["parent/770",[634,4.895]],["name/771",[641,56.959]],["parent/771",[634,4.895]],["name/772",[642,56.959]],["parent/772",[634,4.895]],["name/773",[643,56.959]],["parent/773",[634,4.895]],["name/774",[644,56.959]],["parent/774",[634,4.895]],["name/775",[645,56.959]],["parent/775",[634,4.895]],["name/776",[646,60.406]],["parent/776",[]],["name/777",[631,56.959]],["parent/777",[646,6.733]],["name/778",[51,42.4]],["parent/778",[647,7.316]],["name/779",[633,56.959]],["parent/779",[648,4.895]],["name/780",[635,56.959]],["parent/780",[648,4.895]],["name/781",[636,56.959]],["parent/781",[648,4.895]],["name/782",[637,56.959]],["parent/782",[648,4.895]],["name/783",[638,56.959]],["parent/783",[648,4.895]],["name/784",[639,56.959]],["parent/784",[648,4.895]],["name/785",[640,56.959]],["parent/785",[648,4.895]],["name/786",[641,56.959]],["parent/786",[648,4.895]],["name/787",[642,56.959]],["parent/787",[648,4.895]],["name/788",[643,56.959]],["parent/788",[648,4.895]],["name/789",[644,56.959]],["parent/789",[648,4.895]],["name/790",[645,56.959]],["parent/790",[648,4.895]],["name/791",[649,60.406]],["parent/791",[]],["name/792",[631,56.959]],["parent/792",[649,6.733]],["name/793",[51,42.4]],["parent/793",[650,7.316]],["name/794",[633,56.959]],["parent/794",[651,4.895]],["name/795",[635,56.959]],["parent/795",[651,4.895]],["name/796",[636,56.959]],["parent/796",[651,4.895]],["name/797",[637,56.959]],["parent/797",[651,4.895]],["name/798",[638,56.959]],["parent/798",[651,4.895]],["name/799",[639,56.959]],["parent/799",[651,4.895]],["name/800",[640,56.959]],["parent/800",[651,4.895]],["name/801",[641,56.959]],["parent/801",[651,4.895]],["name/802",[642,56.959]],["parent/802",[651,4.895]],["name/803",[643,56.959]],["parent/803",[651,4.895]],["name/804",[644,56.959]],["parent/804",[651,4.895]],["name/805",[645,56.959]],["parent/805",[651,4.895]],["name/806",[652,65.638]],["parent/806",[]],["name/807",[653,65.638]],["parent/807",[]],["name/808",[654,65.638]],["parent/808",[]],["name/809",[655,28.287,656,28.287,657,23.694]],["parent/809",[]],["name/810",[658,60.406]],["parent/810",[655,3.418,656,3.418,657,2.863]],["name/811",[2,24.97]],["parent/811",[655,3.418,656,3.418,659,3.672]],["name/812",[660,65.638]],["parent/812",[655,3.418,656,3.418,659,3.672]],["name/813",[661,65.638]],["parent/813",[655,3.418,656,3.418,659,3.672]],["name/814",[662,65.638]],["parent/814",[655,3.418,656,3.418,659,3.672]],["name/815",[663,46.731]],["parent/815",[]],["name/816",[657,19.412,664,23.175,665,23.175,666,23.175]],["parent/816",[]],["name/817",[667,60.406]],["parent/817",[657,2.392,664,2.855,665,2.855,666,2.855]],["name/818",[2,24.97]],["parent/818",[664,2.855,665,2.855,666,2.855,668,3.068]],["name/819",[669,65.638]],["parent/819",[664,2.855,665,2.855,666,2.855,668,3.068]],["name/820",[670,65.638]],["parent/820",[664,2.855,665,2.855,666,2.855,668,3.068]],["name/821",[671,65.638]],["parent/821",[664,2.855,665,2.855,666,2.855,668,3.068]],["name/822",[657,23.694,672,27.468,673,27.468]],["parent/822",[]],["name/823",[674,60.406]],["parent/823",[657,2.863,672,3.319,673,3.319]],["name/824",[2,24.97]],["parent/824",[672,3.319,673,3.319,675,4.432]],["name/825",[676,60.406]],["parent/825",[657,2.863,672,3.319,673,3.319]],["name/826",[2,24.97]],["parent/826",[672,3.319,673,3.319,677,4.432]],["name/827",[678,60.406]],["parent/827",[657,2.863,672,3.319,673,3.319]],["name/828",[2,24.97]],["parent/828",[672,3.319,673,3.319,679,4.432]],["name/829",[657,23.694,680,30.392,681,21.998]],["parent/829",[]],["name/830",[682,60.406]],["parent/830",[657,2.863,680,3.672,681,2.658]],["name/831",[2,24.97]],["parent/831",[680,3.672,681,2.658,683,4.079]],["name/832",[684,65.638]],["parent/832",[680,3.672,681,2.658,683,4.079]],["name/833",[657,23.694,681,21.998,685,28.287]],["parent/833",[]],["name/834",[686,60.406]],["parent/834",[657,2.863,681,2.658,685,3.418]],["name/835",[2,24.97]],["parent/835",[681,2.658,685,3.418,687,3.672]],["name/836",[332,60.406]],["parent/836",[681,2.658,685,3.418,687,3.672]],["name/837",[333,60.406]],["parent/837",[681,2.658,685,3.418,687,3.672]],["name/838",[330,60.406]],["parent/838",[681,2.658,685,3.418,687,3.672]],["name/839",[657,23.694,681,21.998,688,26.115]],["parent/839",[]],["name/840",[689,60.406]],["parent/840",[657,2.863,681,2.658,688,3.156]],["name/841",[2,24.97]],["parent/841",[681,2.658,688,3.156,690,3.319]],["name/842",[691,65.638]],["parent/842",[681,2.658,688,3.156,690,3.319]],["name/843",[345,56.959]],["parent/843",[681,2.658,688,3.156,690,3.319]],["name/844",[692,65.638]],["parent/844",[681,2.658,688,3.156,690,3.319]],["name/845",[693,65.638]],["parent/845",[681,2.658,688,3.156,690,3.319]],["name/846",[354,60.406]],["parent/846",[681,2.658,688,3.156,690,3.319]],["name/847",[355,56.959]],["parent/847",[681,2.658,688,3.156,690,3.319]],["name/848",[1,60.406]],["parent/848",[11,6.349]],["name/849",[14,56.959]],["parent/849",[11,6.349]],["name/850",[20,60.406]],["parent/850",[23,6.349]],["name/851",[25,60.406]],["parent/851",[23,6.349]],["name/852",[41,60.406]],["parent/852",[63,4.726]],["name/853",[37,60.406]],["parent/853",[63,4.726]],["name/854",[66,60.406]],["parent/854",[63,4.726]],["name/855",[69,60.406]],["parent/855",[63,4.726]],["name/856",[29,60.406]],["parent/856",[63,4.726]],["name/857",[62,60.406]],["parent/857",[63,4.726]],["name/858",[50,60.406]],["parent/858",[63,4.726]],["name/859",[54,60.406]],["parent/859",[63,4.726]],["name/860",[47,60.406]],["parent/860",[63,4.726]],["name/861",[76,60.406]],["parent/861",[63,4.726]],["name/862",[32,60.406]],["parent/862",[63,4.726]],["name/863",[79,60.406]],["parent/863",[63,4.726]],["name/864",[80,60.406]],["parent/864",[63,4.726]],["name/865",[82,60.406]],["parent/865",[88,6.062]],["name/866",[86,60.406]],["parent/866",[88,6.062]],["name/867",[90,60.406]],["parent/867",[88,6.062]],["name/868",[176,60.406]],["parent/868",[133,4.388]],["name/869",[183,60.406]],["parent/869",[133,4.388]],["name/870",[185,50.618]],["parent/870",[133,4.388]],["name/871",[192,52.329]],["parent/871",[133,4.388]],["name/872",[199,60.406]],["parent/872",[133,4.388]],["name/873",[148,60.406]],["parent/873",[133,4.388]],["name/874",[150,56.959]],["parent/874",[133,4.388]],["name/875",[93,60.406]],["parent/875",[133,4.388]],["name/876",[120,50.618]],["parent/876",[133,4.388]],["name/877",[126,60.406]],["parent/877",[133,4.388]],["name/878",[129,60.406]],["parent/878",[133,4.388]],["name/879",[132,60.406]],["parent/879",[133,4.388]],["name/880",[156,60.406]],["parent/880",[133,4.388]],["name/881",[162,54.385]],["parent/881",[133,4.388]],["name/882",[135,54.385]],["parent/882",[133,4.388]],["name/883",[113,56.959]],["parent/883",[133,4.388]],["name/884",[142,60.406]],["parent/884",[133,4.388]],["name/885",[145,60.406]],["parent/885",[133,4.388]],["name/886",[210,60.406]],["parent/886",[206,5.479]],["name/887",[237,56.959]],["parent/887",[206,5.479]],["name/888",[240,60.406]],["parent/888",[206,5.479]],["name/889",[120,50.618]],["parent/889",[206,5.479]],["name/890",[239,47.87]],["parent/890",[206,5.479]],["name/891",[250,60.406]],["parent/891",[206,5.479]],["name/892",[256,60.406]],["parent/892",[290,5.209]],["name/893",[324,60.406]],["parent/893",[290,5.209]],["name/894",[339,60.406]],["parent/894",[290,5.209]],["name/895",[317,60.406]],["parent/895",[290,5.209]],["name/896",[273,60.406]],["parent/896",[290,5.209]],["name/897",[292,60.406]],["parent/897",[290,5.209]],["name/898",[254,56.959]],["parent/898",[290,5.209]],["name/899",[285,60.406]],["parent/899",[290,5.209]],["name/900",[185,50.618]],["parent/900",[606,6.733]],["name/901",[658,60.406]],["parent/901",[663,5.209]],["name/902",[667,60.406]],["parent/902",[663,5.209]],["name/903",[674,60.406]],["parent/903",[663,5.209]],["name/904",[676,60.406]],["parent/904",[663,5.209]],["name/905",[678,60.406]],["parent/905",[663,5.209]],["name/906",[689,60.406]],["parent/906",[663,5.209]],["name/907",[682,60.406]],["parent/907",[663,5.209]],["name/908",[686,60.406]],["parent/908",[663,5.209]]],"invertedIndex":[["0xa686005ce37dce7738436256982c3903f2e4ea8e",{"_index":169,"name":{"171":{}},"parent":{}}],["__type",{"_index":51,"name":{"46":{},"63":{},"93":{},"95":{},"101":{},"108":{},"170":{},"172":{},"275":{},"295":{},"297":{},"763":{},"778":{},"793":{}},"parent":{}}],["_outbuffer",{"_index":618,"name":{"748":{}},"parent":{}}],["_outbuffercursor",{"_index":619,"name":{"749":{}},"parent":{}}],["_signatureset",{"_index":616,"name":{"746":{}},"parent":{}}],["_workbuffer",{"_index":617,"name":{"747":{}},"parent":{}}],["account",{"_index":426,"name":{"485":{}},"parent":{}}],["account.component",{"_index":486,"name":{"558":{}},"parent":{"559":{}}}],["account.component.createaccountcomponent",{"_index":488,"name":{},"parent":{"560":{},"561":{},"562":{},"563":{},"564":{},"565":{},"566":{},"567":{},"568":{},"569":{},"570":{}}}],["account/create",{"_index":485,"name":{"558":{}},"parent":{"559":{},"560":{},"561":{},"562":{},"563":{},"564":{},"565":{},"566":{},"567":{},"568":{},"569":{},"570":{}}}],["accountaddress",{"_index":427,"name":{"486":{}},"parent":{}}],["accountdetails",{"_index":93,"name":{"86":{},"875":{}},"parent":{}}],["accountdetailscomponent",{"_index":411,"name":{"470":{}},"parent":{}}],["accountindex",{"_index":1,"name":{"1":{},"848":{}},"parent":{}}],["accountinfoform",{"_index":425,"name":{"484":{}},"parent":{}}],["accountinfoformstub",{"_index":442,"name":{"507":{}},"parent":{}}],["accounts",{"_index":342,"name":{"400":{},"488":{},"541":{}},"parent":{}}],["accountscomponent",{"_index":471,"name":{"538":{}},"parent":{}}],["accountsearchcomponent",{"_index":450,"name":{"515":{}},"parent":{}}],["accountslist",{"_index":343,"name":{"401":{}},"parent":{}}],["accountsmodule",{"_index":482,"name":{"556":{}},"parent":{}}],["accountsroutingmodule",{"_index":468,"name":{"535":{}},"parent":{}}],["accountssubject",{"_index":344,"name":{"402":{}},"parent":{}}],["accountstatus",{"_index":428,"name":{"487":{}},"parent":{}}],["accountstype",{"_index":429,"name":{"489":{},"545":{}},"parent":{}}],["accounttypes",{"_index":434,"name":{"496":{},"546":{},"566":{}},"parent":{}}],["action",{"_index":135,"name":{"129":{},"133":{},"579":{},"882":{}},"parent":{}}],["actions",{"_index":345,"name":{"403":{},"580":{},"843":{}},"parent":{}}],["actionslist",{"_index":346,"name":{"404":{}},"parent":{}}],["actionssubject",{"_index":347,"name":{"405":{}},"parent":{}}],["activatedroutestub",{"_index":658,"name":{"810":{},"901":{}},"parent":{}}],["add0x",{"_index":605,"name":{"731":{}},"parent":{}}],["address",{"_index":165,"name":{"166":{},"187":{}},"parent":{}}],["addressof",{"_index":16,"name":{"17":{}},"parent":{}}],["addresssearchform",{"_index":458,"name":{"523":{}},"parent":{}}],["addresssearchformstub",{"_index":463,"name":{"530":{}},"parent":{}}],["addresssearchloading",{"_index":460,"name":{"525":{}},"parent":{}}],["addresssearchsubmitted",{"_index":459,"name":{"524":{}},"parent":{}}],["addtoaccountregistry",{"_index":7,"name":{"6":{}},"parent":{}}],["addtransaction",{"_index":334,"name":{"389":{}},"parent":{}}],["admincomponent",{"_index":495,"name":{"575":{}},"parent":{}}],["adminmodule",{"_index":501,"name":{"591":{}},"parent":{}}],["adminroutingmodule",{"_index":492,"name":{"572":{}},"parent":{}}],["age",{"_index":97,"name":{"89":{}},"parent":{}}],["alg",{"_index":181,"name":{"183":{}},"parent":{}}],["algo",{"_index":121,"name":{"115":{},"277":{},"290":{}},"parent":{}}],["app/_eth",{"_index":11,"name":{"10":{}},"parent":{"848":{},"849":{}}}],["app/_eth/accountindex",{"_index":0,"name":{"0":{}},"parent":{"1":{}}}],["app/_eth/accountindex.accountindex",{"_index":3,"name":{},"parent":{"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{}}}],["app/_eth/token",{"_index":12,"name":{"11":{}},"parent":{"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{}}}],["app/_guards",{"_index":23,"name":{"24":{}},"parent":{"850":{},"851":{}}}],["app/_guards/auth.guard",{"_index":19,"name":{"20":{}},"parent":{"21":{}}}],["app/_guards/auth.guard.authguard",{"_index":21,"name":{},"parent":{"22":{},"23":{}}}],["app/_guards/role.guard",{"_index":24,"name":{"25":{}},"parent":{"26":{}}}],["app/_guards/role.guard.roleguard",{"_index":26,"name":{},"parent":{"27":{},"28":{}}}],["app/_helpers",{"_index":63,"name":{"57":{}},"parent":{"852":{},"853":{},"854":{},"855":{},"856":{},"857":{},"858":{},"859":{},"860":{},"861":{},"862":{},"863":{},"864":{}}}],["app/_helpers/array",{"_index":27,"name":{"29":{}},"parent":{"30":{}}}],["app/_helpers/clipboard",{"_index":30,"name":{"31":{}},"parent":{"32":{}}}],["app/_helpers/custom",{"_index":33,"name":{"33":{}},"parent":{"34":{},"35":{},"36":{}}}],["app/_helpers/custom.validator",{"_index":40,"name":{"37":{}},"parent":{"38":{}}}],["app/_helpers/custom.validator.customvalidator",{"_index":43,"name":{},"parent":{"39":{},"40":{},"41":{}}}],["app/_helpers/export",{"_index":45,"name":{"42":{}},"parent":{"43":{}}}],["app/_helpers/global",{"_index":48,"name":{"44":{}},"parent":{"45":{},"46":{},"47":{},"48":{},"49":{},"50":{},"51":{},"52":{},"53":{},"54":{}}}],["app/_helpers/http",{"_index":60,"name":{"55":{}},"parent":{"56":{}}}],["app/_helpers/mock",{"_index":64,"name":{"58":{}},"parent":{"59":{},"60":{},"61":{},"62":{},"63":{},"64":{},"65":{},"66":{}}}],["app/_helpers/read",{"_index":75,"name":{"67":{}},"parent":{"68":{}}}],["app/_helpers/schema",{"_index":77,"name":{"69":{}},"parent":{"70":{},"71":{}}}],["app/_interceptors",{"_index":88,"name":{"80":{}},"parent":{"865":{},"866":{},"867":{}}}],["app/_interceptors/error.interceptor",{"_index":81,"name":{"72":{}},"parent":{"73":{}}}],["app/_interceptors/error.interceptor.errorinterceptor",{"_index":83,"name":{},"parent":{"74":{},"75":{}}}],["app/_interceptors/http",{"_index":84,"name":{"76":{}},"parent":{"77":{},"78":{},"79":{}}}],["app/_interceptors/logging.interceptor",{"_index":89,"name":{"81":{}},"parent":{"82":{}}}],["app/_interceptors/logging.interceptor.logginginterceptor",{"_index":91,"name":{},"parent":{"83":{},"84":{}}}],["app/_models",{"_index":133,"name":{"127":{}},"parent":{"868":{},"869":{},"870":{},"871":{},"872":{},"873":{},"874":{},"875":{},"876":{},"877":{},"878":{},"879":{},"880":{},"881":{},"882":{},"883":{},"884":{},"885":{}}}],["app/_models/account",{"_index":92,"name":{"85":{}},"parent":{"86":{},"114":{},"119":{},"123":{},"126":{}}}],["app/_models/account.accountdetails",{"_index":95,"name":{},"parent":{"87":{},"88":{},"89":{},"90":{},"91":{},"92":{},"93":{},"100":{},"101":{},"105":{},"106":{},"107":{},"108":{}}}],["app/_models/account.accountdetails.__type",{"_index":102,"name":{},"parent":{"94":{},"95":{},"98":{},"99":{},"102":{},"103":{},"104":{},"109":{},"110":{},"111":{},"112":{},"113":{}}}],["app/_models/account.accountdetails.__type.__type",{"_index":104,"name":{},"parent":{"96":{},"97":{}}}],["app/_models/account.meta",{"_index":127,"name":{},"parent":{"120":{},"121":{},"122":{}}}],["app/_models/account.metaresponse",{"_index":130,"name":{},"parent":{"124":{},"125":{}}}],["app/_models/account.signature",{"_index":122,"name":{},"parent":{"115":{},"116":{},"117":{},"118":{}}}],["app/_models/mappings",{"_index":134,"name":{"128":{}},"parent":{"129":{},"135":{},"138":{},"141":{}}}],["app/_models/mappings.action",{"_index":136,"name":{},"parent":{"130":{},"131":{},"132":{},"133":{},"134":{}}}],["app/_models/mappings.areaname",{"_index":143,"name":{},"parent":{"139":{},"140":{}}}],["app/_models/mappings.areatype",{"_index":146,"name":{},"parent":{"142":{},"143":{}}}],["app/_models/mappings.category",{"_index":141,"name":{},"parent":{"136":{},"137":{}}}],["app/_models/settings",{"_index":147,"name":{"144":{}},"parent":{"145":{},"151":{}}}],["app/_models/settings.settings",{"_index":149,"name":{},"parent":{"146":{},"147":{},"148":{},"149":{},"150":{}}}],["app/_models/settings.w3",{"_index":153,"name":{},"parent":{"152":{},"153":{},"154":{}}}],["app/_models/staff",{"_index":155,"name":{"155":{}},"parent":{"156":{}}}],["app/_models/staff.staff",{"_index":158,"name":{},"parent":{"157":{},"158":{},"159":{},"160":{},"161":{}}}],["app/_models/token",{"_index":161,"name":{"162":{}},"parent":{"163":{}}}],["app/_models/token.token",{"_index":163,"name":{},"parent":{"164":{},"165":{},"166":{},"167":{},"168":{},"169":{},"170":{},"175":{},"176":{}}}],["app/_models/token.token.__type",{"_index":170,"name":{},"parent":{"171":{},"172":{}}}],["app/_models/token.token.__type.__type",{"_index":172,"name":{},"parent":{"173":{},"174":{}}}],["app/_models/transaction",{"_index":175,"name":{"177":{}},"parent":{"178":{},"185":{},"190":{},"197":{},"207":{}}}],["app/_models/transaction.blocksbloom",{"_index":177,"name":{},"parent":{"179":{},"180":{},"181":{},"182":{},"183":{},"184":{}}}],["app/_models/transaction.conversion",{"_index":200,"name":{},"parent":{"208":{},"209":{},"210":{},"211":{},"212":{},"213":{},"214":{},"215":{}}}],["app/_models/transaction.transaction",{"_index":193,"name":{},"parent":{"198":{},"199":{},"200":{},"201":{},"202":{},"203":{},"204":{},"205":{},"206":{}}}],["app/_models/transaction.tx",{"_index":186,"name":{},"parent":{"191":{},"192":{},"193":{},"194":{},"195":{},"196":{}}}],["app/_models/transaction.txtoken",{"_index":184,"name":{},"parent":{"186":{},"187":{},"188":{},"189":{}}}],["app/_pgp",{"_index":206,"name":{"216":{}},"parent":{"886":{},"887":{},"888":{},"889":{},"890":{},"891":{}}}],["app/_pgp/pgp",{"_index":207,"name":{"217":{},"271":{}},"parent":{"218":{},"219":{},"220":{},"221":{},"222":{},"223":{},"224":{},"225":{},"226":{},"227":{},"228":{},"229":{},"230":{},"231":{},"232":{},"233":{},"234":{},"235":{},"236":{},"237":{},"238":{},"239":{},"240":{},"241":{},"242":{},"243":{},"244":{},"245":{},"246":{},"247":{},"248":{},"249":{},"250":{},"251":{},"252":{},"253":{},"254":{},"255":{},"256":{},"257":{},"258":{},"259":{},"260":{},"261":{},"262":{},"263":{},"264":{},"265":{},"266":{},"267":{},"268":{},"269":{},"270":{},"272":{},"273":{},"274":{},"275":{},"276":{},"277":{},"278":{},"279":{},"280":{},"281":{},"282":{},"283":{},"284":{},"285":{},"286":{},"287":{},"288":{},"289":{},"290":{},"291":{},"292":{},"293":{},"294":{},"295":{},"296":{},"297":{},"298":{},"299":{},"300":{},"301":{},"302":{}}}],["app/_services",{"_index":290,"name":{"339":{}},"parent":{"892":{},"893":{},"894":{},"895":{},"896":{},"897":{},"898":{},"899":{}}}],["app/_services/auth.service",{"_index":255,"name":{"303":{}},"parent":{"304":{}}}],["app/_services/auth.service.authservice",{"_index":257,"name":{},"parent":{"305":{},"306":{},"307":{},"308":{},"309":{},"310":{},"311":{},"312":{},"313":{},"314":{},"315":{},"316":{},"317":{},"318":{},"319":{},"320":{},"321":{}}}],["app/_services/block",{"_index":271,"name":{"322":{}},"parent":{"323":{},"324":{},"325":{},"326":{},"327":{},"328":{},"329":{},"330":{},"331":{},"332":{}}}],["app/_services/error",{"_index":283,"name":{"333":{}},"parent":{"334":{},"335":{},"336":{},"337":{},"338":{}}}],["app/_services/location.service",{"_index":291,"name":{"340":{}},"parent":{"341":{}}}],["app/_services/location.service.locationservice",{"_index":293,"name":{},"parent":{"342":{},"343":{},"344":{},"345":{},"346":{}}}],["app/_services/logging.service",{"_index":298,"name":{"347":{}},"parent":{"348":{}}}],["app/_services/logging.service.loggingservice",{"_index":299,"name":{},"parent":{"349":{},"350":{},"351":{},"352":{},"353":{},"354":{},"355":{},"356":{},"357":{},"358":{}}}],["app/_services/registry.service",{"_index":309,"name":{"359":{}},"parent":{"360":{}}}],["app/_services/registry.service.registryservice",{"_index":311,"name":{},"parent":{"361":{},"362":{},"363":{},"364":{},"365":{},"366":{}}}],["app/_services/token.service",{"_index":316,"name":{"367":{}},"parent":{"368":{}}}],["app/_services/token.service.tokenservice",{"_index":318,"name":{},"parent":{"369":{},"370":{},"371":{},"372":{},"373":{},"374":{},"375":{}}}],["app/_services/transaction.service",{"_index":323,"name":{"376":{}},"parent":{"377":{}}}],["app/_services/transaction.service.transactionservice",{"_index":325,"name":{},"parent":{"378":{},"379":{},"380":{},"381":{},"382":{},"383":{},"384":{},"385":{},"386":{},"387":{},"388":{},"389":{},"390":{},"391":{},"392":{}}}],["app/_services/user.service",{"_index":338,"name":{"393":{}},"parent":{"394":{}}}],["app/_services/user.service.userservice",{"_index":340,"name":{},"parent":{"395":{},"396":{},"397":{},"398":{},"399":{},"400":{},"401":{},"402":{},"403":{},"404":{},"405":{},"406":{},"407":{},"408":{},"409":{},"410":{},"411":{},"412":{},"413":{},"414":{},"415":{},"416":{},"417":{},"418":{},"419":{},"420":{},"421":{},"422":{},"423":{},"424":{},"425":{},"426":{}}}],["app/app",{"_index":369,"name":{"427":{}},"parent":{"428":{},"429":{}}}],["app/app.component",{"_index":373,"name":{"430":{}},"parent":{"431":{}}}],["app/app.component.appcomponent",{"_index":375,"name":{},"parent":{"432":{},"433":{},"434":{},"435":{},"436":{},"437":{},"438":{},"439":{}}}],["app/app.module",{"_index":381,"name":{"440":{}},"parent":{"441":{}}}],["app/app.module.appmodule",{"_index":383,"name":{},"parent":{"442":{}}}],["app/auth/_directives",{"_index":384,"name":{"443":{}},"parent":{}}],["app/auth/_directives/password",{"_index":385,"name":{"444":{}},"parent":{"445":{},"446":{},"447":{},"448":{},"449":{}}}],["app/auth/auth",{"_index":391,"name":{"450":{}},"parent":{"451":{},"452":{}}}],["app/auth/auth.component",{"_index":394,"name":{"453":{}},"parent":{"454":{}}}],["app/auth/auth.component.authcomponent",{"_index":396,"name":{},"parent":{"455":{},"456":{},"457":{},"458":{},"459":{},"460":{},"461":{},"462":{},"463":{},"464":{},"465":{}}}],["app/auth/auth.module",{"_index":405,"name":{"466":{}},"parent":{"467":{}}}],["app/auth/auth.module.authmodule",{"_index":407,"name":{},"parent":{"468":{}}}],["app/pages/accounts/account",{"_index":408,"name":{"469":{},"514":{}},"parent":{"470":{},"471":{},"472":{},"473":{},"474":{},"475":{},"476":{},"477":{},"478":{},"479":{},"480":{},"481":{},"482":{},"483":{},"484":{},"485":{},"486":{},"487":{},"488":{},"489":{},"490":{},"491":{},"492":{},"493":{},"494":{},"495":{},"496":{},"497":{},"498":{},"499":{},"500":{},"501":{},"502":{},"503":{},"504":{},"505":{},"506":{},"507":{},"508":{},"509":{},"510":{},"511":{},"512":{},"513":{},"515":{},"516":{},"517":{},"518":{},"519":{},"520":{},"521":{},"522":{},"523":{},"524":{},"525":{},"526":{},"527":{},"528":{},"529":{},"530":{},"531":{},"532":{},"533":{}}}],["app/pages/accounts/accounts",{"_index":467,"name":{"534":{}},"parent":{"535":{},"536":{}}}],["app/pages/accounts/accounts.component",{"_index":470,"name":{"537":{}},"parent":{"538":{}}}],["app/pages/accounts/accounts.component.accountscomponent",{"_index":472,"name":{},"parent":{"539":{},"540":{},"541":{},"542":{},"543":{},"544":{},"545":{},"546":{},"547":{},"548":{},"549":{},"550":{},"551":{},"552":{},"553":{},"554":{}}}],["app/pages/accounts/accounts.module",{"_index":481,"name":{"555":{}},"parent":{"556":{}}}],["app/pages/accounts/accounts.module.accountsmodule",{"_index":483,"name":{},"parent":{"557":{}}}],["app/pages/accounts/create",{"_index":484,"name":{"558":{}},"parent":{"559":{},"560":{},"561":{},"562":{},"563":{},"564":{},"565":{},"566":{},"567":{},"568":{},"569":{},"570":{}}}],["app/pages/admin/admin",{"_index":491,"name":{"571":{}},"parent":{"572":{},"573":{}}}],["app/pages/admin/admin.component",{"_index":494,"name":{"574":{}},"parent":{"575":{}}}],["app/pages/admin/admin.component.admincomponent",{"_index":496,"name":{},"parent":{"576":{},"577":{},"578":{},"579":{},"580":{},"581":{},"582":{},"583":{},"584":{},"585":{},"586":{},"587":{},"588":{},"589":{}}}],["app/pages/admin/admin.module",{"_index":500,"name":{"590":{}},"parent":{"591":{}}}],["app/pages/admin/admin.module.adminmodule",{"_index":502,"name":{},"parent":{"592":{}}}],["app/pages/pages",{"_index":503,"name":{"593":{}},"parent":{"594":{},"595":{}}}],["app/pages/pages.component",{"_index":506,"name":{"596":{}},"parent":{"597":{}}}],["app/pages/pages.component.pagescomponent",{"_index":508,"name":{},"parent":{"598":{},"599":{}}}],["app/pages/pages.module",{"_index":510,"name":{"600":{}},"parent":{"601":{}}}],["app/pages/pages.module.pagesmodule",{"_index":512,"name":{},"parent":{"602":{}}}],["app/pages/settings/organization/organization.component",{"_index":513,"name":{"603":{}},"parent":{"604":{}}}],["app/pages/settings/organization/organization.component.organizationcomponent",{"_index":515,"name":{},"parent":{"605":{},"606":{},"607":{},"608":{},"609":{},"610":{},"611":{}}}],["app/pages/settings/settings",{"_index":518,"name":{"612":{}},"parent":{"613":{},"614":{}}}],["app/pages/settings/settings.component",{"_index":521,"name":{"615":{}},"parent":{"616":{}}}],["app/pages/settings/settings.component.settingscomponent",{"_index":523,"name":{},"parent":{"617":{},"618":{},"619":{},"620":{},"621":{},"622":{},"623":{},"624":{},"625":{},"626":{},"627":{}}}],["app/pages/settings/settings.module",{"_index":526,"name":{"628":{}},"parent":{"629":{}}}],["app/pages/settings/settings.module.settingsmodule",{"_index":528,"name":{},"parent":{"630":{}}}],["app/pages/tokens/token",{"_index":529,"name":{"631":{}},"parent":{"632":{},"633":{},"634":{},"635":{}}}],["app/pages/tokens/tokens",{"_index":533,"name":{"636":{}},"parent":{"637":{},"638":{}}}],["app/pages/tokens/tokens.component",{"_index":536,"name":{"639":{}},"parent":{"640":{}}}],["app/pages/tokens/tokens.component.tokenscomponent",{"_index":538,"name":{},"parent":{"641":{},"642":{},"643":{},"644":{},"645":{},"646":{},"647":{},"648":{},"649":{},"650":{}}}],["app/pages/tokens/tokens.module",{"_index":542,"name":{"651":{}},"parent":{"652":{}}}],["app/pages/tokens/tokens.module.tokensmodule",{"_index":544,"name":{},"parent":{"653":{}}}],["app/pages/transactions/transaction",{"_index":545,"name":{"654":{}},"parent":{"655":{},"656":{},"657":{},"658":{},"659":{},"660":{},"661":{},"662":{},"663":{},"664":{},"665":{},"666":{}}}],["app/pages/transactions/transactions",{"_index":556,"name":{"667":{}},"parent":{"668":{},"669":{}}}],["app/pages/transactions/transactions.component",{"_index":559,"name":{"670":{}},"parent":{"671":{}}}],["app/pages/transactions/transactions.component.transactionscomponent",{"_index":561,"name":{},"parent":{"672":{},"673":{},"674":{},"675":{},"676":{},"677":{},"678":{},"679":{},"680":{},"681":{},"682":{},"683":{},"684":{},"685":{},"686":{},"687":{},"688":{}}}],["app/pages/transactions/transactions.module",{"_index":565,"name":{"689":{}},"parent":{"690":{}}}],["app/pages/transactions/transactions.module.transactionsmodule",{"_index":567,"name":{},"parent":{"691":{}}}],["app/shared/_directives/menu",{"_index":568,"name":{"692":{},"696":{}},"parent":{"693":{},"694":{},"695":{},"697":{},"698":{},"699":{}}}],["app/shared/_pipes/safe.pipe",{"_index":576,"name":{"700":{}},"parent":{"701":{}}}],["app/shared/_pipes/safe.pipe.safepipe",{"_index":578,"name":{},"parent":{"702":{},"703":{}}}],["app/shared/_pipes/token",{"_index":580,"name":{"704":{}},"parent":{"705":{},"706":{},"707":{}}}],["app/shared/error",{"_index":584,"name":{"708":{}},"parent":{"709":{},"710":{},"711":{}}}],["app/shared/footer/footer.component",{"_index":589,"name":{"712":{}},"parent":{"713":{}}}],["app/shared/footer/footer.component.footercomponent",{"_index":591,"name":{},"parent":{"714":{},"715":{}}}],["app/shared/shared.module",{"_index":592,"name":{"716":{}},"parent":{"717":{}}}],["app/shared/shared.module.sharedmodule",{"_index":594,"name":{},"parent":{"718":{}}}],["app/shared/sidebar/sidebar.component",{"_index":595,"name":{"719":{}},"parent":{"720":{}}}],["app/shared/sidebar/sidebar.component.sidebarcomponent",{"_index":597,"name":{},"parent":{"721":{},"722":{}}}],["app/shared/topbar/topbar.component",{"_index":598,"name":{"723":{}},"parent":{"724":{}}}],["app/shared/topbar/topbar.component.topbarcomponent",{"_index":600,"name":{},"parent":{"725":{},"726":{}}}],["appcomponent",{"_index":374,"name":{"431":{}},"parent":{}}],["appmodule",{"_index":382,"name":{"441":{}},"parent":{}}],["approutingmodule",{"_index":371,"name":{"428":{}},"parent":{}}],["approval",{"_index":139,"name":{"134":{}},"parent":{}}],["approvalstatus",{"_index":497,"name":{"585":{}},"parent":{}}],["approveaction",{"_index":355,"name":{"413":{},"586":{},"847":{}},"parent":{}}],["area",{"_index":109,"name":{"102":{},"143":{}},"parent":{}}],["area_name",{"_index":110,"name":{"103":{}},"parent":{}}],["area_type",{"_index":111,"name":{"104":{}},"parent":{}}],["areaname",{"_index":142,"name":{"138":{},"884":{}},"parent":{}}],["areanames",{"_index":431,"name":{"491":{},"565":{}},"parent":{}}],["areatype",{"_index":145,"name":{"141":{},"885":{}},"parent":{}}],["areatypes",{"_index":432,"name":{"492":{}},"parent":{}}],["arraysum",{"_index":29,"name":{"30":{},"856":{}},"parent":{}}],["assets/js/ethtx/dist",{"_index":606,"name":{"732":{}},"parent":{"900":{}}}],["assets/js/ethtx/dist/hex",{"_index":601,"name":{"727":{}},"parent":{"728":{},"729":{},"730":{},"731":{}}}],["assets/js/ethtx/dist/tx",{"_index":607,"name":{"733":{}},"parent":{"734":{},"758":{},"759":{},"760":{}}}],["assets/js/ethtx/dist/tx.tx",{"_index":608,"name":{},"parent":{"735":{},"736":{},"737":{},"738":{},"739":{},"740":{},"741":{},"742":{},"743":{},"744":{},"745":{},"746":{},"747":{},"748":{},"749":{},"750":{},"751":{},"752":{},"753":{},"754":{},"755":{},"756":{},"757":{}}}],["authcomponent",{"_index":395,"name":{"454":{}},"parent":{}}],["authguard",{"_index":20,"name":{"21":{},"850":{}},"parent":{}}],["authmodule",{"_index":406,"name":{"467":{}},"parent":{}}],["authroutingmodule",{"_index":392,"name":{"451":{}},"parent":{}}],["authservice",{"_index":256,"name":{"304":{},"892":{}},"parent":{}}],["backend",{"_index":65,"name":{"58":{}},"parent":{"59":{},"62":{}}}],["backend.mockbackendinterceptor",{"_index":67,"name":{},"parent":{"60":{},"61":{}}}],["backend.mockbackendprovider",{"_index":70,"name":{},"parent":{"63":{}}}],["backend.mockbackendprovider.__type",{"_index":72,"name":{},"parent":{"64":{},"65":{},"66":{}}}],["balance",{"_index":99,"name":{"91":{},"174":{}},"parent":{}}],["block",{"_index":187,"name":{"192":{}},"parent":{}}],["blockfilter",{"_index":179,"name":{"181":{}},"parent":{}}],["blocksbloom",{"_index":176,"name":{"178":{},"868":{}},"parent":{}}],["blocksync",{"_index":277,"name":{"327":{}},"parent":{}}],["blocksyncservice",{"_index":273,"name":{"323":{},"896":{}},"parent":{}}],["blocktxfilter",{"_index":180,"name":{"182":{}},"parent":{}}],["bloxberg:8996",{"_index":103,"name":{"96":{}},"parent":{}}],["bloxbergchainid",{"_index":635,"name":{"765":{},"780":{},"795":{}},"parent":{}}],["bloxberglink",{"_index":437,"name":{"501":{}},"parent":{}}],["canactivate",{"_index":22,"name":{"23":{},"28":{}},"parent":{}}],["candebug",{"_index":301,"name":{"351":{}},"parent":{}}],["canonicalorder",{"_index":623,"name":{"753":{}},"parent":{}}],["categories",{"_index":430,"name":{"490":{},"564":{}},"parent":{}}],["category",{"_index":113,"name":{"106":{},"135":{},"883":{}},"parent":{}}],["chainid",{"_index":615,"name":{"745":{}},"parent":{}}],["changeaccountinfo",{"_index":351,"name":{"409":{}},"parent":{}}],["ciccacheurl",{"_index":641,"name":{"771":{},"786":{},"801":{}},"parent":{}}],["cicconvert",{"_index":380,"name":{"439":{}},"parent":{}}],["cicmetaurl",{"_index":639,"name":{"769":{},"784":{},"799":{}},"parent":{}}],["cictransfer",{"_index":379,"name":{"438":{}},"parent":{}}],["cicussdurl",{"_index":643,"name":{"773":{},"788":{},"803":{}},"parent":{}}],["clearkeysinkeyring",{"_index":235,"name":{"243":{},"269":{}},"parent":{}}],["clearsignature",{"_index":627,"name":{"757":{}},"parent":{}}],["columnstodisplay",{"_index":539,"name":{"643":{}},"parent":{}}],["comment",{"_index":157,"name":{"157":{}},"parent":{}}],["config.interceptor",{"_index":85,"name":{"76":{}},"parent":{"77":{}}}],["config.interceptor.httpconfiginterceptor",{"_index":87,"name":{},"parent":{"78":{},"79":{}}}],["constructor",{"_index":2,"name":{"2":{},"13":{},"22":{},"27":{},"35":{},"41":{},"47":{},"50":{},"60":{},"74":{},"78":{},"83":{},"146":{},"152":{},"179":{},"186":{},"191":{},"198":{},"208":{},"219":{},"288":{},"305":{},"324":{},"335":{},"342":{},"349":{},"361":{},"369":{},"378":{},"395":{},"429":{},"432":{},"442":{},"446":{},"452":{},"455":{},"468":{},"471":{},"516":{},"536":{},"539":{},"557":{},"560":{},"573":{},"576":{},"592":{},"595":{},"598":{},"602":{},"605":{},"614":{},"617":{},"630":{},"633":{},"638":{},"641":{},"653":{},"656":{},"669":{},"672":{},"691":{},"694":{},"698":{},"702":{},"706":{},"710":{},"714":{},"718":{},"721":{},"725":{},"735":{},"811":{},"818":{},"824":{},"826":{},"828":{},"831":{},"835":{},"841":{}},"parent":{}}],["contract",{"_index":4,"name":{"3":{},"14":{}},"parent":{}}],["contractaddress",{"_index":5,"name":{"4":{},"15":{}},"parent":{}}],["conversion",{"_index":199,"name":{"207":{},"872":{}},"parent":{}}],["copy",{"_index":31,"name":{"31":{}},"parent":{"32":{}}}],["copyaddress",{"_index":447,"name":{"513":{},"666":{}},"parent":{}}],["copytoclipboard",{"_index":32,"name":{"32":{},"862":{}},"parent":{}}],["createaccountcomponent",{"_index":487,"name":{"559":{}},"parent":{}}],["createform",{"_index":489,"name":{"561":{}},"parent":{}}],["createformstub",{"_index":490,"name":{"569":{}},"parent":{}}],["csv",{"_index":46,"name":{"42":{},"67":{}},"parent":{"43":{},"68":{}}}],["customerrorstatematcher",{"_index":37,"name":{"34":{},"853":{}},"parent":{}}],["customvalidator",{"_index":41,"name":{"38":{},"852":{}},"parent":{}}],["data",{"_index":123,"name":{"116":{},"120":{},"278":{},"711":{},"741":{}},"parent":{}}],["datasource",{"_index":473,"name":{"540":{},"577":{},"619":{},"642":{}},"parent":{}}],["date",{"_index":524,"name":{"618":{}},"parent":{}}],["date_registered",{"_index":94,"name":{"87":{}},"parent":{}}],["decimals",{"_index":167,"name":{"168":{}},"parent":{}}],["defaultaccount",{"_index":132,"name":{"126":{},"879":{}},"parent":{}}],["defaultpagesize",{"_index":475,"name":{"543":{},"675":{}},"parent":{}}],["destinationtoken",{"_index":201,"name":{"209":{}},"parent":{}}],["details.component",{"_index":410,"name":{"469":{},"631":{},"654":{}},"parent":{"470":{},"632":{},"655":{}}}],["details.component.accountdetailscomponent",{"_index":412,"name":{},"parent":{"471":{},"472":{},"473":{},"474":{},"475":{},"476":{},"477":{},"478":{},"479":{},"480":{},"481":{},"482":{},"483":{},"484":{},"485":{},"486":{},"487":{},"488":{},"489":{},"490":{},"491":{},"492":{},"493":{},"494":{},"495":{},"496":{},"497":{},"498":{},"499":{},"500":{},"501":{},"502":{},"503":{},"504":{},"505":{},"506":{},"507":{},"508":{},"509":{},"510":{},"511":{},"512":{},"513":{}}}],["details.component.tokendetailscomponent",{"_index":532,"name":{},"parent":{"633":{},"634":{},"635":{}}}],["details.component.transactiondetailscomponent",{"_index":548,"name":{},"parent":{"656":{},"657":{},"658":{},"659":{},"660":{},"661":{},"662":{},"663":{},"664":{},"665":{},"666":{}}}],["details/account",{"_index":409,"name":{"469":{}},"parent":{"470":{},"471":{},"472":{},"473":{},"474":{},"475":{},"476":{},"477":{},"478":{},"479":{},"480":{},"481":{},"482":{},"483":{},"484":{},"485":{},"486":{},"487":{},"488":{},"489":{},"490":{},"491":{},"492":{},"493":{},"494":{},"495":{},"496":{},"497":{},"498":{},"499":{},"500":{},"501":{},"502":{},"503":{},"504":{},"505":{},"506":{},"507":{},"508":{},"509":{},"510":{},"511":{},"512":{},"513":{}}}],["details/token",{"_index":530,"name":{"631":{}},"parent":{"632":{},"633":{},"634":{},"635":{}}}],["details/transaction",{"_index":546,"name":{"654":{}},"parent":{"655":{},"656":{},"657":{},"658":{},"659":{},"660":{},"661":{},"662":{},"663":{},"664":{},"665":{},"666":{}}}],["dgst",{"_index":252,"name":{"291":{}},"parent":{}}],["dialog",{"_index":288,"name":{"337":{}},"parent":{}}],["dialog.component",{"_index":586,"name":{"708":{}},"parent":{"709":{}}}],["dialog.component.errordialogcomponent",{"_index":588,"name":{},"parent":{"710":{},"711":{}}}],["dialog.service",{"_index":284,"name":{"333":{}},"parent":{"334":{}}}],["dialog.service.errordialogservice",{"_index":286,"name":{},"parent":{"335":{},"336":{},"337":{},"338":{}}}],["dialog/error",{"_index":585,"name":{"708":{}},"parent":{"709":{},"710":{},"711":{}}}],["digest",{"_index":124,"name":{"117":{},"273":{},"279":{}},"parent":{}}],["directive",{"_index":666,"name":{"816":{}},"parent":{"817":{},"818":{},"819":{},"820":{},"821":{}}}],["disapproveaction",{"_index":498,"name":{"587":{}},"parent":{}}],["displayedcolumns",{"_index":474,"name":{"542":{},"578":{},"620":{}},"parent":{}}],["dofilter",{"_index":479,"name":{"550":{},"584":{},"625":{},"648":{},"685":{}},"parent":{}}],["dotransactionfilter",{"_index":438,"name":{"503":{}},"parent":{}}],["douserfilter",{"_index":439,"name":{"504":{}},"parent":{}}],["downloadcsv",{"_index":446,"name":{"512":{},"554":{},"589":{},"626":{},"650":{},"688":{}},"parent":{}}],["email",{"_index":115,"name":{"109":{},"158":{}},"parent":{}}],["engine",{"_index":125,"name":{"118":{},"153":{},"276":{},"289":{}},"parent":{}}],["entry",{"_index":17,"name":{"18":{}},"parent":{}}],["env",{"_index":300,"name":{"350":{}},"parent":{}}],["environment",{"_index":631,"name":{"762":{},"777":{},"792":{}},"parent":{}}],["environments/environment",{"_index":649,"name":{"791":{}},"parent":{"792":{}}}],["environments/environment.dev",{"_index":630,"name":{"761":{}},"parent":{"762":{}}}],["environments/environment.dev.environment",{"_index":632,"name":{},"parent":{"763":{}}}],["environments/environment.dev.environment.__type",{"_index":634,"name":{},"parent":{"764":{},"765":{},"766":{},"767":{},"768":{},"769":{},"770":{},"771":{},"772":{},"773":{},"774":{},"775":{}}}],["environments/environment.environment",{"_index":650,"name":{},"parent":{"793":{}}}],["environments/environment.environment.__type",{"_index":651,"name":{},"parent":{"794":{},"795":{},"796":{},"797":{},"798":{},"799":{},"800":{},"801":{},"802":{},"803":{},"804":{},"805":{}}}],["environments/environment.prod",{"_index":646,"name":{"776":{}},"parent":{"777":{}}}],["environments/environment.prod.environment",{"_index":647,"name":{},"parent":{"778":{}}}],["environments/environment.prod.environment.__type",{"_index":648,"name":{},"parent":{"779":{},"780":{},"781":{},"782":{},"783":{},"784":{},"785":{},"786":{},"787":{},"788":{},"789":{},"790":{}}}],["error",{"_index":34,"name":{"33":{},"44":{}},"parent":{"34":{},"35":{},"36":{},"45":{},"46":{},"47":{},"48":{},"49":{},"50":{},"51":{},"52":{},"53":{},"54":{}}}],["errordialogcomponent",{"_index":587,"name":{"709":{}},"parent":{}}],["errordialogservice",{"_index":285,"name":{"334":{},"899":{}},"parent":{}}],["errorinterceptor",{"_index":82,"name":{"73":{},"865":{}},"parent":{}}],["evm",{"_index":101,"name":{"94":{}},"parent":{}}],["expandcollapse",{"_index":499,"name":{"588":{}},"parent":{}}],["exportcsv",{"_index":47,"name":{"43":{},"860":{}},"parent":{}}],["fetcher",{"_index":282,"name":{"332":{}},"parent":{}}],["filegetter",{"_index":313,"name":{"363":{}},"parent":{}}],["filteraccounts",{"_index":444,"name":{"509":{},"552":{}},"parent":{}}],["filterrounds",{"_index":182,"name":{"184":{}},"parent":{}}],["filtertransactions",{"_index":445,"name":{"510":{},"686":{}},"parent":{}}],["fingerprint",{"_index":247,"name":{"283":{},"299":{}},"parent":{}}],["fn",{"_index":116,"name":{"110":{}},"parent":{}}],["footercomponent",{"_index":590,"name":{"713":{}},"parent":{}}],["footerstubcomponent",{"_index":678,"name":{"827":{},"905":{}},"parent":{}}],["from",{"_index":194,"name":{"199":{}},"parent":{}}],["fromhex",{"_index":602,"name":{"728":{}},"parent":{}}],["fromvalue",{"_index":202,"name":{"210":{}},"parent":{}}],["gaslimit",{"_index":611,"name":{"738":{}},"parent":{}}],["gasprice",{"_index":610,"name":{"737":{}},"parent":{}}],["gender",{"_index":96,"name":{"88":{}},"parent":{}}],["genders",{"_index":436,"name":{"498":{},"567":{}},"parent":{}}],["getaccountbyaddress",{"_index":360,"name":{"418":{}},"parent":{}}],["getaccountbyphone",{"_index":361,"name":{"419":{}},"parent":{}}],["getaccountdetailsfrommeta",{"_index":357,"name":{"415":{}},"parent":{}}],["getaccountinfo",{"_index":336,"name":{"391":{}},"parent":{}}],["getaccountstatus",{"_index":349,"name":{"407":{}},"parent":{}}],["getaccounttypes",{"_index":366,"name":{"424":{}},"parent":{}}],["getactionbyid",{"_index":354,"name":{"412":{},"846":{}},"parent":{}}],["getactions",{"_index":353,"name":{"411":{}},"parent":{}}],["getaddresstransactions",{"_index":331,"name":{"386":{}},"parent":{}}],["getalltransactions",{"_index":330,"name":{"385":{},"838":{}},"parent":{}}],["getareanamebylocation",{"_index":295,"name":{"344":{}},"parent":{}}],["getareanames",{"_index":294,"name":{"343":{}},"parent":{}}],["getareatypebyarea",{"_index":297,"name":{"346":{}},"parent":{}}],["getareatypes",{"_index":296,"name":{"345":{}},"parent":{}}],["getbysymbol",{"_index":684,"name":{"832":{}},"parent":{}}],["getcategories",{"_index":364,"name":{"422":{}},"parent":{}}],["getcategorybyproduct",{"_index":365,"name":{"423":{}},"parent":{}}],["getchallenge",{"_index":264,"name":{"313":{}},"parent":{}}],["getencryptkeys",{"_index":219,"name":{"227":{},"253":{}},"parent":{}}],["getfingerprint",{"_index":224,"name":{"232":{},"258":{}},"parent":{}}],["getgenders",{"_index":368,"name":{"426":{}},"parent":{}}],["getkeyid",{"_index":225,"name":{"233":{},"259":{}},"parent":{}}],["getkeysforid",{"_index":227,"name":{"235":{},"261":{}},"parent":{}}],["getlockedaccounts",{"_index":350,"name":{"408":{}},"parent":{}}],["getprivatekey",{"_index":221,"name":{"229":{},"255":{},"321":{}},"parent":{}}],["getprivatekeyforid",{"_index":229,"name":{"237":{},"263":{}},"parent":{}}],["getprivatekeyid",{"_index":226,"name":{"234":{},"260":{}},"parent":{}}],["getprivatekeys",{"_index":220,"name":{"228":{},"254":{}},"parent":{}}],["getpublickeyforid",{"_index":228,"name":{"236":{},"262":{}},"parent":{}}],["getpublickeyforsubkeyid",{"_index":230,"name":{"238":{},"264":{}},"parent":{}}],["getpublickeys",{"_index":216,"name":{"224":{},"250":{},"320":{}},"parent":{}}],["getpublickeysforaddress",{"_index":231,"name":{"239":{},"265":{}},"parent":{}}],["getregistry",{"_index":314,"name":{"365":{}},"parent":{}}],["getter",{"_index":61,"name":{"55":{}},"parent":{"56":{}}}],["gettokenbalance",{"_index":322,"name":{"375":{}},"parent":{}}],["gettokenbysymbol",{"_index":321,"name":{"374":{}},"parent":{}}],["gettokens",{"_index":320,"name":{"373":{}},"parent":{}}],["gettransactiontypes",{"_index":367,"name":{"425":{}},"parent":{}}],["gettrustedactivekeys",{"_index":218,"name":{"226":{},"252":{}},"parent":{}}],["gettrustedkeys",{"_index":217,"name":{"225":{},"251":{}},"parent":{}}],["gettrustedusers",{"_index":270,"name":{"319":{}},"parent":{}}],["getuser",{"_index":693,"name":{"845":{}},"parent":{}}],["getuserbyid",{"_index":692,"name":{"844":{}},"parent":{}}],["getweb3",{"_index":315,"name":{"366":{}},"parent":{}}],["getwithtoken",{"_index":262,"name":{"311":{}},"parent":{}}],["globalerrorhandler",{"_index":54,"name":{"49":{},"859":{}},"parent":{}}],["handleerror",{"_index":57,"name":{"52":{}},"parent":{}}],["handler",{"_index":49,"name":{"44":{}},"parent":{"45":{},"49":{}}}],["handler.globalerrorhandler",{"_index":55,"name":{},"parent":{"50":{},"51":{},"52":{},"53":{},"54":{}}}],["handler.httperror",{"_index":52,"name":{},"parent":{"46":{},"47":{},"48":{}}}],["haveaccount",{"_index":8,"name":{"7":{}},"parent":{}}],["headers",{"_index":341,"name":{"396":{}},"parent":{}}],["hextovalue",{"_index":629,"name":{"759":{}},"parent":{}}],["httpconfiginterceptor",{"_index":86,"name":{"77":{},"866":{}},"parent":{}}],["httperror",{"_index":50,"name":{"45":{},"858":{}},"parent":{}}],["httpgetter",{"_index":62,"name":{"56":{},"857":{}},"parent":{}}],["iconid",{"_index":389,"name":{"448":{}},"parent":{}}],["id",{"_index":128,"name":{"121":{},"124":{},"130":{},"447":{}},"parent":{}}],["identities",{"_index":100,"name":{"92":{}},"parent":{}}],["importkeypair",{"_index":213,"name":{"221":{},"247":{}},"parent":{}}],["importprivatekey",{"_index":215,"name":{"223":{},"249":{}},"parent":{}}],["importpublickey",{"_index":214,"name":{"222":{},"248":{}},"parent":{}}],["init",{"_index":260,"name":{"309":{}},"parent":{}}],["intercept",{"_index":68,"name":{"61":{},"75":{},"79":{},"84":{}},"parent":{}}],["isdialogopen",{"_index":287,"name":{"336":{}},"parent":{}}],["isencryptedprivatekey",{"_index":223,"name":{"231":{},"257":{}},"parent":{}}],["iserrorstate",{"_index":39,"name":{"36":{}},"parent":{}}],["isvalidkey",{"_index":222,"name":{"230":{},"256":{}},"parent":{}}],["iswarning",{"_index":59,"name":{"54":{}},"parent":{}}],["key",{"_index":208,"name":{"217":{}},"parent":{"218":{},"219":{},"220":{},"221":{},"222":{},"223":{},"224":{},"225":{},"226":{},"227":{},"228":{},"229":{},"230":{},"231":{},"232":{},"233":{},"234":{},"235":{},"236":{},"237":{},"238":{},"239":{},"240":{},"241":{},"242":{},"243":{},"244":{},"245":{},"246":{},"247":{},"248":{},"249":{},"250":{},"251":{},"252":{},"253":{},"254":{},"255":{},"256":{},"257":{},"258":{},"259":{},"260":{},"261":{},"262":{},"263":{},"264":{},"265":{},"266":{},"267":{},"268":{},"269":{},"270":{}}}],["keyform",{"_index":397,"name":{"456":{}},"parent":{}}],["keyformstub",{"_index":401,"name":{"461":{}},"parent":{}}],["keystore",{"_index":253,"name":{"293":{},"397":{}},"parent":{}}],["last",{"_index":9,"name":{"8":{}},"parent":{}}],["latitude",{"_index":106,"name":{"98":{}},"parent":{}}],["link",{"_index":665,"name":{"816":{}},"parent":{"817":{},"818":{},"819":{},"820":{},"821":{}}}],["linkparams",{"_index":669,"name":{"819":{}},"parent":{}}],["loadaccounts",{"_index":359,"name":{"417":{}},"parent":{}}],["loadevent",{"_index":319,"name":{"372":{}},"parent":{}}],["loading",{"_index":399,"name":{"458":{}},"parent":{}}],["loadkeyring",{"_index":212,"name":{"220":{},"246":{}},"parent":{}}],["location",{"_index":108,"name":{"100":{}},"parent":{}}],["locations",{"_index":144,"name":{"140":{}},"parent":{}}],["locationservice",{"_index":292,"name":{"341":{},"897":{}},"parent":{}}],["logerror",{"_index":58,"name":{"53":{}},"parent":{}}],["logginginterceptor",{"_index":90,"name":{"82":{},"867":{}},"parent":{}}],["loggingservice",{"_index":254,"name":{"298":{},"348":{},"898":{}},"parent":{}}],["loggingurl",{"_index":638,"name":{"768":{},"783":{},"798":{}},"parent":{}}],["login",{"_index":265,"name":{"314":{},"463":{}},"parent":{}}],["loginresponse",{"_index":266,"name":{"315":{}},"parent":{}}],["loginview",{"_index":267,"name":{"316":{}},"parent":{}}],["loglevel",{"_index":636,"name":{"766":{},"781":{},"796":{}},"parent":{}}],["logout",{"_index":269,"name":{"318":{},"627":{}},"parent":{}}],["longitude",{"_index":107,"name":{"99":{}},"parent":{}}],["low",{"_index":178,"name":{"180":{}},"parent":{}}],["m",{"_index":131,"name":{"125":{}},"parent":{}}],["main",{"_index":652,"name":{"806":{}},"parent":{}}],["matcher",{"_index":36,"name":{"33":{},"459":{},"499":{},"526":{},"562":{},"608":{}},"parent":{"34":{}}}],["matcher.customerrorstatematcher",{"_index":38,"name":{},"parent":{"35":{},"36":{}}}],["mediaquery",{"_index":377,"name":{"436":{}},"parent":{}}],["menuselectiondirective",{"_index":570,"name":{"693":{}},"parent":{}}],["menutoggledirective",{"_index":573,"name":{"697":{}},"parent":{}}],["message",{"_index":625,"name":{"755":{}},"parent":{}}],["meta",{"_index":126,"name":{"119":{},"877":{}},"parent":{}}],["metaresponse",{"_index":129,"name":{"123":{},"878":{}},"parent":{}}],["mockbackendinterceptor",{"_index":66,"name":{"59":{},"854":{}},"parent":{}}],["mockbackendprovider",{"_index":69,"name":{"62":{},"855":{}},"parent":{}}],["module",{"_index":673,"name":{"822":{}},"parent":{"823":{},"824":{},"825":{},"826":{},"827":{},"828":{}}}],["multi",{"_index":74,"name":{"66":{}},"parent":{}}],["mutablekeystore",{"_index":237,"name":{"245":{},"308":{},"887":{}},"parent":{}}],["mutablepgpkeystore",{"_index":210,"name":{"218":{},"886":{}},"parent":{}}],["n",{"_index":117,"name":{"111":{}},"parent":{}}],["name",{"_index":140,"name":{"136":{},"139":{},"142":{},"159":{},"164":{},"188":{}},"parent":{}}],["namesearchform",{"_index":452,"name":{"517":{}},"parent":{}}],["namesearchformstub",{"_index":461,"name":{"528":{}},"parent":{}}],["namesearchloading",{"_index":454,"name":{"519":{}},"parent":{}}],["namesearchsubmitted",{"_index":453,"name":{"518":{}},"parent":{}}],["navigatedto",{"_index":670,"name":{"820":{}},"parent":{}}],["newconversionevent",{"_index":280,"name":{"330":{}},"parent":{}}],["newtransferevent",{"_index":279,"name":{"329":{}},"parent":{}}],["ngafterviewinit",{"_index":564,"name":{"687":{}},"parent":{}}],["ngoninit",{"_index":400,"name":{"460":{},"502":{},"527":{},"549":{},"568":{},"583":{},"609":{},"624":{},"635":{},"647":{},"661":{},"683":{},"715":{},"722":{},"726":{}},"parent":{}}],["nonce",{"_index":609,"name":{"736":{}},"parent":{}}],["oldchain:1",{"_index":105,"name":{"97":{}},"parent":{}}],["onaddresssearch",{"_index":466,"name":{"533":{}},"parent":{}}],["onclick",{"_index":671,"name":{"821":{}},"parent":{}}],["onmenuselect",{"_index":572,"name":{"695":{}},"parent":{}}],["onmenutoggle",{"_index":575,"name":{"699":{}},"parent":{}}],["onnamesearch",{"_index":464,"name":{"531":{}},"parent":{}}],["onphonesearch",{"_index":465,"name":{"532":{}},"parent":{}}],["onresize",{"_index":378,"name":{"437":{}},"parent":{}}],["onsign",{"_index":244,"name":{"281":{},"294":{}},"parent":{}}],["onsubmit",{"_index":402,"name":{"462":{},"570":{},"611":{}},"parent":{}}],["onverify",{"_index":246,"name":{"282":{},"296":{}},"parent":{}}],["opendialog",{"_index":289,"name":{"338":{}},"parent":{}}],["organizationcomponent",{"_index":514,"name":{"604":{}},"parent":{}}],["organizationform",{"_index":516,"name":{"606":{}},"parent":{}}],["organizationformstub",{"_index":517,"name":{"610":{}},"parent":{}}],["owner",{"_index":174,"name":{"176":{}},"parent":{}}],["pagescomponent",{"_index":507,"name":{"597":{}},"parent":{}}],["pagesizeoptions",{"_index":476,"name":{"544":{},"676":{}},"parent":{}}],["pagesmodule",{"_index":511,"name":{"601":{}},"parent":{}}],["pagesroutingmodule",{"_index":504,"name":{"594":{}},"parent":{}}],["paginator",{"_index":477,"name":{"547":{},"581":{},"622":{},"644":{},"681":{}},"parent":{}}],["parammap",{"_index":661,"name":{"813":{}},"parent":{}}],["passwordmatchvalidator",{"_index":42,"name":{"39":{}},"parent":{}}],["passwordtoggledirective",{"_index":387,"name":{"445":{}},"parent":{}}],["patternvalidator",{"_index":44,"name":{"40":{}},"parent":{}}],["personvalidation",{"_index":79,"name":{"70":{},"863":{}},"parent":{}}],["pgpsigner",{"_index":250,"name":{"287":{},"891":{}},"parent":{}}],["phonesearchform",{"_index":455,"name":{"520":{}},"parent":{}}],["phonesearchformstub",{"_index":462,"name":{"529":{}},"parent":{}}],["phonesearchloading",{"_index":457,"name":{"522":{}},"parent":{}}],["phonesearchsubmitted",{"_index":456,"name":{"521":{}},"parent":{}}],["polyfills",{"_index":653,"name":{"807":{}},"parent":{}}],["prepare",{"_index":248,"name":{"284":{},"300":{}},"parent":{}}],["production",{"_index":633,"name":{"764":{},"779":{},"794":{}},"parent":{}}],["products",{"_index":112,"name":{"105":{},"137":{}},"parent":{}}],["provide",{"_index":71,"name":{"64":{}},"parent":{}}],["provider",{"_index":154,"name":{"154":{}},"parent":{}}],["publickeysurl",{"_index":640,"name":{"770":{},"785":{},"800":{}},"parent":{}}],["r",{"_index":613,"name":{"743":{}},"parent":{}}],["ratio.pipe",{"_index":581,"name":{"704":{}},"parent":{"705":{}}}],["ratio.pipe.tokenratiopipe",{"_index":583,"name":{},"parent":{"706":{},"707":{}}}],["readcsv",{"_index":76,"name":{"68":{},"861":{}},"parent":{}}],["readystate",{"_index":276,"name":{"326":{},"435":{}},"parent":{}}],["readystateprocessor",{"_index":278,"name":{"328":{}},"parent":{}}],["readystatetarget",{"_index":275,"name":{"325":{},"434":{}},"parent":{}}],["recipient",{"_index":197,"name":{"202":{}},"parent":{}}],["recipientbloxberglink",{"_index":550,"name":{"659":{}},"parent":{}}],["refreshpaginator",{"_index":480,"name":{"553":{}},"parent":{}}],["registry",{"_index":13,"name":{"11":{},"149":{},"364":{},"370":{},"384":{},"399":{}},"parent":{"12":{}}}],["registry.tokenregistry",{"_index":15,"name":{},"parent":{"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{}}}],["registryaddress",{"_index":644,"name":{"774":{},"789":{},"804":{}},"parent":{}}],["registryservice",{"_index":310,"name":{"360":{}},"parent":{}}],["removekeysforid",{"_index":232,"name":{"240":{},"266":{}},"parent":{}}],["removepublickey",{"_index":234,"name":{"242":{},"268":{}},"parent":{}}],["removepublickeyforid",{"_index":233,"name":{"241":{},"267":{}},"parent":{}}],["reserveratio",{"_index":173,"name":{"175":{}},"parent":{}}],["reserves",{"_index":168,"name":{"169":{}},"parent":{}}],["resetaccountslist",{"_index":362,"name":{"420":{}},"parent":{}}],["resetpin",{"_index":348,"name":{"406":{},"511":{}},"parent":{}}],["resettransactionslist",{"_index":335,"name":{"390":{}},"parent":{}}],["reversetransaction",{"_index":555,"name":{"665":{}},"parent":{}}],["revokeaction",{"_index":356,"name":{"414":{}},"parent":{}}],["role",{"_index":138,"name":{"132":{}},"parent":{}}],["roleguard",{"_index":25,"name":{"26":{},"851":{}},"parent":{}}],["route",{"_index":656,"name":{"809":{}},"parent":{"810":{},"811":{},"812":{},"813":{},"814":{}}}],["routerlinkdirectivestub",{"_index":667,"name":{"817":{},"902":{}},"parent":{}}],["routing.module",{"_index":370,"name":{"427":{},"450":{},"534":{},"571":{},"593":{},"612":{},"636":{},"667":{}},"parent":{"428":{},"451":{},"535":{},"572":{},"594":{},"613":{},"637":{},"668":{}}}],["routing.module.accountsroutingmodule",{"_index":469,"name":{},"parent":{"536":{}}}],["routing.module.adminroutingmodule",{"_index":493,"name":{},"parent":{"573":{}}}],["routing.module.approutingmodule",{"_index":372,"name":{},"parent":{"429":{}}}],["routing.module.authroutingmodule",{"_index":393,"name":{},"parent":{"452":{}}}],["routing.module.pagesroutingmodule",{"_index":505,"name":{},"parent":{"595":{}}}],["routing.module.settingsroutingmodule",{"_index":520,"name":{},"parent":{"614":{}}}],["routing.module.tokensroutingmodule",{"_index":535,"name":{},"parent":{"638":{}}}],["routing.module.transactionsroutingmodule",{"_index":558,"name":{},"parent":{"669":{}}}],["s",{"_index":614,"name":{"744":{}},"parent":{}}],["safepipe",{"_index":577,"name":{"701":{}},"parent":{}}],["saveinfo",{"_index":443,"name":{"508":{}},"parent":{}}],["scan",{"_index":281,"name":{"331":{}},"parent":{}}],["scanfilter",{"_index":151,"name":{"148":{}},"parent":{}}],["search.component",{"_index":449,"name":{"514":{}},"parent":{"515":{}}}],["search.component.accountsearchcomponent",{"_index":451,"name":{},"parent":{"516":{},"517":{},"518":{},"519":{},"520":{},"521":{},"522":{},"523":{},"524":{},"525":{},"526":{},"527":{},"528":{},"529":{},"530":{},"531":{},"532":{},"533":{}}}],["search/account",{"_index":448,"name":{"514":{}},"parent":{"515":{},"516":{},"517":{},"518":{},"519":{},"520":{},"521":{},"522":{},"523":{},"524":{},"525":{},"526":{},"527":{},"528":{},"529":{},"530":{},"531":{},"532":{},"533":{}}}],["searchaccountbyname",{"_index":363,"name":{"421":{}},"parent":{}}],["selection.directive",{"_index":569,"name":{"692":{}},"parent":{"693":{}}}],["selection.directive.menuselectiondirective",{"_index":571,"name":{},"parent":{"694":{},"695":{}}}],["senddebuglevelmessage",{"_index":303,"name":{"353":{}},"parent":{}}],["sender",{"_index":195,"name":{"200":{}},"parent":{}}],["senderbloxberglink",{"_index":549,"name":{"658":{}},"parent":{}}],["senderrorlevelmessage",{"_index":307,"name":{"357":{}},"parent":{}}],["sendfatallevelmessage",{"_index":308,"name":{"358":{}},"parent":{}}],["sendinfolevelmessage",{"_index":304,"name":{"354":{}},"parent":{}}],["sendloglevelmessage",{"_index":305,"name":{"355":{}},"parent":{}}],["sendresponse",{"_index":263,"name":{"312":{}},"parent":{}}],["sendtracelevelmessage",{"_index":302,"name":{"352":{}},"parent":{}}],["sendwarnlevelmessage",{"_index":306,"name":{"356":{}},"parent":{}}],["sentencesforwarninglogging",{"_index":56,"name":{"51":{}},"parent":{}}],["serializebytes",{"_index":622,"name":{"752":{}},"parent":{}}],["serializenumber",{"_index":620,"name":{"750":{}},"parent":{}}],["serializerlp",{"_index":624,"name":{"754":{}},"parent":{}}],["serverloglevel",{"_index":637,"name":{"767":{},"782":{},"797":{}},"parent":{}}],["service",{"_index":681,"name":{"829":{},"833":{},"839":{}},"parent":{"830":{},"831":{},"832":{},"834":{},"835":{},"836":{},"837":{},"838":{},"840":{},"841":{},"842":{},"843":{},"844":{},"845":{},"846":{},"847":{}}}],["sessionlogincount",{"_index":259,"name":{"307":{}},"parent":{}}],["sessiontoken",{"_index":258,"name":{"306":{}},"parent":{}}],["setconversion",{"_index":333,"name":{"388":{},"837":{}},"parent":{}}],["setkey",{"_index":268,"name":{"317":{}},"parent":{}}],["setparammap",{"_index":662,"name":{"814":{}},"parent":{}}],["setsignature",{"_index":626,"name":{"756":{}},"parent":{}}],["setstate",{"_index":261,"name":{"310":{}},"parent":{}}],["settings",{"_index":148,"name":{"145":{},"873":{}},"parent":{}}],["settingscomponent",{"_index":522,"name":{"616":{}},"parent":{}}],["settingsmodule",{"_index":527,"name":{"629":{}},"parent":{}}],["settingsroutingmodule",{"_index":519,"name":{"613":{}},"parent":{}}],["settransaction",{"_index":332,"name":{"387":{},"836":{}},"parent":{}}],["sharedmodule",{"_index":593,"name":{"717":{}},"parent":{}}],["sidebarcomponent",{"_index":596,"name":{"720":{}},"parent":{}}],["sidebarstubcomponent",{"_index":674,"name":{"823":{},"903":{}},"parent":{}}],["sign",{"_index":236,"name":{"244":{},"270":{},"286":{},"302":{}},"parent":{}}],["signable",{"_index":240,"name":{"272":{},"888":{}},"parent":{}}],["signature",{"_index":120,"name":{"114":{},"122":{},"274":{},"292":{},"876":{},"889":{}},"parent":{}}],["signer",{"_index":239,"name":{"271":{},"280":{},"398":{},"890":{}},"parent":{"272":{},"274":{},"280":{},"287":{}}}],["signer.pgpsigner",{"_index":251,"name":{},"parent":{"288":{},"289":{},"290":{},"291":{},"292":{},"293":{},"294":{},"295":{},"296":{},"297":{},"298":{},"299":{},"300":{},"301":{},"302":{}}}],["signer.signable",{"_index":241,"name":{},"parent":{"273":{}}}],["signer.signature",{"_index":242,"name":{},"parent":{"275":{}}}],["signer.signature.__type",{"_index":243,"name":{},"parent":{"276":{},"277":{},"278":{},"279":{}}}],["signer.signer",{"_index":245,"name":{},"parent":{"281":{},"282":{},"283":{},"284":{},"285":{},"286":{}}}],["signeraddress",{"_index":6,"name":{"5":{},"16":{}},"parent":{}}],["sort",{"_index":478,"name":{"548":{},"582":{},"623":{},"645":{},"682":{}},"parent":{}}],["sourcetoken",{"_index":203,"name":{"211":{}},"parent":{}}],["staff",{"_index":156,"name":{"156":{},"880":{}},"parent":{}}],["state",{"_index":35,"name":{"33":{}},"parent":{"34":{},"35":{},"36":{}}}],["status",{"_index":53,"name":{"48":{}},"parent":{}}],["store",{"_index":209,"name":{"217":{}},"parent":{"218":{},"245":{}}}],["store.mutablekeystore",{"_index":238,"name":{},"parent":{"246":{},"247":{},"248":{},"249":{},"250":{},"251":{},"252":{},"253":{},"254":{},"255":{},"256":{},"257":{},"258":{},"259":{},"260":{},"261":{},"262":{},"263":{},"264":{},"265":{},"266":{},"267":{},"268":{},"269":{},"270":{}}}],["store.mutablepgpkeystore",{"_index":211,"name":{},"parent":{"219":{},"220":{},"221":{},"222":{},"223":{},"224":{},"225":{},"226":{},"227":{},"228":{},"229":{},"230":{},"231":{},"232":{},"233":{},"234":{},"235":{},"236":{},"237":{},"238":{},"239":{},"240":{},"241":{},"242":{},"243":{},"244":{}}}],["stringtovalue",{"_index":628,"name":{"758":{}},"parent":{}}],["strip0x",{"_index":604,"name":{"730":{}},"parent":{}}],["stub",{"_index":657,"name":{"809":{},"816":{},"822":{},"829":{},"833":{},"839":{}},"parent":{"810":{},"817":{},"823":{},"825":{},"827":{},"830":{},"834":{},"840":{}}}],["stub.activatedroutestub",{"_index":659,"name":{},"parent":{"811":{},"812":{},"813":{},"814":{}}}],["stub.footerstubcomponent",{"_index":679,"name":{},"parent":{"828":{}}}],["stub.routerlinkdirectivestub",{"_index":668,"name":{},"parent":{"818":{},"819":{},"820":{},"821":{}}}],["stub.sidebarstubcomponent",{"_index":675,"name":{},"parent":{"824":{}}}],["stub.tokenservicestub",{"_index":683,"name":{},"parent":{"831":{},"832":{}}}],["stub.topbarstubcomponent",{"_index":677,"name":{},"parent":{"826":{}}}],["stub.transactionservicestub",{"_index":687,"name":{},"parent":{"835":{},"836":{},"837":{},"838":{}}}],["stub.userservicestub",{"_index":690,"name":{},"parent":{"841":{},"842":{},"843":{},"844":{},"845":{},"846":{},"847":{}}}],["subject",{"_index":660,"name":{"812":{}},"parent":{}}],["submitted",{"_index":398,"name":{"457":{},"500":{},"563":{},"607":{}},"parent":{}}],["success",{"_index":188,"name":{"193":{}},"parent":{}}],["sum",{"_index":28,"name":{"29":{}},"parent":{"30":{}}}],["supply",{"_index":166,"name":{"167":{}},"parent":{}}],["switchwindows",{"_index":403,"name":{"464":{}},"parent":{}}],["symbol",{"_index":164,"name":{"165":{},"189":{}},"parent":{}}],["sync.service",{"_index":272,"name":{"322":{}},"parent":{"323":{}}}],["sync.service.blocksyncservice",{"_index":274,"name":{},"parent":{"324":{},"325":{},"326":{},"327":{},"328":{},"329":{},"330":{},"331":{},"332":{}}}],["tag",{"_index":159,"name":{"160":{}},"parent":{}}],["tel",{"_index":118,"name":{"112":{}},"parent":{}}],["test",{"_index":654,"name":{"808":{}},"parent":{}}],["testing",{"_index":663,"name":{"815":{}},"parent":{"901":{},"902":{},"903":{},"904":{},"905":{},"906":{},"907":{},"908":{}}}],["testing/activated",{"_index":655,"name":{"809":{}},"parent":{"810":{},"811":{},"812":{},"813":{},"814":{}}}],["testing/router",{"_index":664,"name":{"816":{}},"parent":{"817":{},"818":{},"819":{},"820":{},"821":{}}}],["testing/shared",{"_index":672,"name":{"822":{}},"parent":{"823":{},"824":{},"825":{},"826":{},"827":{},"828":{}}}],["testing/token",{"_index":680,"name":{"829":{}},"parent":{"830":{},"831":{},"832":{}}}],["testing/transaction",{"_index":685,"name":{"833":{}},"parent":{"834":{},"835":{},"836":{},"837":{},"838":{}}}],["testing/user",{"_index":688,"name":{"839":{}},"parent":{"840":{},"841":{},"842":{},"843":{},"844":{},"845":{},"846":{},"847":{}}}],["timestamp",{"_index":189,"name":{"194":{}},"parent":{}}],["title",{"_index":376,"name":{"433":{}},"parent":{}}],["to",{"_index":196,"name":{"201":{},"739":{}},"parent":{}}],["toggle.directive",{"_index":386,"name":{"444":{},"696":{}},"parent":{"445":{},"697":{}}}],["toggle.directive.menutoggledirective",{"_index":574,"name":{},"parent":{"698":{},"699":{}}}],["toggle.directive.passwordtoggledirective",{"_index":388,"name":{},"parent":{"446":{},"447":{},"448":{},"449":{}}}],["toggledisplay",{"_index":404,"name":{"465":{}},"parent":{}}],["togglepasswordvisibility",{"_index":390,"name":{"449":{}},"parent":{}}],["tohex",{"_index":603,"name":{"729":{}},"parent":{}}],["token",{"_index":162,"name":{"163":{},"203":{},"634":{},"881":{}},"parent":{}}],["tokendetailscomponent",{"_index":531,"name":{"632":{}},"parent":{}}],["tokenratiopipe",{"_index":582,"name":{"705":{}},"parent":{}}],["tokenregistry",{"_index":14,"name":{"12":{},"371":{},"849":{}},"parent":{}}],["tokens",{"_index":540,"name":{"646":{}},"parent":{}}],["tokenscomponent",{"_index":537,"name":{"640":{}},"parent":{}}],["tokenservice",{"_index":317,"name":{"368":{},"895":{}},"parent":{}}],["tokenservicestub",{"_index":682,"name":{"830":{},"907":{}},"parent":{}}],["tokensmodule",{"_index":543,"name":{"652":{}},"parent":{}}],["tokensroutingmodule",{"_index":534,"name":{"637":{}},"parent":{}}],["topbarcomponent",{"_index":599,"name":{"724":{}},"parent":{}}],["topbarstubcomponent",{"_index":676,"name":{"825":{},"904":{}},"parent":{}}],["totalaccounts",{"_index":10,"name":{"9":{}},"parent":{}}],["totaltokens",{"_index":18,"name":{"19":{}},"parent":{}}],["tovalue",{"_index":204,"name":{"212":{},"760":{}},"parent":{}}],["trader",{"_index":205,"name":{"213":{}},"parent":{}}],["traderbloxberglink",{"_index":551,"name":{"660":{}},"parent":{}}],["transaction",{"_index":192,"name":{"197":{},"493":{},"657":{},"678":{},"871":{}},"parent":{}}],["transactiondatasource",{"_index":562,"name":{"673":{}},"parent":{}}],["transactiondetailscomponent",{"_index":547,"name":{"655":{}},"parent":{}}],["transactiondisplayedcolumns",{"_index":563,"name":{"674":{}},"parent":{}}],["transactionlist",{"_index":327,"name":{"380":{}},"parent":{}}],["transactions",{"_index":326,"name":{"379":{},"494":{},"677":{}},"parent":{}}],["transactionscomponent",{"_index":560,"name":{"671":{}},"parent":{}}],["transactionsdatasource",{"_index":413,"name":{"472":{}},"parent":{}}],["transactionsdefaultpagesize",{"_index":415,"name":{"474":{}},"parent":{}}],["transactionsdisplayedcolumns",{"_index":414,"name":{"473":{}},"parent":{}}],["transactionservice",{"_index":324,"name":{"377":{},"893":{}},"parent":{}}],["transactionservicestub",{"_index":686,"name":{"834":{},"908":{}},"parent":{}}],["transactionsmodule",{"_index":566,"name":{"690":{}},"parent":{}}],["transactionspagesizeoptions",{"_index":416,"name":{"475":{}},"parent":{}}],["transactionsroutingmodule",{"_index":557,"name":{"668":{}},"parent":{}}],["transactionssubject",{"_index":328,"name":{"381":{}},"parent":{}}],["transactionstype",{"_index":433,"name":{"495":{},"679":{}},"parent":{}}],["transactionstypes",{"_index":435,"name":{"497":{},"680":{}},"parent":{}}],["transactiontablepaginator",{"_index":417,"name":{"476":{}},"parent":{}}],["transactiontablesort",{"_index":418,"name":{"477":{}},"parent":{}}],["transferrequest",{"_index":337,"name":{"392":{}},"parent":{}}],["transform",{"_index":579,"name":{"703":{},"707":{}},"parent":{}}],["trusteddeclaratoraddress",{"_index":645,"name":{"775":{},"790":{},"805":{}},"parent":{}}],["trustedusers",{"_index":525,"name":{"621":{}},"parent":{}}],["tx",{"_index":185,"name":{"190":{},"204":{},"215":{},"734":{},"870":{},"900":{}},"parent":{}}],["txhash",{"_index":190,"name":{"195":{}},"parent":{}}],["txhelper",{"_index":152,"name":{"150":{}},"parent":{}}],["txindex",{"_index":191,"name":{"196":{}},"parent":{}}],["txtoken",{"_index":183,"name":{"185":{},"869":{}},"parent":{}}],["type",{"_index":98,"name":{"90":{},"206":{}},"parent":{}}],["updatemeta",{"_index":352,"name":{"410":{}},"parent":{}}],["url",{"_index":509,"name":{"599":{}},"parent":{}}],["useclass",{"_index":73,"name":{"65":{}},"parent":{}}],["user",{"_index":137,"name":{"131":{},"214":{}},"parent":{}}],["userdatasource",{"_index":419,"name":{"478":{}},"parent":{}}],["userdisplayedcolumns",{"_index":420,"name":{"479":{}},"parent":{}}],["userid",{"_index":160,"name":{"161":{}},"parent":{}}],["userinfo",{"_index":329,"name":{"382":{}},"parent":{}}],["users",{"_index":691,"name":{"842":{}},"parent":{}}],["usersdefaultpagesize",{"_index":421,"name":{"480":{}},"parent":{}}],["userservice",{"_index":339,"name":{"394":{},"894":{}},"parent":{}}],["userservicestub",{"_index":689,"name":{"840":{},"906":{}},"parent":{}}],["userspagesizeoptions",{"_index":422,"name":{"481":{}},"parent":{}}],["usertablepaginator",{"_index":423,"name":{"482":{}},"parent":{}}],["usertablesort",{"_index":424,"name":{"483":{}},"parent":{}}],["v",{"_index":612,"name":{"742":{}},"parent":{}}],["validation",{"_index":78,"name":{"69":{}},"parent":{"70":{},"71":{}}}],["value",{"_index":198,"name":{"205":{},"740":{}},"parent":{}}],["vcard",{"_index":114,"name":{"107":{}},"parent":{}}],["vcardvalidation",{"_index":80,"name":{"71":{},"864":{}},"parent":{}}],["verify",{"_index":249,"name":{"285":{},"301":{}},"parent":{}}],["version",{"_index":119,"name":{"113":{}},"parent":{}}],["viewaccount",{"_index":441,"name":{"506":{},"551":{}},"parent":{}}],["viewrecipient",{"_index":553,"name":{"663":{}},"parent":{}}],["viewsender",{"_index":552,"name":{"662":{}},"parent":{}}],["viewtoken",{"_index":541,"name":{"649":{}},"parent":{}}],["viewtrader",{"_index":554,"name":{"664":{}},"parent":{}}],["viewtransaction",{"_index":440,"name":{"505":{},"684":{}},"parent":{}}],["w3",{"_index":150,"name":{"147":{},"151":{},"874":{}},"parent":{}}],["web3",{"_index":312,"name":{"362":{},"383":{}},"parent":{}}],["web3provider",{"_index":642,"name":{"772":{},"787":{},"802":{}},"parent":{}}],["weight",{"_index":171,"name":{"173":{}},"parent":{}}],["wrap",{"_index":358,"name":{"416":{}},"parent":{}}],["write",{"_index":621,"name":{"751":{}},"parent":{}}]],"pipeline":[]}} \ No newline at end of file +window.searchData = {"kinds":{"1":"Module","32":"Variable","64":"Function","128":"Class","256":"Interface","512":"Constructor","1024":"Property","2048":"Method","65536":"Type literal","262144":"Accessor","4194304":"Type alias","16777216":"Reference"},"rows":[{"id":0,"kind":1,"name":"app/_eth/accountIndex","url":"modules/app__eth_accountindex.html","classes":"tsd-kind-module"},{"id":1,"kind":128,"name":"AccountIndex","url":"classes/app__eth_accountindex.accountindex.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_eth/accountIndex"},{"id":2,"kind":512,"name":"constructor","url":"classes/app__eth_accountindex.accountindex.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_eth/accountIndex.AccountIndex"},{"id":3,"kind":1024,"name":"contract","url":"classes/app__eth_accountindex.accountindex.html#contract","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_eth/accountIndex.AccountIndex"},{"id":4,"kind":1024,"name":"contractAddress","url":"classes/app__eth_accountindex.accountindex.html#contractaddress","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_eth/accountIndex.AccountIndex"},{"id":5,"kind":1024,"name":"signerAddress","url":"classes/app__eth_accountindex.accountindex.html#signeraddress","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_eth/accountIndex.AccountIndex"},{"id":6,"kind":2048,"name":"addToAccountRegistry","url":"classes/app__eth_accountindex.accountindex.html#addtoaccountregistry","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_eth/accountIndex.AccountIndex"},{"id":7,"kind":2048,"name":"haveAccount","url":"classes/app__eth_accountindex.accountindex.html#haveaccount","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_eth/accountIndex.AccountIndex"},{"id":8,"kind":2048,"name":"last","url":"classes/app__eth_accountindex.accountindex.html#last","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_eth/accountIndex.AccountIndex"},{"id":9,"kind":2048,"name":"totalAccounts","url":"classes/app__eth_accountindex.accountindex.html#totalaccounts","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_eth/accountIndex.AccountIndex"},{"id":10,"kind":1,"name":"app/_eth","url":"modules/app__eth.html","classes":"tsd-kind-module"},{"id":11,"kind":1,"name":"app/_eth/token-registry","url":"modules/app__eth_token_registry.html","classes":"tsd-kind-module"},{"id":12,"kind":128,"name":"TokenRegistry","url":"classes/app__eth_token_registry.tokenregistry.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_eth/token-registry"},{"id":13,"kind":512,"name":"constructor","url":"classes/app__eth_token_registry.tokenregistry.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_eth/token-registry.TokenRegistry"},{"id":14,"kind":1024,"name":"contract","url":"classes/app__eth_token_registry.tokenregistry.html#contract","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_eth/token-registry.TokenRegistry"},{"id":15,"kind":1024,"name":"contractAddress","url":"classes/app__eth_token_registry.tokenregistry.html#contractaddress","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_eth/token-registry.TokenRegistry"},{"id":16,"kind":1024,"name":"signerAddress","url":"classes/app__eth_token_registry.tokenregistry.html#signeraddress","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_eth/token-registry.TokenRegistry"},{"id":17,"kind":2048,"name":"addressOf","url":"classes/app__eth_token_registry.tokenregistry.html#addressof","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_eth/token-registry.TokenRegistry"},{"id":18,"kind":2048,"name":"entry","url":"classes/app__eth_token_registry.tokenregistry.html#entry","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_eth/token-registry.TokenRegistry"},{"id":19,"kind":2048,"name":"totalTokens","url":"classes/app__eth_token_registry.tokenregistry.html#totaltokens","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_eth/token-registry.TokenRegistry"},{"id":20,"kind":1,"name":"app/_guards/auth.guard","url":"modules/app__guards_auth_guard.html","classes":"tsd-kind-module"},{"id":21,"kind":128,"name":"AuthGuard","url":"classes/app__guards_auth_guard.authguard.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_guards/auth.guard"},{"id":22,"kind":512,"name":"constructor","url":"classes/app__guards_auth_guard.authguard.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_guards/auth.guard.AuthGuard"},{"id":23,"kind":2048,"name":"canActivate","url":"classes/app__guards_auth_guard.authguard.html#canactivate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_guards/auth.guard.AuthGuard"},{"id":24,"kind":1,"name":"app/_guards","url":"modules/app__guards.html","classes":"tsd-kind-module"},{"id":25,"kind":1,"name":"app/_guards/role.guard","url":"modules/app__guards_role_guard.html","classes":"tsd-kind-module"},{"id":26,"kind":128,"name":"RoleGuard","url":"classes/app__guards_role_guard.roleguard.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_guards/role.guard"},{"id":27,"kind":512,"name":"constructor","url":"classes/app__guards_role_guard.roleguard.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_guards/role.guard.RoleGuard"},{"id":28,"kind":2048,"name":"canActivate","url":"classes/app__guards_role_guard.roleguard.html#canactivate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_guards/role.guard.RoleGuard"},{"id":29,"kind":1,"name":"app/_helpers/array-sum","url":"modules/app__helpers_array_sum.html","classes":"tsd-kind-module"},{"id":30,"kind":64,"name":"arraySum","url":"modules/app__helpers_array_sum.html#arraysum","classes":"tsd-kind-function tsd-parent-kind-module","parent":"app/_helpers/array-sum"},{"id":31,"kind":1,"name":"app/_helpers/clipboard-copy","url":"modules/app__helpers_clipboard_copy.html","classes":"tsd-kind-module"},{"id":32,"kind":64,"name":"copyToClipboard","url":"modules/app__helpers_clipboard_copy.html#copytoclipboard","classes":"tsd-kind-function tsd-parent-kind-module","parent":"app/_helpers/clipboard-copy"},{"id":33,"kind":1,"name":"app/_helpers/custom-error-state-matcher","url":"modules/app__helpers_custom_error_state_matcher.html","classes":"tsd-kind-module"},{"id":34,"kind":128,"name":"CustomErrorStateMatcher","url":"classes/app__helpers_custom_error_state_matcher.customerrorstatematcher.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_helpers/custom-error-state-matcher"},{"id":35,"kind":512,"name":"constructor","url":"classes/app__helpers_custom_error_state_matcher.customerrorstatematcher.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_helpers/custom-error-state-matcher.CustomErrorStateMatcher"},{"id":36,"kind":2048,"name":"isErrorState","url":"classes/app__helpers_custom_error_state_matcher.customerrorstatematcher.html#iserrorstate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_helpers/custom-error-state-matcher.CustomErrorStateMatcher"},{"id":37,"kind":1,"name":"app/_helpers/custom.validator","url":"modules/app__helpers_custom_validator.html","classes":"tsd-kind-module"},{"id":38,"kind":128,"name":"CustomValidator","url":"classes/app__helpers_custom_validator.customvalidator.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_helpers/custom.validator"},{"id":39,"kind":2048,"name":"passwordMatchValidator","url":"classes/app__helpers_custom_validator.customvalidator.html#passwordmatchvalidator","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"app/_helpers/custom.validator.CustomValidator"},{"id":40,"kind":2048,"name":"patternValidator","url":"classes/app__helpers_custom_validator.customvalidator.html#patternvalidator","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"app/_helpers/custom.validator.CustomValidator"},{"id":41,"kind":512,"name":"constructor","url":"classes/app__helpers_custom_validator.customvalidator.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_helpers/custom.validator.CustomValidator"},{"id":42,"kind":1,"name":"app/_helpers/export-csv","url":"modules/app__helpers_export_csv.html","classes":"tsd-kind-module"},{"id":43,"kind":64,"name":"exportCsv","url":"modules/app__helpers_export_csv.html#exportcsv","classes":"tsd-kind-function tsd-parent-kind-module","parent":"app/_helpers/export-csv"},{"id":44,"kind":1,"name":"app/_helpers/global-error-handler","url":"modules/app__helpers_global_error_handler.html","classes":"tsd-kind-module"},{"id":45,"kind":128,"name":"HttpError","url":"classes/app__helpers_global_error_handler.httperror.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_helpers/global-error-handler"},{"id":46,"kind":65536,"name":"__type","url":"classes/app__helpers_global_error_handler.httperror.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-class","parent":"app/_helpers/global-error-handler.HttpError"},{"id":47,"kind":512,"name":"constructor","url":"classes/app__helpers_global_error_handler.httperror.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"app/_helpers/global-error-handler.HttpError"},{"id":48,"kind":1024,"name":"status","url":"classes/app__helpers_global_error_handler.httperror.html#status","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_helpers/global-error-handler.HttpError"},{"id":49,"kind":128,"name":"GlobalErrorHandler","url":"classes/app__helpers_global_error_handler.globalerrorhandler.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_helpers/global-error-handler"},{"id":50,"kind":512,"name":"constructor","url":"classes/app__helpers_global_error_handler.globalerrorhandler.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"app/_helpers/global-error-handler.GlobalErrorHandler"},{"id":51,"kind":1024,"name":"sentencesForWarningLogging","url":"classes/app__helpers_global_error_handler.globalerrorhandler.html#sentencesforwarninglogging","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"app/_helpers/global-error-handler.GlobalErrorHandler"},{"id":52,"kind":2048,"name":"handleError","url":"classes/app__helpers_global_error_handler.globalerrorhandler.html#handleerror","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"app/_helpers/global-error-handler.GlobalErrorHandler"},{"id":53,"kind":2048,"name":"isWarning","url":"classes/app__helpers_global_error_handler.globalerrorhandler.html#iswarning","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"app/_helpers/global-error-handler.GlobalErrorHandler"},{"id":54,"kind":2048,"name":"logError","url":"classes/app__helpers_global_error_handler.globalerrorhandler.html#logerror","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_helpers/global-error-handler.GlobalErrorHandler"},{"id":55,"kind":1,"name":"app/_helpers/http-getter","url":"modules/app__helpers_http_getter.html","classes":"tsd-kind-module"},{"id":56,"kind":64,"name":"HttpGetter","url":"modules/app__helpers_http_getter.html#httpgetter","classes":"tsd-kind-function tsd-parent-kind-module","parent":"app/_helpers/http-getter"},{"id":57,"kind":1,"name":"app/_helpers","url":"modules/app__helpers.html","classes":"tsd-kind-module"},{"id":58,"kind":1,"name":"app/_helpers/mock-backend","url":"modules/app__helpers_mock_backend.html","classes":"tsd-kind-module"},{"id":59,"kind":128,"name":"MockBackendInterceptor","url":"classes/app__helpers_mock_backend.mockbackendinterceptor.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_helpers/mock-backend"},{"id":60,"kind":512,"name":"constructor","url":"classes/app__helpers_mock_backend.mockbackendinterceptor.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_helpers/mock-backend.MockBackendInterceptor"},{"id":61,"kind":2048,"name":"intercept","url":"classes/app__helpers_mock_backend.mockbackendinterceptor.html#intercept","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_helpers/mock-backend.MockBackendInterceptor"},{"id":62,"kind":32,"name":"MockBackendProvider","url":"modules/app__helpers_mock_backend.html#mockbackendprovider","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"app/_helpers/mock-backend"},{"id":63,"kind":65536,"name":"__type","url":"modules/app__helpers_mock_backend.html#mockbackendprovider.__type","classes":"tsd-kind-type-literal tsd-parent-kind-variable","parent":"app/_helpers/mock-backend.MockBackendProvider"},{"id":64,"kind":1024,"name":"provide","url":"modules/app__helpers_mock_backend.html#mockbackendprovider.__type.provide","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_helpers/mock-backend.MockBackendProvider.__type"},{"id":65,"kind":1024,"name":"useClass","url":"modules/app__helpers_mock_backend.html#mockbackendprovider.__type.useclass","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_helpers/mock-backend.MockBackendProvider.__type"},{"id":66,"kind":1024,"name":"multi","url":"modules/app__helpers_mock_backend.html#mockbackendprovider.__type.multi","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_helpers/mock-backend.MockBackendProvider.__type"},{"id":67,"kind":1,"name":"app/_helpers/read-csv","url":"modules/app__helpers_read_csv.html","classes":"tsd-kind-module"},{"id":68,"kind":64,"name":"readCsv","url":"modules/app__helpers_read_csv.html#readcsv","classes":"tsd-kind-function tsd-parent-kind-module","parent":"app/_helpers/read-csv"},{"id":69,"kind":1,"name":"app/_helpers/schema-validation","url":"modules/app__helpers_schema_validation.html","classes":"tsd-kind-module"},{"id":70,"kind":64,"name":"personValidation","url":"modules/app__helpers_schema_validation.html#personvalidation","classes":"tsd-kind-function tsd-parent-kind-module","parent":"app/_helpers/schema-validation"},{"id":71,"kind":64,"name":"vcardValidation","url":"modules/app__helpers_schema_validation.html#vcardvalidation","classes":"tsd-kind-function tsd-parent-kind-module","parent":"app/_helpers/schema-validation"},{"id":72,"kind":1,"name":"app/_interceptors/error.interceptor","url":"modules/app__interceptors_error_interceptor.html","classes":"tsd-kind-module"},{"id":73,"kind":128,"name":"ErrorInterceptor","url":"classes/app__interceptors_error_interceptor.errorinterceptor.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_interceptors/error.interceptor"},{"id":74,"kind":512,"name":"constructor","url":"classes/app__interceptors_error_interceptor.errorinterceptor.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_interceptors/error.interceptor.ErrorInterceptor"},{"id":75,"kind":2048,"name":"intercept","url":"classes/app__interceptors_error_interceptor.errorinterceptor.html#intercept","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_interceptors/error.interceptor.ErrorInterceptor"},{"id":76,"kind":1,"name":"app/_interceptors/http-config.interceptor","url":"modules/app__interceptors_http_config_interceptor.html","classes":"tsd-kind-module"},{"id":77,"kind":128,"name":"HttpConfigInterceptor","url":"classes/app__interceptors_http_config_interceptor.httpconfiginterceptor.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_interceptors/http-config.interceptor"},{"id":78,"kind":512,"name":"constructor","url":"classes/app__interceptors_http_config_interceptor.httpconfiginterceptor.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_interceptors/http-config.interceptor.HttpConfigInterceptor"},{"id":79,"kind":2048,"name":"intercept","url":"classes/app__interceptors_http_config_interceptor.httpconfiginterceptor.html#intercept","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_interceptors/http-config.interceptor.HttpConfigInterceptor"},{"id":80,"kind":1,"name":"app/_interceptors","url":"modules/app__interceptors.html","classes":"tsd-kind-module"},{"id":81,"kind":1,"name":"app/_interceptors/logging.interceptor","url":"modules/app__interceptors_logging_interceptor.html","classes":"tsd-kind-module"},{"id":82,"kind":128,"name":"LoggingInterceptor","url":"classes/app__interceptors_logging_interceptor.logginginterceptor.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_interceptors/logging.interceptor"},{"id":83,"kind":512,"name":"constructor","url":"classes/app__interceptors_logging_interceptor.logginginterceptor.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_interceptors/logging.interceptor.LoggingInterceptor"},{"id":84,"kind":2048,"name":"intercept","url":"classes/app__interceptors_logging_interceptor.logginginterceptor.html#intercept","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_interceptors/logging.interceptor.LoggingInterceptor"},{"id":85,"kind":1,"name":"app/_models/account","url":"modules/app__models_account.html","classes":"tsd-kind-module"},{"id":86,"kind":256,"name":"AccountDetails","url":"interfaces/app__models_account.accountdetails.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/account"},{"id":87,"kind":1024,"name":"date_registered","url":"interfaces/app__models_account.accountdetails.html#date_registered","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":88,"kind":1024,"name":"gender","url":"interfaces/app__models_account.accountdetails.html#gender","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":89,"kind":1024,"name":"age","url":"interfaces/app__models_account.accountdetails.html#age","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":90,"kind":1024,"name":"type","url":"interfaces/app__models_account.accountdetails.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":91,"kind":1024,"name":"balance","url":"interfaces/app__models_account.accountdetails.html#balance","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":92,"kind":1024,"name":"identities","url":"interfaces/app__models_account.accountdetails.html#identities","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":93,"kind":65536,"name":"__type","url":"interfaces/app__models_account.accountdetails.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":94,"kind":1024,"name":"evm","url":"interfaces/app__models_account.accountdetails.html#__type.evm","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":95,"kind":65536,"name":"__type","url":"interfaces/app__models_account.accountdetails.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":96,"kind":1024,"name":"bloxberg:8996","url":"interfaces/app__models_account.accountdetails.html#__type.__type-1.bloxberg_8996","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type.__type"},{"id":97,"kind":1024,"name":"oldchain:1","url":"interfaces/app__models_account.accountdetails.html#__type.__type-1.oldchain_1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type.__type"},{"id":98,"kind":1024,"name":"latitude","url":"interfaces/app__models_account.accountdetails.html#__type.latitude","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":99,"kind":1024,"name":"longitude","url":"interfaces/app__models_account.accountdetails.html#__type.longitude","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":100,"kind":1024,"name":"location","url":"interfaces/app__models_account.accountdetails.html#location","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":101,"kind":65536,"name":"__type","url":"interfaces/app__models_account.accountdetails.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":102,"kind":1024,"name":"area","url":"interfaces/app__models_account.accountdetails.html#__type-2.area","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":103,"kind":1024,"name":"area_name","url":"interfaces/app__models_account.accountdetails.html#__type-2.area_name","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":104,"kind":1024,"name":"area_type","url":"interfaces/app__models_account.accountdetails.html#__type-2.area_type","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":105,"kind":1024,"name":"products","url":"interfaces/app__models_account.accountdetails.html#products","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":106,"kind":1024,"name":"category","url":"interfaces/app__models_account.accountdetails.html#category","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":107,"kind":1024,"name":"vcard","url":"interfaces/app__models_account.accountdetails.html#vcard","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":108,"kind":65536,"name":"__type","url":"interfaces/app__models_account.accountdetails.html#__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":109,"kind":1024,"name":"email","url":"interfaces/app__models_account.accountdetails.html#__type-3.email","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":110,"kind":1024,"name":"fn","url":"interfaces/app__models_account.accountdetails.html#__type-3.fn","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":111,"kind":1024,"name":"n","url":"interfaces/app__models_account.accountdetails.html#__type-3.n","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":112,"kind":1024,"name":"tel","url":"interfaces/app__models_account.accountdetails.html#__type-3.tel","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":113,"kind":1024,"name":"version","url":"interfaces/app__models_account.accountdetails.html#__type-3.version","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":114,"kind":256,"name":"Signature","url":"interfaces/app__models_account.signature.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/account"},{"id":115,"kind":1024,"name":"algo","url":"interfaces/app__models_account.signature.html#algo","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.Signature"},{"id":116,"kind":1024,"name":"data","url":"interfaces/app__models_account.signature.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.Signature"},{"id":117,"kind":1024,"name":"digest","url":"interfaces/app__models_account.signature.html#digest","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.Signature"},{"id":118,"kind":1024,"name":"engine","url":"interfaces/app__models_account.signature.html#engine","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.Signature"},{"id":119,"kind":256,"name":"Meta","url":"interfaces/app__models_account.meta.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/account"},{"id":120,"kind":1024,"name":"data","url":"interfaces/app__models_account.meta.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.Meta"},{"id":121,"kind":1024,"name":"id","url":"interfaces/app__models_account.meta.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.Meta"},{"id":122,"kind":1024,"name":"signature","url":"interfaces/app__models_account.meta.html#signature","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.Meta"},{"id":123,"kind":256,"name":"MetaResponse","url":"interfaces/app__models_account.metaresponse.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/account"},{"id":124,"kind":1024,"name":"id","url":"interfaces/app__models_account.metaresponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.MetaResponse"},{"id":125,"kind":1024,"name":"m","url":"interfaces/app__models_account.metaresponse.html#m","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.MetaResponse"},{"id":126,"kind":32,"name":"defaultAccount","url":"modules/app__models_account.html#defaultaccount","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"app/_models/account"},{"id":127,"kind":1,"name":"app/_models","url":"modules/app__models.html","classes":"tsd-kind-module"},{"id":128,"kind":1,"name":"app/_models/mappings","url":"modules/app__models_mappings.html","classes":"tsd-kind-module"},{"id":129,"kind":256,"name":"Action","url":"interfaces/app__models_mappings.action.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/mappings"},{"id":130,"kind":1024,"name":"id","url":"interfaces/app__models_mappings.action.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/mappings.Action"},{"id":131,"kind":1024,"name":"user","url":"interfaces/app__models_mappings.action.html#user","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/mappings.Action"},{"id":132,"kind":1024,"name":"role","url":"interfaces/app__models_mappings.action.html#role","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/mappings.Action"},{"id":133,"kind":1024,"name":"action","url":"interfaces/app__models_mappings.action.html#action","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/mappings.Action"},{"id":134,"kind":1024,"name":"approval","url":"interfaces/app__models_mappings.action.html#approval","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/mappings.Action"},{"id":135,"kind":256,"name":"Category","url":"interfaces/app__models_mappings.category.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/mappings"},{"id":136,"kind":1024,"name":"name","url":"interfaces/app__models_mappings.category.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/mappings.Category"},{"id":137,"kind":1024,"name":"products","url":"interfaces/app__models_mappings.category.html#products","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/mappings.Category"},{"id":138,"kind":256,"name":"AreaName","url":"interfaces/app__models_mappings.areaname.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/mappings"},{"id":139,"kind":1024,"name":"name","url":"interfaces/app__models_mappings.areaname.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/mappings.AreaName"},{"id":140,"kind":1024,"name":"locations","url":"interfaces/app__models_mappings.areaname.html#locations","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/mappings.AreaName"},{"id":141,"kind":256,"name":"AreaType","url":"interfaces/app__models_mappings.areatype.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/mappings"},{"id":142,"kind":1024,"name":"name","url":"interfaces/app__models_mappings.areatype.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/mappings.AreaType"},{"id":143,"kind":1024,"name":"area","url":"interfaces/app__models_mappings.areatype.html#area","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/mappings.AreaType"},{"id":144,"kind":1,"name":"app/_models/settings","url":"modules/app__models_settings.html","classes":"tsd-kind-module"},{"id":145,"kind":128,"name":"Settings","url":"classes/app__models_settings.settings.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_models/settings"},{"id":146,"kind":512,"name":"constructor","url":"classes/app__models_settings.settings.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_models/settings.Settings"},{"id":147,"kind":1024,"name":"w3","url":"classes/app__models_settings.settings.html#w3","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/settings.Settings"},{"id":148,"kind":1024,"name":"scanFilter","url":"classes/app__models_settings.settings.html#scanfilter","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/settings.Settings"},{"id":149,"kind":1024,"name":"registry","url":"classes/app__models_settings.settings.html#registry","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/settings.Settings"},{"id":150,"kind":1024,"name":"txHelper","url":"classes/app__models_settings.settings.html#txhelper","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/settings.Settings"},{"id":151,"kind":128,"name":"W3","url":"classes/app__models_settings.w3.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_models/settings"},{"id":152,"kind":512,"name":"constructor","url":"classes/app__models_settings.w3.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_models/settings.W3"},{"id":153,"kind":1024,"name":"engine","url":"classes/app__models_settings.w3.html#engine","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/settings.W3"},{"id":154,"kind":1024,"name":"provider","url":"classes/app__models_settings.w3.html#provider","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/settings.W3"},{"id":155,"kind":1,"name":"app/_models/staff","url":"modules/app__models_staff.html","classes":"tsd-kind-module"},{"id":156,"kind":256,"name":"Staff","url":"interfaces/app__models_staff.staff.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/staff"},{"id":157,"kind":1024,"name":"comment","url":"interfaces/app__models_staff.staff.html#comment","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/staff.Staff"},{"id":158,"kind":1024,"name":"email","url":"interfaces/app__models_staff.staff.html#email","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/staff.Staff"},{"id":159,"kind":1024,"name":"name","url":"interfaces/app__models_staff.staff.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/staff.Staff"},{"id":160,"kind":1024,"name":"tag","url":"interfaces/app__models_staff.staff.html#tag","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/staff.Staff"},{"id":161,"kind":1024,"name":"userid","url":"interfaces/app__models_staff.staff.html#userid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/staff.Staff"},{"id":162,"kind":1,"name":"app/_models/token","url":"modules/app__models_token.html","classes":"tsd-kind-module"},{"id":163,"kind":256,"name":"Token","url":"interfaces/app__models_token.token.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/token"},{"id":164,"kind":1024,"name":"name","url":"interfaces/app__models_token.token.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/token.Token"},{"id":165,"kind":1024,"name":"symbol","url":"interfaces/app__models_token.token.html#symbol","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/token.Token"},{"id":166,"kind":1024,"name":"address","url":"interfaces/app__models_token.token.html#address","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/token.Token"},{"id":167,"kind":1024,"name":"supply","url":"interfaces/app__models_token.token.html#supply","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/token.Token"},{"id":168,"kind":1024,"name":"decimals","url":"interfaces/app__models_token.token.html#decimals","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/token.Token"},{"id":169,"kind":1024,"name":"reserves","url":"interfaces/app__models_token.token.html#reserves","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/token.Token"},{"id":170,"kind":65536,"name":"__type","url":"interfaces/app__models_token.token.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"app/_models/token.Token"},{"id":171,"kind":1024,"name":"0xa686005CE37Dce7738436256982C3903f2E4ea8E","url":"interfaces/app__models_token.token.html#__type.0xa686005ce37dce7738436256982c3903f2e4ea8e","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/token.Token.__type"},{"id":172,"kind":65536,"name":"__type","url":"interfaces/app__models_token.token.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"app/_models/token.Token.__type"},{"id":173,"kind":1024,"name":"weight","url":"interfaces/app__models_token.token.html#__type.__type-1.weight","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/token.Token.__type.__type"},{"id":174,"kind":1024,"name":"balance","url":"interfaces/app__models_token.token.html#__type.__type-1.balance","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/token.Token.__type.__type"},{"id":175,"kind":1024,"name":"reserveRatio","url":"interfaces/app__models_token.token.html#reserveratio","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/token.Token"},{"id":176,"kind":1024,"name":"owner","url":"interfaces/app__models_token.token.html#owner","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/token.Token"},{"id":177,"kind":1,"name":"app/_models/transaction","url":"modules/app__models_transaction.html","classes":"tsd-kind-module"},{"id":178,"kind":128,"name":"BlocksBloom","url":"classes/app__models_transaction.blocksbloom.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_models/transaction"},{"id":179,"kind":512,"name":"constructor","url":"classes/app__models_transaction.blocksbloom.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_models/transaction.BlocksBloom"},{"id":180,"kind":1024,"name":"low","url":"classes/app__models_transaction.blocksbloom.html#low","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.BlocksBloom"},{"id":181,"kind":1024,"name":"blockFilter","url":"classes/app__models_transaction.blocksbloom.html#blockfilter","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.BlocksBloom"},{"id":182,"kind":1024,"name":"blocktxFilter","url":"classes/app__models_transaction.blocksbloom.html#blocktxfilter","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.BlocksBloom"},{"id":183,"kind":1024,"name":"alg","url":"classes/app__models_transaction.blocksbloom.html#alg","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.BlocksBloom"},{"id":184,"kind":1024,"name":"filterRounds","url":"classes/app__models_transaction.blocksbloom.html#filterrounds","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.BlocksBloom"},{"id":185,"kind":128,"name":"TxToken","url":"classes/app__models_transaction.txtoken.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_models/transaction"},{"id":186,"kind":512,"name":"constructor","url":"classes/app__models_transaction.txtoken.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_models/transaction.TxToken"},{"id":187,"kind":1024,"name":"address","url":"classes/app__models_transaction.txtoken.html#address","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.TxToken"},{"id":188,"kind":1024,"name":"name","url":"classes/app__models_transaction.txtoken.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.TxToken"},{"id":189,"kind":1024,"name":"symbol","url":"classes/app__models_transaction.txtoken.html#symbol","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.TxToken"},{"id":190,"kind":128,"name":"Tx","url":"classes/app__models_transaction.tx.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_models/transaction"},{"id":191,"kind":512,"name":"constructor","url":"classes/app__models_transaction.tx.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_models/transaction.Tx"},{"id":192,"kind":1024,"name":"block","url":"classes/app__models_transaction.tx.html#block","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Tx"},{"id":193,"kind":1024,"name":"success","url":"classes/app__models_transaction.tx.html#success","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Tx"},{"id":194,"kind":1024,"name":"timestamp","url":"classes/app__models_transaction.tx.html#timestamp","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Tx"},{"id":195,"kind":1024,"name":"txHash","url":"classes/app__models_transaction.tx.html#txhash","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Tx"},{"id":196,"kind":1024,"name":"txIndex","url":"classes/app__models_transaction.tx.html#txindex","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Tx"},{"id":197,"kind":128,"name":"Transaction","url":"classes/app__models_transaction.transaction.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_models/transaction"},{"id":198,"kind":512,"name":"constructor","url":"classes/app__models_transaction.transaction.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_models/transaction.Transaction"},{"id":199,"kind":1024,"name":"from","url":"classes/app__models_transaction.transaction.html#from","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Transaction"},{"id":200,"kind":1024,"name":"sender","url":"classes/app__models_transaction.transaction.html#sender","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Transaction"},{"id":201,"kind":1024,"name":"to","url":"classes/app__models_transaction.transaction.html#to","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Transaction"},{"id":202,"kind":1024,"name":"recipient","url":"classes/app__models_transaction.transaction.html#recipient","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Transaction"},{"id":203,"kind":1024,"name":"token","url":"classes/app__models_transaction.transaction.html#token","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Transaction"},{"id":204,"kind":1024,"name":"tx","url":"classes/app__models_transaction.transaction.html#tx","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Transaction"},{"id":205,"kind":1024,"name":"value","url":"classes/app__models_transaction.transaction.html#value","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Transaction"},{"id":206,"kind":1024,"name":"type","url":"classes/app__models_transaction.transaction.html#type","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Transaction"},{"id":207,"kind":128,"name":"Conversion","url":"classes/app__models_transaction.conversion.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_models/transaction"},{"id":208,"kind":512,"name":"constructor","url":"classes/app__models_transaction.conversion.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_models/transaction.Conversion"},{"id":209,"kind":1024,"name":"destinationToken","url":"classes/app__models_transaction.conversion.html#destinationtoken","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Conversion"},{"id":210,"kind":1024,"name":"fromValue","url":"classes/app__models_transaction.conversion.html#fromvalue","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Conversion"},{"id":211,"kind":1024,"name":"sourceToken","url":"classes/app__models_transaction.conversion.html#sourcetoken","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Conversion"},{"id":212,"kind":1024,"name":"toValue","url":"classes/app__models_transaction.conversion.html#tovalue","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Conversion"},{"id":213,"kind":1024,"name":"trader","url":"classes/app__models_transaction.conversion.html#trader","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Conversion"},{"id":214,"kind":1024,"name":"user","url":"classes/app__models_transaction.conversion.html#user","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Conversion"},{"id":215,"kind":1024,"name":"tx","url":"classes/app__models_transaction.conversion.html#tx","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Conversion"},{"id":216,"kind":1,"name":"app/_pgp","url":"modules/app__pgp.html","classes":"tsd-kind-module"},{"id":217,"kind":1,"name":"app/_pgp/pgp-key-store","url":"modules/app__pgp_pgp_key_store.html","classes":"tsd-kind-module"},{"id":218,"kind":128,"name":"MutablePgpKeyStore","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_pgp/pgp-key-store"},{"id":219,"kind":512,"name":"constructor","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":220,"kind":2048,"name":"loadKeyring","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#loadkeyring","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":221,"kind":2048,"name":"importKeyPair","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#importkeypair","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":222,"kind":2048,"name":"importPublicKey","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#importpublickey","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":223,"kind":2048,"name":"importPrivateKey","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#importprivatekey","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":224,"kind":2048,"name":"getPublicKeys","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getpublickeys","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":225,"kind":2048,"name":"getTrustedKeys","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#gettrustedkeys","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":226,"kind":2048,"name":"getTrustedActiveKeys","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#gettrustedactivekeys","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":227,"kind":2048,"name":"getEncryptKeys","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getencryptkeys","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":228,"kind":2048,"name":"getPrivateKeys","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getprivatekeys","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":229,"kind":2048,"name":"getPrivateKey","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getprivatekey","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":230,"kind":2048,"name":"isValidKey","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#isvalidkey","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":231,"kind":2048,"name":"isEncryptedPrivateKey","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#isencryptedprivatekey","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":232,"kind":2048,"name":"getFingerprint","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getfingerprint","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":233,"kind":2048,"name":"getKeyId","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getkeyid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":234,"kind":2048,"name":"getPrivateKeyId","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getprivatekeyid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":235,"kind":2048,"name":"getKeysForId","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getkeysforid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":236,"kind":2048,"name":"getPublicKeyForId","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getpublickeyforid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":237,"kind":2048,"name":"getPrivateKeyForId","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getprivatekeyforid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":238,"kind":2048,"name":"getPublicKeyForSubkeyId","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getpublickeyforsubkeyid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":239,"kind":2048,"name":"getPublicKeysForAddress","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getpublickeysforaddress","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":240,"kind":2048,"name":"removeKeysForId","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#removekeysforid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":241,"kind":2048,"name":"removePublicKeyForId","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#removepublickeyforid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":242,"kind":2048,"name":"removePublicKey","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#removepublickey","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":243,"kind":2048,"name":"clearKeysInKeyring","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#clearkeysinkeyring","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":244,"kind":2048,"name":"sign","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#sign","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":245,"kind":256,"name":"MutableKeyStore","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_pgp/pgp-key-store"},{"id":246,"kind":2048,"name":"loadKeyring","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#loadkeyring","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":247,"kind":2048,"name":"importKeyPair","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#importkeypair","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":248,"kind":2048,"name":"importPublicKey","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#importpublickey","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":249,"kind":2048,"name":"importPrivateKey","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#importprivatekey","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":250,"kind":2048,"name":"getPublicKeys","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getpublickeys","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":251,"kind":2048,"name":"getTrustedKeys","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#gettrustedkeys","classes":"tsd-kind-method tsd-parent-kind-interface tsd-is-overwrite","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":252,"kind":2048,"name":"getTrustedActiveKeys","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#gettrustedactivekeys","classes":"tsd-kind-method tsd-parent-kind-interface tsd-is-overwrite","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":253,"kind":2048,"name":"getEncryptKeys","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getencryptkeys","classes":"tsd-kind-method tsd-parent-kind-interface tsd-is-overwrite","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":254,"kind":2048,"name":"getPrivateKeys","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getprivatekeys","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":255,"kind":2048,"name":"getPrivateKey","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getprivatekey","classes":"tsd-kind-method tsd-parent-kind-interface tsd-is-overwrite","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":256,"kind":2048,"name":"isValidKey","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#isvalidkey","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":257,"kind":2048,"name":"isEncryptedPrivateKey","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#isencryptedprivatekey","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":258,"kind":2048,"name":"getFingerprint","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getfingerprint","classes":"tsd-kind-method tsd-parent-kind-interface tsd-is-overwrite","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":259,"kind":2048,"name":"getKeyId","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getkeyid","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":260,"kind":2048,"name":"getPrivateKeyId","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getprivatekeyid","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":261,"kind":2048,"name":"getKeysForId","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getkeysforid","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":262,"kind":2048,"name":"getPublicKeyForId","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getpublickeyforid","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":263,"kind":2048,"name":"getPrivateKeyForId","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getprivatekeyforid","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":264,"kind":2048,"name":"getPublicKeyForSubkeyId","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getpublickeyforsubkeyid","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":265,"kind":2048,"name":"getPublicKeysForAddress","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getpublickeysforaddress","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":266,"kind":2048,"name":"removeKeysForId","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#removekeysforid","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":267,"kind":2048,"name":"removePublicKeyForId","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#removepublickeyforid","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":268,"kind":2048,"name":"removePublicKey","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#removepublickey","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":269,"kind":2048,"name":"clearKeysInKeyring","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#clearkeysinkeyring","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":270,"kind":2048,"name":"sign","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#sign","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":271,"kind":1,"name":"app/_pgp/pgp-signer","url":"modules/app__pgp_pgp_signer.html","classes":"tsd-kind-module"},{"id":272,"kind":256,"name":"Signable","url":"interfaces/app__pgp_pgp_signer.signable.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_pgp/pgp-signer"},{"id":273,"kind":2048,"name":"digest","url":"interfaces/app__pgp_pgp_signer.signable.html#digest","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signable"},{"id":274,"kind":4194304,"name":"Signature","url":"modules/app__pgp_pgp_signer.html#signature","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"app/_pgp/pgp-signer"},{"id":275,"kind":65536,"name":"__type","url":"modules/app__pgp_pgp_signer.html#signature.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"app/_pgp/pgp-signer.Signature"},{"id":276,"kind":1024,"name":"engine","url":"modules/app__pgp_pgp_signer.html#signature.__type.engine","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_pgp/pgp-signer.Signature.__type"},{"id":277,"kind":1024,"name":"algo","url":"modules/app__pgp_pgp_signer.html#signature.__type.algo","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_pgp/pgp-signer.Signature.__type"},{"id":278,"kind":1024,"name":"data","url":"modules/app__pgp_pgp_signer.html#signature.__type.data","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_pgp/pgp-signer.Signature.__type"},{"id":279,"kind":1024,"name":"digest","url":"modules/app__pgp_pgp_signer.html#signature.__type.digest","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_pgp/pgp-signer.Signature.__type"},{"id":280,"kind":256,"name":"Signer","url":"interfaces/app__pgp_pgp_signer.signer.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_pgp/pgp-signer"},{"id":281,"kind":2048,"name":"onsign","url":"interfaces/app__pgp_pgp_signer.signer.html#onsign","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signer"},{"id":282,"kind":2048,"name":"onverify","url":"interfaces/app__pgp_pgp_signer.signer.html#onverify","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signer"},{"id":283,"kind":2048,"name":"fingerprint","url":"interfaces/app__pgp_pgp_signer.signer.html#fingerprint","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signer"},{"id":284,"kind":2048,"name":"prepare","url":"interfaces/app__pgp_pgp_signer.signer.html#prepare","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signer"},{"id":285,"kind":2048,"name":"verify","url":"interfaces/app__pgp_pgp_signer.signer.html#verify","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signer"},{"id":286,"kind":2048,"name":"sign","url":"interfaces/app__pgp_pgp_signer.signer.html#sign","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signer"},{"id":287,"kind":128,"name":"PGPSigner","url":"classes/app__pgp_pgp_signer.pgpsigner.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_pgp/pgp-signer"},{"id":288,"kind":512,"name":"constructor","url":"classes/app__pgp_pgp_signer.pgpsigner.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":289,"kind":1024,"name":"engine","url":"classes/app__pgp_pgp_signer.pgpsigner.html#engine","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":290,"kind":1024,"name":"algo","url":"classes/app__pgp_pgp_signer.pgpsigner.html#algo","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":291,"kind":1024,"name":"dgst","url":"classes/app__pgp_pgp_signer.pgpsigner.html#dgst","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":292,"kind":1024,"name":"signature","url":"classes/app__pgp_pgp_signer.pgpsigner.html#signature","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":293,"kind":1024,"name":"keyStore","url":"classes/app__pgp_pgp_signer.pgpsigner.html#keystore","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":294,"kind":1024,"name":"onsign","url":"classes/app__pgp_pgp_signer.pgpsigner.html#onsign","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":295,"kind":65536,"name":"__type","url":"classes/app__pgp_pgp_signer.pgpsigner.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":296,"kind":1024,"name":"onverify","url":"classes/app__pgp_pgp_signer.pgpsigner.html#onverify","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":297,"kind":65536,"name":"__type","url":"classes/app__pgp_pgp_signer.pgpsigner.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":298,"kind":1024,"name":"loggingService","url":"classes/app__pgp_pgp_signer.pgpsigner.html#loggingservice","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":299,"kind":2048,"name":"fingerprint","url":"classes/app__pgp_pgp_signer.pgpsigner.html#fingerprint","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":300,"kind":2048,"name":"prepare","url":"classes/app__pgp_pgp_signer.pgpsigner.html#prepare","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":301,"kind":2048,"name":"verify","url":"classes/app__pgp_pgp_signer.pgpsigner.html#verify","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":302,"kind":2048,"name":"sign","url":"classes/app__pgp_pgp_signer.pgpsigner.html#sign","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":303,"kind":1,"name":"app/_services/auth.service","url":"modules/app__services_auth_service.html","classes":"tsd-kind-module"},{"id":304,"kind":128,"name":"AuthService","url":"classes/app__services_auth_service.authservice.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_services/auth.service"},{"id":305,"kind":512,"name":"constructor","url":"classes/app__services_auth_service.authservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":306,"kind":1024,"name":"sessionToken","url":"classes/app__services_auth_service.authservice.html#sessiontoken","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":307,"kind":1024,"name":"sessionLoginCount","url":"classes/app__services_auth_service.authservice.html#sessionlogincount","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":308,"kind":1024,"name":"mutableKeyStore","url":"classes/app__services_auth_service.authservice.html#mutablekeystore","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":309,"kind":2048,"name":"init","url":"classes/app__services_auth_service.authservice.html#init","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":310,"kind":2048,"name":"setState","url":"classes/app__services_auth_service.authservice.html#setstate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":311,"kind":2048,"name":"getWithToken","url":"classes/app__services_auth_service.authservice.html#getwithtoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":312,"kind":2048,"name":"sendResponse","url":"classes/app__services_auth_service.authservice.html#sendresponse","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":313,"kind":2048,"name":"getChallenge","url":"classes/app__services_auth_service.authservice.html#getchallenge","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":314,"kind":2048,"name":"login","url":"classes/app__services_auth_service.authservice.html#login","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":315,"kind":2048,"name":"loginResponse","url":"classes/app__services_auth_service.authservice.html#loginresponse","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":316,"kind":2048,"name":"loginView","url":"classes/app__services_auth_service.authservice.html#loginview","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":317,"kind":2048,"name":"setKey","url":"classes/app__services_auth_service.authservice.html#setkey","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":318,"kind":2048,"name":"logout","url":"classes/app__services_auth_service.authservice.html#logout","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":319,"kind":2048,"name":"getTrustedUsers","url":"classes/app__services_auth_service.authservice.html#gettrustedusers","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":320,"kind":2048,"name":"getPublicKeys","url":"classes/app__services_auth_service.authservice.html#getpublickeys","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":321,"kind":2048,"name":"getPrivateKey","url":"classes/app__services_auth_service.authservice.html#getprivatekey","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":322,"kind":1,"name":"app/_services/block-sync.service","url":"modules/app__services_block_sync_service.html","classes":"tsd-kind-module"},{"id":323,"kind":128,"name":"BlockSyncService","url":"classes/app__services_block_sync_service.blocksyncservice.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_services/block-sync.service"},{"id":324,"kind":512,"name":"constructor","url":"classes/app__services_block_sync_service.blocksyncservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_services/block-sync.service.BlockSyncService"},{"id":325,"kind":1024,"name":"readyStateTarget","url":"classes/app__services_block_sync_service.blocksyncservice.html#readystatetarget","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/block-sync.service.BlockSyncService"},{"id":326,"kind":1024,"name":"readyState","url":"classes/app__services_block_sync_service.blocksyncservice.html#readystate","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/block-sync.service.BlockSyncService"},{"id":327,"kind":2048,"name":"blockSync","url":"classes/app__services_block_sync_service.blocksyncservice.html#blocksync","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/block-sync.service.BlockSyncService"},{"id":328,"kind":2048,"name":"readyStateProcessor","url":"classes/app__services_block_sync_service.blocksyncservice.html#readystateprocessor","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/block-sync.service.BlockSyncService"},{"id":329,"kind":2048,"name":"newTransferEvent","url":"classes/app__services_block_sync_service.blocksyncservice.html#newtransferevent","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/block-sync.service.BlockSyncService"},{"id":330,"kind":2048,"name":"newConversionEvent","url":"classes/app__services_block_sync_service.blocksyncservice.html#newconversionevent","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/block-sync.service.BlockSyncService"},{"id":331,"kind":2048,"name":"scan","url":"classes/app__services_block_sync_service.blocksyncservice.html#scan","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/block-sync.service.BlockSyncService"},{"id":332,"kind":2048,"name":"fetcher","url":"classes/app__services_block_sync_service.blocksyncservice.html#fetcher","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/block-sync.service.BlockSyncService"},{"id":333,"kind":1,"name":"app/_services/error-dialog.service","url":"modules/app__services_error_dialog_service.html","classes":"tsd-kind-module"},{"id":334,"kind":128,"name":"ErrorDialogService","url":"classes/app__services_error_dialog_service.errordialogservice.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_services/error-dialog.service"},{"id":335,"kind":512,"name":"constructor","url":"classes/app__services_error_dialog_service.errordialogservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_services/error-dialog.service.ErrorDialogService"},{"id":336,"kind":1024,"name":"isDialogOpen","url":"classes/app__services_error_dialog_service.errordialogservice.html#isdialogopen","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/error-dialog.service.ErrorDialogService"},{"id":337,"kind":1024,"name":"dialog","url":"classes/app__services_error_dialog_service.errordialogservice.html#dialog","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/error-dialog.service.ErrorDialogService"},{"id":338,"kind":2048,"name":"openDialog","url":"classes/app__services_error_dialog_service.errordialogservice.html#opendialog","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/error-dialog.service.ErrorDialogService"},{"id":339,"kind":1,"name":"app/_services","url":"modules/app__services.html","classes":"tsd-kind-module"},{"id":340,"kind":1,"name":"app/_services/location.service","url":"modules/app__services_location_service.html","classes":"tsd-kind-module"},{"id":341,"kind":128,"name":"LocationService","url":"classes/app__services_location_service.locationservice.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_services/location.service"},{"id":342,"kind":512,"name":"constructor","url":"classes/app__services_location_service.locationservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_services/location.service.LocationService"},{"id":343,"kind":2048,"name":"getAreaNames","url":"classes/app__services_location_service.locationservice.html#getareanames","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/location.service.LocationService"},{"id":344,"kind":2048,"name":"getAreaNameByLocation","url":"classes/app__services_location_service.locationservice.html#getareanamebylocation","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/location.service.LocationService"},{"id":345,"kind":2048,"name":"getAreaTypes","url":"classes/app__services_location_service.locationservice.html#getareatypes","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/location.service.LocationService"},{"id":346,"kind":2048,"name":"getAreaTypeByArea","url":"classes/app__services_location_service.locationservice.html#getareatypebyarea","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/location.service.LocationService"},{"id":347,"kind":1,"name":"app/_services/logging.service","url":"modules/app__services_logging_service.html","classes":"tsd-kind-module"},{"id":348,"kind":128,"name":"LoggingService","url":"classes/app__services_logging_service.loggingservice.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_services/logging.service"},{"id":349,"kind":512,"name":"constructor","url":"classes/app__services_logging_service.loggingservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_services/logging.service.LoggingService"},{"id":350,"kind":1024,"name":"env","url":"classes/app__services_logging_service.loggingservice.html#env","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/logging.service.LoggingService"},{"id":351,"kind":1024,"name":"canDebug","url":"classes/app__services_logging_service.loggingservice.html#candebug","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/logging.service.LoggingService"},{"id":352,"kind":2048,"name":"sendTraceLevelMessage","url":"classes/app__services_logging_service.loggingservice.html#sendtracelevelmessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/logging.service.LoggingService"},{"id":353,"kind":2048,"name":"sendDebugLevelMessage","url":"classes/app__services_logging_service.loggingservice.html#senddebuglevelmessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/logging.service.LoggingService"},{"id":354,"kind":2048,"name":"sendInfoLevelMessage","url":"classes/app__services_logging_service.loggingservice.html#sendinfolevelmessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/logging.service.LoggingService"},{"id":355,"kind":2048,"name":"sendLogLevelMessage","url":"classes/app__services_logging_service.loggingservice.html#sendloglevelmessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/logging.service.LoggingService"},{"id":356,"kind":2048,"name":"sendWarnLevelMessage","url":"classes/app__services_logging_service.loggingservice.html#sendwarnlevelmessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/logging.service.LoggingService"},{"id":357,"kind":2048,"name":"sendErrorLevelMessage","url":"classes/app__services_logging_service.loggingservice.html#senderrorlevelmessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/logging.service.LoggingService"},{"id":358,"kind":2048,"name":"sendFatalLevelMessage","url":"classes/app__services_logging_service.loggingservice.html#sendfatallevelmessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/logging.service.LoggingService"},{"id":359,"kind":1,"name":"app/_services/registry.service","url":"modules/app__services_registry_service.html","classes":"tsd-kind-module"},{"id":360,"kind":128,"name":"RegistryService","url":"classes/app__services_registry_service.registryservice.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_services/registry.service"},{"id":361,"kind":512,"name":"constructor","url":"classes/app__services_registry_service.registryservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_services/registry.service.RegistryService"},{"id":362,"kind":1024,"name":"web3","url":"classes/app__services_registry_service.registryservice.html#web3","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/registry.service.RegistryService"},{"id":363,"kind":1024,"name":"fileGetter","url":"classes/app__services_registry_service.registryservice.html#filegetter","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/registry.service.RegistryService"},{"id":364,"kind":1024,"name":"registry","url":"classes/app__services_registry_service.registryservice.html#registry","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/registry.service.RegistryService"},{"id":365,"kind":2048,"name":"getRegistry","url":"classes/app__services_registry_service.registryservice.html#getregistry","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/registry.service.RegistryService"},{"id":366,"kind":2048,"name":"getWeb3","url":"classes/app__services_registry_service.registryservice.html#getweb3","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/registry.service.RegistryService"},{"id":367,"kind":1,"name":"app/_services/token.service","url":"modules/app__services_token_service.html","classes":"tsd-kind-module"},{"id":368,"kind":128,"name":"TokenService","url":"classes/app__services_token_service.tokenservice.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_services/token.service"},{"id":369,"kind":512,"name":"constructor","url":"classes/app__services_token_service.tokenservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":370,"kind":1024,"name":"registry","url":"classes/app__services_token_service.tokenservice.html#registry","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":371,"kind":1024,"name":"tokenRegistry","url":"classes/app__services_token_service.tokenservice.html#tokenregistry","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":372,"kind":1024,"name":"LoadEvent","url":"classes/app__services_token_service.tokenservice.html#loadevent","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":373,"kind":2048,"name":"getTokens","url":"classes/app__services_token_service.tokenservice.html#gettokens","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":374,"kind":2048,"name":"getTokenBySymbol","url":"classes/app__services_token_service.tokenservice.html#gettokenbysymbol","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":375,"kind":2048,"name":"getTokenBalance","url":"classes/app__services_token_service.tokenservice.html#gettokenbalance","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":376,"kind":1,"name":"app/_services/transaction.service","url":"modules/app__services_transaction_service.html","classes":"tsd-kind-module"},{"id":377,"kind":128,"name":"TransactionService","url":"classes/app__services_transaction_service.transactionservice.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_services/transaction.service"},{"id":378,"kind":512,"name":"constructor","url":"classes/app__services_transaction_service.transactionservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":379,"kind":1024,"name":"transactions","url":"classes/app__services_transaction_service.transactionservice.html#transactions","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":380,"kind":1024,"name":"transactionList","url":"classes/app__services_transaction_service.transactionservice.html#transactionlist","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"app/_services/transaction.service.TransactionService"},{"id":381,"kind":1024,"name":"transactionsSubject","url":"classes/app__services_transaction_service.transactionservice.html#transactionssubject","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":382,"kind":1024,"name":"userInfo","url":"classes/app__services_transaction_service.transactionservice.html#userinfo","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":383,"kind":1024,"name":"web3","url":"classes/app__services_transaction_service.transactionservice.html#web3","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":384,"kind":1024,"name":"registry","url":"classes/app__services_transaction_service.transactionservice.html#registry","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":385,"kind":2048,"name":"getAllTransactions","url":"classes/app__services_transaction_service.transactionservice.html#getalltransactions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":386,"kind":2048,"name":"getAddressTransactions","url":"classes/app__services_transaction_service.transactionservice.html#getaddresstransactions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":387,"kind":2048,"name":"setTransaction","url":"classes/app__services_transaction_service.transactionservice.html#settransaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":388,"kind":2048,"name":"setConversion","url":"classes/app__services_transaction_service.transactionservice.html#setconversion","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":389,"kind":2048,"name":"addTransaction","url":"classes/app__services_transaction_service.transactionservice.html#addtransaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":390,"kind":2048,"name":"resetTransactionsList","url":"classes/app__services_transaction_service.transactionservice.html#resettransactionslist","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":391,"kind":2048,"name":"getAccountInfo","url":"classes/app__services_transaction_service.transactionservice.html#getaccountinfo","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":392,"kind":2048,"name":"transferRequest","url":"classes/app__services_transaction_service.transactionservice.html#transferrequest","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":393,"kind":1,"name":"app/_services/user.service","url":"modules/app__services_user_service.html","classes":"tsd-kind-module"},{"id":394,"kind":128,"name":"UserService","url":"classes/app__services_user_service.userservice.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_services/user.service"},{"id":395,"kind":512,"name":"constructor","url":"classes/app__services_user_service.userservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":396,"kind":1024,"name":"headers","url":"classes/app__services_user_service.userservice.html#headers","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":397,"kind":1024,"name":"keystore","url":"classes/app__services_user_service.userservice.html#keystore","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":398,"kind":1024,"name":"signer","url":"classes/app__services_user_service.userservice.html#signer","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":399,"kind":1024,"name":"registry","url":"classes/app__services_user_service.userservice.html#registry","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":400,"kind":1024,"name":"accounts","url":"classes/app__services_user_service.userservice.html#accounts","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":401,"kind":1024,"name":"accountsList","url":"classes/app__services_user_service.userservice.html#accountslist","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"app/_services/user.service.UserService"},{"id":402,"kind":1024,"name":"accountsSubject","url":"classes/app__services_user_service.userservice.html#accountssubject","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":403,"kind":1024,"name":"actions","url":"classes/app__services_user_service.userservice.html#actions","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":404,"kind":1024,"name":"actionsList","url":"classes/app__services_user_service.userservice.html#actionslist","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"app/_services/user.service.UserService"},{"id":405,"kind":1024,"name":"actionsSubject","url":"classes/app__services_user_service.userservice.html#actionssubject","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":406,"kind":2048,"name":"resetPin","url":"classes/app__services_user_service.userservice.html#resetpin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":407,"kind":2048,"name":"getAccountStatus","url":"classes/app__services_user_service.userservice.html#getaccountstatus","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":408,"kind":2048,"name":"getLockedAccounts","url":"classes/app__services_user_service.userservice.html#getlockedaccounts","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":409,"kind":2048,"name":"changeAccountInfo","url":"classes/app__services_user_service.userservice.html#changeaccountinfo","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":410,"kind":2048,"name":"updateMeta","url":"classes/app__services_user_service.userservice.html#updatemeta","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":411,"kind":2048,"name":"getActions","url":"classes/app__services_user_service.userservice.html#getactions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":412,"kind":2048,"name":"getActionById","url":"classes/app__services_user_service.userservice.html#getactionbyid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":413,"kind":2048,"name":"approveAction","url":"classes/app__services_user_service.userservice.html#approveaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":414,"kind":2048,"name":"revokeAction","url":"classes/app__services_user_service.userservice.html#revokeaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":415,"kind":2048,"name":"getAccountDetailsFromMeta","url":"classes/app__services_user_service.userservice.html#getaccountdetailsfrommeta","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":416,"kind":2048,"name":"wrap","url":"classes/app__services_user_service.userservice.html#wrap","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":417,"kind":2048,"name":"loadAccounts","url":"classes/app__services_user_service.userservice.html#loadaccounts","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":418,"kind":2048,"name":"getAccountByAddress","url":"classes/app__services_user_service.userservice.html#getaccountbyaddress","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":419,"kind":2048,"name":"getAccountByPhone","url":"classes/app__services_user_service.userservice.html#getaccountbyphone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":420,"kind":2048,"name":"resetAccountsList","url":"classes/app__services_user_service.userservice.html#resetaccountslist","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":421,"kind":2048,"name":"searchAccountByName","url":"classes/app__services_user_service.userservice.html#searchaccountbyname","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":422,"kind":2048,"name":"getCategories","url":"classes/app__services_user_service.userservice.html#getcategories","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":423,"kind":2048,"name":"getCategoryByProduct","url":"classes/app__services_user_service.userservice.html#getcategorybyproduct","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":424,"kind":2048,"name":"getAccountTypes","url":"classes/app__services_user_service.userservice.html#getaccounttypes","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":425,"kind":2048,"name":"getTransactionTypes","url":"classes/app__services_user_service.userservice.html#gettransactiontypes","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":426,"kind":2048,"name":"getGenders","url":"classes/app__services_user_service.userservice.html#getgenders","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":427,"kind":1,"name":"app/app-routing.module","url":"modules/app_app_routing_module.html","classes":"tsd-kind-module"},{"id":428,"kind":128,"name":"AppRoutingModule","url":"classes/app_app_routing_module.approutingmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/app-routing.module"},{"id":429,"kind":512,"name":"constructor","url":"classes/app_app_routing_module.approutingmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/app-routing.module.AppRoutingModule"},{"id":430,"kind":1,"name":"app/app.component","url":"modules/app_app_component.html","classes":"tsd-kind-module"},{"id":431,"kind":128,"name":"AppComponent","url":"classes/app_app_component.appcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/app.component"},{"id":432,"kind":512,"name":"constructor","url":"classes/app_app_component.appcomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/app.component.AppComponent"},{"id":433,"kind":1024,"name":"title","url":"classes/app_app_component.appcomponent.html#title","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/app.component.AppComponent"},{"id":434,"kind":1024,"name":"readyStateTarget","url":"classes/app_app_component.appcomponent.html#readystatetarget","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/app.component.AppComponent"},{"id":435,"kind":1024,"name":"readyState","url":"classes/app_app_component.appcomponent.html#readystate","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/app.component.AppComponent"},{"id":436,"kind":1024,"name":"mediaQuery","url":"classes/app_app_component.appcomponent.html#mediaquery","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/app.component.AppComponent"},{"id":437,"kind":2048,"name":"onResize","url":"classes/app_app_component.appcomponent.html#onresize","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/app.component.AppComponent"},{"id":438,"kind":2048,"name":"cicTransfer","url":"classes/app_app_component.appcomponent.html#cictransfer","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/app.component.AppComponent"},{"id":439,"kind":2048,"name":"cicConvert","url":"classes/app_app_component.appcomponent.html#cicconvert","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/app.component.AppComponent"},{"id":440,"kind":1,"name":"app/app.module","url":"modules/app_app_module.html","classes":"tsd-kind-module"},{"id":441,"kind":128,"name":"AppModule","url":"classes/app_app_module.appmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/app.module"},{"id":442,"kind":512,"name":"constructor","url":"classes/app_app_module.appmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/app.module.AppModule"},{"id":443,"kind":1,"name":"app/auth/_directives","url":"modules/app_auth__directives.html","classes":"tsd-kind-module"},{"id":444,"kind":1,"name":"app/auth/_directives/password-toggle.directive","url":"modules/app_auth__directives_password_toggle_directive.html","classes":"tsd-kind-module"},{"id":445,"kind":128,"name":"PasswordToggleDirective","url":"classes/app_auth__directives_password_toggle_directive.passwordtoggledirective.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/auth/_directives/password-toggle.directive"},{"id":446,"kind":512,"name":"constructor","url":"classes/app_auth__directives_password_toggle_directive.passwordtoggledirective.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/auth/_directives/password-toggle.directive.PasswordToggleDirective"},{"id":447,"kind":1024,"name":"id","url":"classes/app_auth__directives_password_toggle_directive.passwordtoggledirective.html#id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/auth/_directives/password-toggle.directive.PasswordToggleDirective"},{"id":448,"kind":1024,"name":"iconId","url":"classes/app_auth__directives_password_toggle_directive.passwordtoggledirective.html#iconid","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/auth/_directives/password-toggle.directive.PasswordToggleDirective"},{"id":449,"kind":2048,"name":"togglePasswordVisibility","url":"classes/app_auth__directives_password_toggle_directive.passwordtoggledirective.html#togglepasswordvisibility","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/auth/_directives/password-toggle.directive.PasswordToggleDirective"},{"id":450,"kind":1,"name":"app/auth/auth-routing.module","url":"modules/app_auth_auth_routing_module.html","classes":"tsd-kind-module"},{"id":451,"kind":128,"name":"AuthRoutingModule","url":"classes/app_auth_auth_routing_module.authroutingmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/auth/auth-routing.module"},{"id":452,"kind":512,"name":"constructor","url":"classes/app_auth_auth_routing_module.authroutingmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/auth/auth-routing.module.AuthRoutingModule"},{"id":453,"kind":1,"name":"app/auth/auth.component","url":"modules/app_auth_auth_component.html","classes":"tsd-kind-module"},{"id":454,"kind":128,"name":"AuthComponent","url":"classes/app_auth_auth_component.authcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/auth/auth.component"},{"id":455,"kind":512,"name":"constructor","url":"classes/app_auth_auth_component.authcomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/auth/auth.component.AuthComponent"},{"id":456,"kind":1024,"name":"keyForm","url":"classes/app_auth_auth_component.authcomponent.html#keyform","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/auth/auth.component.AuthComponent"},{"id":457,"kind":1024,"name":"submitted","url":"classes/app_auth_auth_component.authcomponent.html#submitted","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/auth/auth.component.AuthComponent"},{"id":458,"kind":1024,"name":"loading","url":"classes/app_auth_auth_component.authcomponent.html#loading","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/auth/auth.component.AuthComponent"},{"id":459,"kind":1024,"name":"matcher","url":"classes/app_auth_auth_component.authcomponent.html#matcher","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/auth/auth.component.AuthComponent"},{"id":460,"kind":2048,"name":"ngOnInit","url":"classes/app_auth_auth_component.authcomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/auth/auth.component.AuthComponent"},{"id":461,"kind":262144,"name":"keyFormStub","url":"classes/app_auth_auth_component.authcomponent.html#keyformstub","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"app/auth/auth.component.AuthComponent"},{"id":462,"kind":2048,"name":"onSubmit","url":"classes/app_auth_auth_component.authcomponent.html#onsubmit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/auth/auth.component.AuthComponent"},{"id":463,"kind":2048,"name":"login","url":"classes/app_auth_auth_component.authcomponent.html#login","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/auth/auth.component.AuthComponent"},{"id":464,"kind":2048,"name":"switchWindows","url":"classes/app_auth_auth_component.authcomponent.html#switchwindows","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/auth/auth.component.AuthComponent"},{"id":465,"kind":2048,"name":"toggleDisplay","url":"classes/app_auth_auth_component.authcomponent.html#toggledisplay","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/auth/auth.component.AuthComponent"},{"id":466,"kind":1,"name":"app/auth/auth.module","url":"modules/app_auth_auth_module.html","classes":"tsd-kind-module"},{"id":467,"kind":128,"name":"AuthModule","url":"classes/app_auth_auth_module.authmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/auth/auth.module"},{"id":468,"kind":512,"name":"constructor","url":"classes/app_auth_auth_module.authmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/auth/auth.module.AuthModule"},{"id":469,"kind":1,"name":"app/pages/accounts/account-details/account-details.component","url":"modules/app_pages_accounts_account_details_account_details_component.html","classes":"tsd-kind-module"},{"id":470,"kind":128,"name":"AccountDetailsComponent","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/accounts/account-details/account-details.component"},{"id":471,"kind":512,"name":"constructor","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":472,"kind":1024,"name":"transactionsDataSource","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#transactionsdatasource","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":473,"kind":1024,"name":"transactionsDisplayedColumns","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#transactionsdisplayedcolumns","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":474,"kind":1024,"name":"transactionsDefaultPageSize","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#transactionsdefaultpagesize","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":475,"kind":1024,"name":"transactionsPageSizeOptions","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#transactionspagesizeoptions","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":476,"kind":1024,"name":"transactionTablePaginator","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#transactiontablepaginator","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":477,"kind":1024,"name":"transactionTableSort","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#transactiontablesort","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":478,"kind":1024,"name":"userDataSource","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#userdatasource","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":479,"kind":1024,"name":"userDisplayedColumns","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#userdisplayedcolumns","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":480,"kind":1024,"name":"usersDefaultPageSize","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#usersdefaultpagesize","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":481,"kind":1024,"name":"usersPageSizeOptions","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#userspagesizeoptions","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":482,"kind":1024,"name":"userTablePaginator","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#usertablepaginator","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":483,"kind":1024,"name":"userTableSort","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#usertablesort","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":484,"kind":1024,"name":"accountInfoForm","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#accountinfoform","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":485,"kind":1024,"name":"account","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#account","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":486,"kind":1024,"name":"accountAddress","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#accountaddress","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":487,"kind":1024,"name":"accountStatus","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#accountstatus","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":488,"kind":1024,"name":"accounts","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#accounts","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":489,"kind":1024,"name":"accountsType","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#accountstype","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":490,"kind":1024,"name":"categories","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#categories","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":491,"kind":1024,"name":"areaNames","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#areanames","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":492,"kind":1024,"name":"areaTypes","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#areatypes","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":493,"kind":1024,"name":"transaction","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#transaction","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":494,"kind":1024,"name":"transactions","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#transactions","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":495,"kind":1024,"name":"transactionsType","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#transactionstype","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":496,"kind":1024,"name":"accountTypes","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#accounttypes","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":497,"kind":1024,"name":"transactionsTypes","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#transactionstypes","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":498,"kind":1024,"name":"genders","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#genders","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":499,"kind":1024,"name":"matcher","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#matcher","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":500,"kind":1024,"name":"submitted","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#submitted","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":501,"kind":1024,"name":"bloxbergLink","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#bloxberglink","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":502,"kind":2048,"name":"ngOnInit","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":503,"kind":2048,"name":"doTransactionFilter","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#dotransactionfilter","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":504,"kind":2048,"name":"doUserFilter","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#douserfilter","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":505,"kind":2048,"name":"viewTransaction","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#viewtransaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":506,"kind":2048,"name":"viewAccount","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#viewaccount","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":507,"kind":262144,"name":"accountInfoFormStub","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#accountinfoformstub","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":508,"kind":2048,"name":"saveInfo","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#saveinfo","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":509,"kind":2048,"name":"filterAccounts","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#filteraccounts","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":510,"kind":2048,"name":"filterTransactions","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#filtertransactions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":511,"kind":2048,"name":"resetPin","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#resetpin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":512,"kind":2048,"name":"downloadCsv","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#downloadcsv","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":513,"kind":2048,"name":"copyAddress","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#copyaddress","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":514,"kind":1,"name":"app/pages/accounts/account-search/account-search.component","url":"modules/app_pages_accounts_account_search_account_search_component.html","classes":"tsd-kind-module"},{"id":515,"kind":128,"name":"AccountSearchComponent","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/accounts/account-search/account-search.component"},{"id":516,"kind":512,"name":"constructor","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":517,"kind":1024,"name":"nameSearchForm","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#namesearchform","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":518,"kind":1024,"name":"nameSearchSubmitted","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#namesearchsubmitted","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":519,"kind":1024,"name":"nameSearchLoading","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#namesearchloading","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":520,"kind":1024,"name":"phoneSearchForm","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#phonesearchform","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":521,"kind":1024,"name":"phoneSearchSubmitted","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#phonesearchsubmitted","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":522,"kind":1024,"name":"phoneSearchLoading","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#phonesearchloading","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":523,"kind":1024,"name":"addressSearchForm","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#addresssearchform","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":524,"kind":1024,"name":"addressSearchSubmitted","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#addresssearchsubmitted","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":525,"kind":1024,"name":"addressSearchLoading","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#addresssearchloading","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":526,"kind":1024,"name":"matcher","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#matcher","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":527,"kind":2048,"name":"ngOnInit","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":528,"kind":262144,"name":"nameSearchFormStub","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#namesearchformstub","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":529,"kind":262144,"name":"phoneSearchFormStub","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#phonesearchformstub","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":530,"kind":262144,"name":"addressSearchFormStub","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#addresssearchformstub","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":531,"kind":2048,"name":"onNameSearch","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#onnamesearch","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":532,"kind":2048,"name":"onPhoneSearch","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#onphonesearch","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":533,"kind":2048,"name":"onAddressSearch","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#onaddresssearch","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":534,"kind":1,"name":"app/pages/accounts/accounts-routing.module","url":"modules/app_pages_accounts_accounts_routing_module.html","classes":"tsd-kind-module"},{"id":535,"kind":128,"name":"AccountsRoutingModule","url":"classes/app_pages_accounts_accounts_routing_module.accountsroutingmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/accounts/accounts-routing.module"},{"id":536,"kind":512,"name":"constructor","url":"classes/app_pages_accounts_accounts_routing_module.accountsroutingmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/accounts/accounts-routing.module.AccountsRoutingModule"},{"id":537,"kind":1,"name":"app/pages/accounts/accounts.component","url":"modules/app_pages_accounts_accounts_component.html","classes":"tsd-kind-module"},{"id":538,"kind":128,"name":"AccountsComponent","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/accounts/accounts.component"},{"id":539,"kind":512,"name":"constructor","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":540,"kind":1024,"name":"dataSource","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#datasource","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":541,"kind":1024,"name":"accounts","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#accounts","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":542,"kind":1024,"name":"displayedColumns","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#displayedcolumns","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":543,"kind":1024,"name":"defaultPageSize","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#defaultpagesize","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":544,"kind":1024,"name":"pageSizeOptions","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#pagesizeoptions","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":545,"kind":1024,"name":"accountsType","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#accountstype","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":546,"kind":1024,"name":"accountTypes","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#accounttypes","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":547,"kind":1024,"name":"paginator","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#paginator","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":548,"kind":1024,"name":"sort","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#sort","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":549,"kind":2048,"name":"ngOnInit","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":550,"kind":2048,"name":"doFilter","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#dofilter","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":551,"kind":2048,"name":"viewAccount","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#viewaccount","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":552,"kind":2048,"name":"filterAccounts","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#filteraccounts","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":553,"kind":2048,"name":"refreshPaginator","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#refreshpaginator","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":554,"kind":2048,"name":"downloadCsv","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#downloadcsv","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":555,"kind":1,"name":"app/pages/accounts/accounts.module","url":"modules/app_pages_accounts_accounts_module.html","classes":"tsd-kind-module"},{"id":556,"kind":128,"name":"AccountsModule","url":"classes/app_pages_accounts_accounts_module.accountsmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/accounts/accounts.module"},{"id":557,"kind":512,"name":"constructor","url":"classes/app_pages_accounts_accounts_module.accountsmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/accounts/accounts.module.AccountsModule"},{"id":558,"kind":1,"name":"app/pages/accounts/create-account/create-account.component","url":"modules/app_pages_accounts_create_account_create_account_component.html","classes":"tsd-kind-module"},{"id":559,"kind":128,"name":"CreateAccountComponent","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/accounts/create-account/create-account.component"},{"id":560,"kind":512,"name":"constructor","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/accounts/create-account/create-account.component.CreateAccountComponent"},{"id":561,"kind":1024,"name":"createForm","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html#createform","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/create-account/create-account.component.CreateAccountComponent"},{"id":562,"kind":1024,"name":"matcher","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html#matcher","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/create-account/create-account.component.CreateAccountComponent"},{"id":563,"kind":1024,"name":"submitted","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html#submitted","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/create-account/create-account.component.CreateAccountComponent"},{"id":564,"kind":1024,"name":"categories","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html#categories","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/create-account/create-account.component.CreateAccountComponent"},{"id":565,"kind":1024,"name":"areaNames","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html#areanames","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/create-account/create-account.component.CreateAccountComponent"},{"id":566,"kind":1024,"name":"accountTypes","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html#accounttypes","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/create-account/create-account.component.CreateAccountComponent"},{"id":567,"kind":1024,"name":"genders","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html#genders","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/create-account/create-account.component.CreateAccountComponent"},{"id":568,"kind":2048,"name":"ngOnInit","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/create-account/create-account.component.CreateAccountComponent"},{"id":569,"kind":262144,"name":"createFormStub","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html#createformstub","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"app/pages/accounts/create-account/create-account.component.CreateAccountComponent"},{"id":570,"kind":2048,"name":"onSubmit","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html#onsubmit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/create-account/create-account.component.CreateAccountComponent"},{"id":571,"kind":1,"name":"app/pages/admin/admin-routing.module","url":"modules/app_pages_admin_admin_routing_module.html","classes":"tsd-kind-module"},{"id":572,"kind":128,"name":"AdminRoutingModule","url":"classes/app_pages_admin_admin_routing_module.adminroutingmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/admin/admin-routing.module"},{"id":573,"kind":512,"name":"constructor","url":"classes/app_pages_admin_admin_routing_module.adminroutingmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/admin/admin-routing.module.AdminRoutingModule"},{"id":574,"kind":1,"name":"app/pages/admin/admin.component","url":"modules/app_pages_admin_admin_component.html","classes":"tsd-kind-module"},{"id":575,"kind":128,"name":"AdminComponent","url":"classes/app_pages_admin_admin_component.admincomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/admin/admin.component"},{"id":576,"kind":512,"name":"constructor","url":"classes/app_pages_admin_admin_component.admincomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":577,"kind":1024,"name":"dataSource","url":"classes/app_pages_admin_admin_component.admincomponent.html#datasource","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":578,"kind":1024,"name":"displayedColumns","url":"classes/app_pages_admin_admin_component.admincomponent.html#displayedcolumns","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":579,"kind":1024,"name":"action","url":"classes/app_pages_admin_admin_component.admincomponent.html#action","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":580,"kind":1024,"name":"actions","url":"classes/app_pages_admin_admin_component.admincomponent.html#actions","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":581,"kind":1024,"name":"paginator","url":"classes/app_pages_admin_admin_component.admincomponent.html#paginator","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":582,"kind":1024,"name":"sort","url":"classes/app_pages_admin_admin_component.admincomponent.html#sort","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":583,"kind":2048,"name":"ngOnInit","url":"classes/app_pages_admin_admin_component.admincomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":584,"kind":2048,"name":"doFilter","url":"classes/app_pages_admin_admin_component.admincomponent.html#dofilter","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":585,"kind":2048,"name":"approvalStatus","url":"classes/app_pages_admin_admin_component.admincomponent.html#approvalstatus","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":586,"kind":2048,"name":"approveAction","url":"classes/app_pages_admin_admin_component.admincomponent.html#approveaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":587,"kind":2048,"name":"disapproveAction","url":"classes/app_pages_admin_admin_component.admincomponent.html#disapproveaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":588,"kind":2048,"name":"expandCollapse","url":"classes/app_pages_admin_admin_component.admincomponent.html#expandcollapse","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":589,"kind":2048,"name":"downloadCsv","url":"classes/app_pages_admin_admin_component.admincomponent.html#downloadcsv","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":590,"kind":1,"name":"app/pages/admin/admin.module","url":"modules/app_pages_admin_admin_module.html","classes":"tsd-kind-module"},{"id":591,"kind":128,"name":"AdminModule","url":"classes/app_pages_admin_admin_module.adminmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/admin/admin.module"},{"id":592,"kind":512,"name":"constructor","url":"classes/app_pages_admin_admin_module.adminmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/admin/admin.module.AdminModule"},{"id":593,"kind":1,"name":"app/pages/pages-routing.module","url":"modules/app_pages_pages_routing_module.html","classes":"tsd-kind-module"},{"id":594,"kind":128,"name":"PagesRoutingModule","url":"classes/app_pages_pages_routing_module.pagesroutingmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/pages-routing.module"},{"id":595,"kind":512,"name":"constructor","url":"classes/app_pages_pages_routing_module.pagesroutingmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/pages-routing.module.PagesRoutingModule"},{"id":596,"kind":1,"name":"app/pages/pages.component","url":"modules/app_pages_pages_component.html","classes":"tsd-kind-module"},{"id":597,"kind":128,"name":"PagesComponent","url":"classes/app_pages_pages_component.pagescomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/pages.component"},{"id":598,"kind":512,"name":"constructor","url":"classes/app_pages_pages_component.pagescomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/pages.component.PagesComponent"},{"id":599,"kind":1024,"name":"url","url":"classes/app_pages_pages_component.pagescomponent.html#url","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/pages.component.PagesComponent"},{"id":600,"kind":1,"name":"app/pages/pages.module","url":"modules/app_pages_pages_module.html","classes":"tsd-kind-module"},{"id":601,"kind":128,"name":"PagesModule","url":"classes/app_pages_pages_module.pagesmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/pages.module"},{"id":602,"kind":512,"name":"constructor","url":"classes/app_pages_pages_module.pagesmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/pages.module.PagesModule"},{"id":603,"kind":1,"name":"app/pages/settings/organization/organization.component","url":"modules/app_pages_settings_organization_organization_component.html","classes":"tsd-kind-module"},{"id":604,"kind":128,"name":"OrganizationComponent","url":"classes/app_pages_settings_organization_organization_component.organizationcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/settings/organization/organization.component"},{"id":605,"kind":512,"name":"constructor","url":"classes/app_pages_settings_organization_organization_component.organizationcomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/settings/organization/organization.component.OrganizationComponent"},{"id":606,"kind":1024,"name":"organizationForm","url":"classes/app_pages_settings_organization_organization_component.organizationcomponent.html#organizationform","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/settings/organization/organization.component.OrganizationComponent"},{"id":607,"kind":1024,"name":"submitted","url":"classes/app_pages_settings_organization_organization_component.organizationcomponent.html#submitted","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/settings/organization/organization.component.OrganizationComponent"},{"id":608,"kind":1024,"name":"matcher","url":"classes/app_pages_settings_organization_organization_component.organizationcomponent.html#matcher","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/settings/organization/organization.component.OrganizationComponent"},{"id":609,"kind":2048,"name":"ngOnInit","url":"classes/app_pages_settings_organization_organization_component.organizationcomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/settings/organization/organization.component.OrganizationComponent"},{"id":610,"kind":262144,"name":"organizationFormStub","url":"classes/app_pages_settings_organization_organization_component.organizationcomponent.html#organizationformstub","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"app/pages/settings/organization/organization.component.OrganizationComponent"},{"id":611,"kind":2048,"name":"onSubmit","url":"classes/app_pages_settings_organization_organization_component.organizationcomponent.html#onsubmit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/settings/organization/organization.component.OrganizationComponent"},{"id":612,"kind":1,"name":"app/pages/settings/settings-routing.module","url":"modules/app_pages_settings_settings_routing_module.html","classes":"tsd-kind-module"},{"id":613,"kind":128,"name":"SettingsRoutingModule","url":"classes/app_pages_settings_settings_routing_module.settingsroutingmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/settings/settings-routing.module"},{"id":614,"kind":512,"name":"constructor","url":"classes/app_pages_settings_settings_routing_module.settingsroutingmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/settings/settings-routing.module.SettingsRoutingModule"},{"id":615,"kind":1,"name":"app/pages/settings/settings.component","url":"modules/app_pages_settings_settings_component.html","classes":"tsd-kind-module"},{"id":616,"kind":128,"name":"SettingsComponent","url":"classes/app_pages_settings_settings_component.settingscomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/settings/settings.component"},{"id":617,"kind":512,"name":"constructor","url":"classes/app_pages_settings_settings_component.settingscomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":618,"kind":1024,"name":"date","url":"classes/app_pages_settings_settings_component.settingscomponent.html#date","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":619,"kind":1024,"name":"dataSource","url":"classes/app_pages_settings_settings_component.settingscomponent.html#datasource","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":620,"kind":1024,"name":"displayedColumns","url":"classes/app_pages_settings_settings_component.settingscomponent.html#displayedcolumns","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":621,"kind":1024,"name":"trustedUsers","url":"classes/app_pages_settings_settings_component.settingscomponent.html#trustedusers","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":622,"kind":1024,"name":"paginator","url":"classes/app_pages_settings_settings_component.settingscomponent.html#paginator","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":623,"kind":1024,"name":"sort","url":"classes/app_pages_settings_settings_component.settingscomponent.html#sort","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":624,"kind":2048,"name":"ngOnInit","url":"classes/app_pages_settings_settings_component.settingscomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":625,"kind":2048,"name":"doFilter","url":"classes/app_pages_settings_settings_component.settingscomponent.html#dofilter","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":626,"kind":2048,"name":"downloadCsv","url":"classes/app_pages_settings_settings_component.settingscomponent.html#downloadcsv","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":627,"kind":2048,"name":"logout","url":"classes/app_pages_settings_settings_component.settingscomponent.html#logout","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":628,"kind":1,"name":"app/pages/settings/settings.module","url":"modules/app_pages_settings_settings_module.html","classes":"tsd-kind-module"},{"id":629,"kind":128,"name":"SettingsModule","url":"classes/app_pages_settings_settings_module.settingsmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/settings/settings.module"},{"id":630,"kind":512,"name":"constructor","url":"classes/app_pages_settings_settings_module.settingsmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/settings/settings.module.SettingsModule"},{"id":631,"kind":1,"name":"app/pages/tokens/token-details/token-details.component","url":"modules/app_pages_tokens_token_details_token_details_component.html","classes":"tsd-kind-module"},{"id":632,"kind":128,"name":"TokenDetailsComponent","url":"classes/app_pages_tokens_token_details_token_details_component.tokendetailscomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/tokens/token-details/token-details.component"},{"id":633,"kind":512,"name":"constructor","url":"classes/app_pages_tokens_token_details_token_details_component.tokendetailscomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/tokens/token-details/token-details.component.TokenDetailsComponent"},{"id":634,"kind":1024,"name":"token","url":"classes/app_pages_tokens_token_details_token_details_component.tokendetailscomponent.html#token","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/tokens/token-details/token-details.component.TokenDetailsComponent"},{"id":635,"kind":2048,"name":"ngOnInit","url":"classes/app_pages_tokens_token_details_token_details_component.tokendetailscomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/tokens/token-details/token-details.component.TokenDetailsComponent"},{"id":636,"kind":1,"name":"app/pages/tokens/tokens-routing.module","url":"modules/app_pages_tokens_tokens_routing_module.html","classes":"tsd-kind-module"},{"id":637,"kind":128,"name":"TokensRoutingModule","url":"classes/app_pages_tokens_tokens_routing_module.tokensroutingmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/tokens/tokens-routing.module"},{"id":638,"kind":512,"name":"constructor","url":"classes/app_pages_tokens_tokens_routing_module.tokensroutingmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/tokens/tokens-routing.module.TokensRoutingModule"},{"id":639,"kind":1,"name":"app/pages/tokens/tokens.component","url":"modules/app_pages_tokens_tokens_component.html","classes":"tsd-kind-module"},{"id":640,"kind":128,"name":"TokensComponent","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/tokens/tokens.component"},{"id":641,"kind":512,"name":"constructor","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/tokens/tokens.component.TokensComponent"},{"id":642,"kind":1024,"name":"dataSource","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html#datasource","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/tokens/tokens.component.TokensComponent"},{"id":643,"kind":1024,"name":"columnsToDisplay","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html#columnstodisplay","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/tokens/tokens.component.TokensComponent"},{"id":644,"kind":1024,"name":"paginator","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html#paginator","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/tokens/tokens.component.TokensComponent"},{"id":645,"kind":1024,"name":"sort","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html#sort","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/tokens/tokens.component.TokensComponent"},{"id":646,"kind":1024,"name":"tokens","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html#tokens","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/tokens/tokens.component.TokensComponent"},{"id":647,"kind":2048,"name":"ngOnInit","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/tokens/tokens.component.TokensComponent"},{"id":648,"kind":2048,"name":"doFilter","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html#dofilter","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/tokens/tokens.component.TokensComponent"},{"id":649,"kind":2048,"name":"viewToken","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html#viewtoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/tokens/tokens.component.TokensComponent"},{"id":650,"kind":2048,"name":"downloadCsv","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html#downloadcsv","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/tokens/tokens.component.TokensComponent"},{"id":651,"kind":1,"name":"app/pages/tokens/tokens.module","url":"modules/app_pages_tokens_tokens_module.html","classes":"tsd-kind-module"},{"id":652,"kind":128,"name":"TokensModule","url":"classes/app_pages_tokens_tokens_module.tokensmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/tokens/tokens.module"},{"id":653,"kind":512,"name":"constructor","url":"classes/app_pages_tokens_tokens_module.tokensmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/tokens/tokens.module.TokensModule"},{"id":654,"kind":1,"name":"app/pages/transactions/transaction-details/transaction-details.component","url":"modules/app_pages_transactions_transaction_details_transaction_details_component.html","classes":"tsd-kind-module"},{"id":655,"kind":128,"name":"TransactionDetailsComponent","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/transactions/transaction-details/transaction-details.component"},{"id":656,"kind":512,"name":"constructor","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":657,"kind":1024,"name":"transaction","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#transaction","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":658,"kind":1024,"name":"senderBloxbergLink","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#senderbloxberglink","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":659,"kind":1024,"name":"recipientBloxbergLink","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#recipientbloxberglink","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":660,"kind":1024,"name":"traderBloxbergLink","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#traderbloxberglink","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":661,"kind":2048,"name":"ngOnInit","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":662,"kind":2048,"name":"viewSender","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#viewsender","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":663,"kind":2048,"name":"viewRecipient","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#viewrecipient","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":664,"kind":2048,"name":"viewTrader","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#viewtrader","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":665,"kind":2048,"name":"reverseTransaction","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#reversetransaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":666,"kind":2048,"name":"copyAddress","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#copyaddress","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":667,"kind":1,"name":"app/pages/transactions/transactions-routing.module","url":"modules/app_pages_transactions_transactions_routing_module.html","classes":"tsd-kind-module"},{"id":668,"kind":128,"name":"TransactionsRoutingModule","url":"classes/app_pages_transactions_transactions_routing_module.transactionsroutingmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/transactions/transactions-routing.module"},{"id":669,"kind":512,"name":"constructor","url":"classes/app_pages_transactions_transactions_routing_module.transactionsroutingmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/transactions/transactions-routing.module.TransactionsRoutingModule"},{"id":670,"kind":1,"name":"app/pages/transactions/transactions.component","url":"modules/app_pages_transactions_transactions_component.html","classes":"tsd-kind-module"},{"id":671,"kind":128,"name":"TransactionsComponent","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/transactions/transactions.component"},{"id":672,"kind":512,"name":"constructor","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":673,"kind":1024,"name":"transactionDataSource","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#transactiondatasource","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":674,"kind":1024,"name":"transactionDisplayedColumns","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#transactiondisplayedcolumns","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":675,"kind":1024,"name":"defaultPageSize","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#defaultpagesize","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":676,"kind":1024,"name":"pageSizeOptions","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#pagesizeoptions","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":677,"kind":1024,"name":"transactions","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#transactions","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":678,"kind":1024,"name":"transaction","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#transaction","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":679,"kind":1024,"name":"transactionsType","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#transactionstype","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":680,"kind":1024,"name":"transactionsTypes","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#transactionstypes","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":681,"kind":1024,"name":"paginator","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#paginator","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":682,"kind":1024,"name":"sort","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#sort","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":683,"kind":2048,"name":"ngOnInit","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":684,"kind":2048,"name":"viewTransaction","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#viewtransaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":685,"kind":2048,"name":"doFilter","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#dofilter","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":686,"kind":2048,"name":"filterTransactions","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#filtertransactions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":687,"kind":2048,"name":"ngAfterViewInit","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#ngafterviewinit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":688,"kind":2048,"name":"downloadCsv","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#downloadcsv","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":689,"kind":1,"name":"app/pages/transactions/transactions.module","url":"modules/app_pages_transactions_transactions_module.html","classes":"tsd-kind-module"},{"id":690,"kind":128,"name":"TransactionsModule","url":"classes/app_pages_transactions_transactions_module.transactionsmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/transactions/transactions.module"},{"id":691,"kind":512,"name":"constructor","url":"classes/app_pages_transactions_transactions_module.transactionsmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/transactions/transactions.module.TransactionsModule"},{"id":692,"kind":1,"name":"app/shared/_directives/menu-selection.directive","url":"modules/app_shared__directives_menu_selection_directive.html","classes":"tsd-kind-module"},{"id":693,"kind":128,"name":"MenuSelectionDirective","url":"classes/app_shared__directives_menu_selection_directive.menuselectiondirective.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/shared/_directives/menu-selection.directive"},{"id":694,"kind":512,"name":"constructor","url":"classes/app_shared__directives_menu_selection_directive.menuselectiondirective.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/shared/_directives/menu-selection.directive.MenuSelectionDirective"},{"id":695,"kind":2048,"name":"onMenuSelect","url":"classes/app_shared__directives_menu_selection_directive.menuselectiondirective.html#onmenuselect","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/shared/_directives/menu-selection.directive.MenuSelectionDirective"},{"id":696,"kind":1,"name":"app/shared/_directives/menu-toggle.directive","url":"modules/app_shared__directives_menu_toggle_directive.html","classes":"tsd-kind-module"},{"id":697,"kind":128,"name":"MenuToggleDirective","url":"classes/app_shared__directives_menu_toggle_directive.menutoggledirective.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/shared/_directives/menu-toggle.directive"},{"id":698,"kind":512,"name":"constructor","url":"classes/app_shared__directives_menu_toggle_directive.menutoggledirective.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/shared/_directives/menu-toggle.directive.MenuToggleDirective"},{"id":699,"kind":2048,"name":"onMenuToggle","url":"classes/app_shared__directives_menu_toggle_directive.menutoggledirective.html#onmenutoggle","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/shared/_directives/menu-toggle.directive.MenuToggleDirective"},{"id":700,"kind":1,"name":"app/shared/_pipes/safe.pipe","url":"modules/app_shared__pipes_safe_pipe.html","classes":"tsd-kind-module"},{"id":701,"kind":128,"name":"SafePipe","url":"classes/app_shared__pipes_safe_pipe.safepipe.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/shared/_pipes/safe.pipe"},{"id":702,"kind":512,"name":"constructor","url":"classes/app_shared__pipes_safe_pipe.safepipe.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/shared/_pipes/safe.pipe.SafePipe"},{"id":703,"kind":2048,"name":"transform","url":"classes/app_shared__pipes_safe_pipe.safepipe.html#transform","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/shared/_pipes/safe.pipe.SafePipe"},{"id":704,"kind":1,"name":"app/shared/_pipes/token-ratio.pipe","url":"modules/app_shared__pipes_token_ratio_pipe.html","classes":"tsd-kind-module"},{"id":705,"kind":128,"name":"TokenRatioPipe","url":"classes/app_shared__pipes_token_ratio_pipe.tokenratiopipe.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/shared/_pipes/token-ratio.pipe"},{"id":706,"kind":512,"name":"constructor","url":"classes/app_shared__pipes_token_ratio_pipe.tokenratiopipe.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/shared/_pipes/token-ratio.pipe.TokenRatioPipe"},{"id":707,"kind":2048,"name":"transform","url":"classes/app_shared__pipes_token_ratio_pipe.tokenratiopipe.html#transform","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/shared/_pipes/token-ratio.pipe.TokenRatioPipe"},{"id":708,"kind":1,"name":"app/shared/error-dialog/error-dialog.component","url":"modules/app_shared_error_dialog_error_dialog_component.html","classes":"tsd-kind-module"},{"id":709,"kind":128,"name":"ErrorDialogComponent","url":"classes/app_shared_error_dialog_error_dialog_component.errordialogcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/shared/error-dialog/error-dialog.component"},{"id":710,"kind":512,"name":"constructor","url":"classes/app_shared_error_dialog_error_dialog_component.errordialogcomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/shared/error-dialog/error-dialog.component.ErrorDialogComponent"},{"id":711,"kind":1024,"name":"data","url":"classes/app_shared_error_dialog_error_dialog_component.errordialogcomponent.html#data","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/shared/error-dialog/error-dialog.component.ErrorDialogComponent"},{"id":712,"kind":1,"name":"app/shared/footer/footer.component","url":"modules/app_shared_footer_footer_component.html","classes":"tsd-kind-module"},{"id":713,"kind":128,"name":"FooterComponent","url":"classes/app_shared_footer_footer_component.footercomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/shared/footer/footer.component"},{"id":714,"kind":512,"name":"constructor","url":"classes/app_shared_footer_footer_component.footercomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/shared/footer/footer.component.FooterComponent"},{"id":715,"kind":2048,"name":"ngOnInit","url":"classes/app_shared_footer_footer_component.footercomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/shared/footer/footer.component.FooterComponent"},{"id":716,"kind":1,"name":"app/shared/shared.module","url":"modules/app_shared_shared_module.html","classes":"tsd-kind-module"},{"id":717,"kind":128,"name":"SharedModule","url":"classes/app_shared_shared_module.sharedmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/shared/shared.module"},{"id":718,"kind":512,"name":"constructor","url":"classes/app_shared_shared_module.sharedmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/shared/shared.module.SharedModule"},{"id":719,"kind":1,"name":"app/shared/sidebar/sidebar.component","url":"modules/app_shared_sidebar_sidebar_component.html","classes":"tsd-kind-module"},{"id":720,"kind":128,"name":"SidebarComponent","url":"classes/app_shared_sidebar_sidebar_component.sidebarcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/shared/sidebar/sidebar.component"},{"id":721,"kind":512,"name":"constructor","url":"classes/app_shared_sidebar_sidebar_component.sidebarcomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/shared/sidebar/sidebar.component.SidebarComponent"},{"id":722,"kind":2048,"name":"ngOnInit","url":"classes/app_shared_sidebar_sidebar_component.sidebarcomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/shared/sidebar/sidebar.component.SidebarComponent"},{"id":723,"kind":1,"name":"app/shared/topbar/topbar.component","url":"modules/app_shared_topbar_topbar_component.html","classes":"tsd-kind-module"},{"id":724,"kind":128,"name":"TopbarComponent","url":"classes/app_shared_topbar_topbar_component.topbarcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/shared/topbar/topbar.component"},{"id":725,"kind":512,"name":"constructor","url":"classes/app_shared_topbar_topbar_component.topbarcomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/shared/topbar/topbar.component.TopbarComponent"},{"id":726,"kind":2048,"name":"ngOnInit","url":"classes/app_shared_topbar_topbar_component.topbarcomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/shared/topbar/topbar.component.TopbarComponent"},{"id":727,"kind":1,"name":"assets/js/ethtx/dist/hex","url":"modules/assets_js_ethtx_dist_hex.html","classes":"tsd-kind-module"},{"id":728,"kind":64,"name":"fromHex","url":"modules/assets_js_ethtx_dist_hex.html#fromhex","classes":"tsd-kind-function tsd-parent-kind-module","parent":"assets/js/ethtx/dist/hex"},{"id":729,"kind":64,"name":"toHex","url":"modules/assets_js_ethtx_dist_hex.html#tohex","classes":"tsd-kind-function tsd-parent-kind-module","parent":"assets/js/ethtx/dist/hex"},{"id":730,"kind":64,"name":"strip0x","url":"modules/assets_js_ethtx_dist_hex.html#strip0x","classes":"tsd-kind-function tsd-parent-kind-module","parent":"assets/js/ethtx/dist/hex"},{"id":731,"kind":64,"name":"add0x","url":"modules/assets_js_ethtx_dist_hex.html#add0x","classes":"tsd-kind-function tsd-parent-kind-module","parent":"assets/js/ethtx/dist/hex"},{"id":732,"kind":1,"name":"assets/js/ethtx/dist","url":"modules/assets_js_ethtx_dist.html","classes":"tsd-kind-module"},{"id":733,"kind":1,"name":"assets/js/ethtx/dist/tx","url":"modules/assets_js_ethtx_dist_tx.html","classes":"tsd-kind-module"},{"id":734,"kind":128,"name":"Tx","url":"classes/assets_js_ethtx_dist_tx.tx.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"assets/js/ethtx/dist/tx"},{"id":735,"kind":512,"name":"constructor","url":"classes/assets_js_ethtx_dist_tx.tx.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":736,"kind":1024,"name":"nonce","url":"classes/assets_js_ethtx_dist_tx.tx.html#nonce","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":737,"kind":1024,"name":"gasPrice","url":"classes/assets_js_ethtx_dist_tx.tx.html#gasprice","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":738,"kind":1024,"name":"gasLimit","url":"classes/assets_js_ethtx_dist_tx.tx.html#gaslimit","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":739,"kind":1024,"name":"to","url":"classes/assets_js_ethtx_dist_tx.tx.html#to","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":740,"kind":1024,"name":"value","url":"classes/assets_js_ethtx_dist_tx.tx.html#value","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":741,"kind":1024,"name":"data","url":"classes/assets_js_ethtx_dist_tx.tx.html#data","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":742,"kind":1024,"name":"v","url":"classes/assets_js_ethtx_dist_tx.tx.html#v","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":743,"kind":1024,"name":"r","url":"classes/assets_js_ethtx_dist_tx.tx.html#r","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":744,"kind":1024,"name":"s","url":"classes/assets_js_ethtx_dist_tx.tx.html#s","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":745,"kind":1024,"name":"chainId","url":"classes/assets_js_ethtx_dist_tx.tx.html#chainid","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":746,"kind":1024,"name":"_signatureSet","url":"classes/assets_js_ethtx_dist_tx.tx.html#_signatureset","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":747,"kind":1024,"name":"_workBuffer","url":"classes/assets_js_ethtx_dist_tx.tx.html#_workbuffer","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":748,"kind":1024,"name":"_outBuffer","url":"classes/assets_js_ethtx_dist_tx.tx.html#_outbuffer","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":749,"kind":1024,"name":"_outBufferCursor","url":"classes/assets_js_ethtx_dist_tx.tx.html#_outbuffercursor","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":750,"kind":1024,"name":"serializeNumber","url":"classes/assets_js_ethtx_dist_tx.tx.html#serializenumber","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":751,"kind":1024,"name":"write","url":"classes/assets_js_ethtx_dist_tx.tx.html#write","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":752,"kind":2048,"name":"serializeBytes","url":"classes/assets_js_ethtx_dist_tx.tx.html#serializebytes","classes":"tsd-kind-method tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":753,"kind":2048,"name":"canonicalOrder","url":"classes/assets_js_ethtx_dist_tx.tx.html#canonicalorder","classes":"tsd-kind-method tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":754,"kind":2048,"name":"serializeRLP","url":"classes/assets_js_ethtx_dist_tx.tx.html#serializerlp","classes":"tsd-kind-method tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":755,"kind":2048,"name":"message","url":"classes/assets_js_ethtx_dist_tx.tx.html#message","classes":"tsd-kind-method tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":756,"kind":2048,"name":"setSignature","url":"classes/assets_js_ethtx_dist_tx.tx.html#setsignature","classes":"tsd-kind-method tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":757,"kind":2048,"name":"clearSignature","url":"classes/assets_js_ethtx_dist_tx.tx.html#clearsignature","classes":"tsd-kind-method tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":758,"kind":64,"name":"stringToValue","url":"modules/assets_js_ethtx_dist_tx.html#stringtovalue","classes":"tsd-kind-function tsd-parent-kind-module","parent":"assets/js/ethtx/dist/tx"},{"id":759,"kind":64,"name":"hexToValue","url":"modules/assets_js_ethtx_dist_tx.html#hextovalue","classes":"tsd-kind-function tsd-parent-kind-module","parent":"assets/js/ethtx/dist/tx"},{"id":760,"kind":64,"name":"toValue","url":"modules/assets_js_ethtx_dist_tx.html#tovalue","classes":"tsd-kind-function tsd-parent-kind-module","parent":"assets/js/ethtx/dist/tx"},{"id":761,"kind":1,"name":"environments/environment.dev","url":"modules/environments_environment_dev.html","classes":"tsd-kind-module"},{"id":762,"kind":32,"name":"environment","url":"modules/environments_environment_dev.html#environment","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"environments/environment.dev"},{"id":763,"kind":65536,"name":"__type","url":"modules/environments_environment_dev.html#environment.__type","classes":"tsd-kind-type-literal tsd-parent-kind-variable","parent":"environments/environment.dev.environment"},{"id":764,"kind":1024,"name":"production","url":"modules/environments_environment_dev.html#environment.__type.production","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":765,"kind":1024,"name":"bloxbergChainId","url":"modules/environments_environment_dev.html#environment.__type.bloxbergchainid","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":766,"kind":1024,"name":"logLevel","url":"modules/environments_environment_dev.html#environment.__type.loglevel","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":767,"kind":1024,"name":"serverLogLevel","url":"modules/environments_environment_dev.html#environment.__type.serverloglevel","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":768,"kind":1024,"name":"loggingUrl","url":"modules/environments_environment_dev.html#environment.__type.loggingurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":769,"kind":1024,"name":"cicMetaUrl","url":"modules/environments_environment_dev.html#environment.__type.cicmetaurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":770,"kind":1024,"name":"publicKeysUrl","url":"modules/environments_environment_dev.html#environment.__type.publickeysurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":771,"kind":1024,"name":"cicCacheUrl","url":"modules/environments_environment_dev.html#environment.__type.ciccacheurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":772,"kind":1024,"name":"web3Provider","url":"modules/environments_environment_dev.html#environment.__type.web3provider","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":773,"kind":1024,"name":"cicUssdUrl","url":"modules/environments_environment_dev.html#environment.__type.cicussdurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":774,"kind":1024,"name":"registryAddress","url":"modules/environments_environment_dev.html#environment.__type.registryaddress","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":775,"kind":1024,"name":"trustedDeclaratorAddress","url":"modules/environments_environment_dev.html#environment.__type.trusteddeclaratoraddress","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":776,"kind":1,"name":"environments/environment.prod","url":"modules/environments_environment_prod.html","classes":"tsd-kind-module"},{"id":777,"kind":32,"name":"environment","url":"modules/environments_environment_prod.html#environment","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"environments/environment.prod"},{"id":778,"kind":65536,"name":"__type","url":"modules/environments_environment_prod.html#environment.__type","classes":"tsd-kind-type-literal tsd-parent-kind-variable","parent":"environments/environment.prod.environment"},{"id":779,"kind":1024,"name":"production","url":"modules/environments_environment_prod.html#environment.__type.production","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":780,"kind":1024,"name":"bloxbergChainId","url":"modules/environments_environment_prod.html#environment.__type.bloxbergchainid","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":781,"kind":1024,"name":"logLevel","url":"modules/environments_environment_prod.html#environment.__type.loglevel","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":782,"kind":1024,"name":"serverLogLevel","url":"modules/environments_environment_prod.html#environment.__type.serverloglevel","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":783,"kind":1024,"name":"loggingUrl","url":"modules/environments_environment_prod.html#environment.__type.loggingurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":784,"kind":1024,"name":"cicMetaUrl","url":"modules/environments_environment_prod.html#environment.__type.cicmetaurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":785,"kind":1024,"name":"publicKeysUrl","url":"modules/environments_environment_prod.html#environment.__type.publickeysurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":786,"kind":1024,"name":"cicCacheUrl","url":"modules/environments_environment_prod.html#environment.__type.ciccacheurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":787,"kind":1024,"name":"web3Provider","url":"modules/environments_environment_prod.html#environment.__type.web3provider","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":788,"kind":1024,"name":"cicUssdUrl","url":"modules/environments_environment_prod.html#environment.__type.cicussdurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":789,"kind":1024,"name":"registryAddress","url":"modules/environments_environment_prod.html#environment.__type.registryaddress","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":790,"kind":1024,"name":"trustedDeclaratorAddress","url":"modules/environments_environment_prod.html#environment.__type.trusteddeclaratoraddress","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":791,"kind":1,"name":"environments/environment","url":"modules/environments_environment.html","classes":"tsd-kind-module"},{"id":792,"kind":32,"name":"environment","url":"modules/environments_environment.html#environment","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"environments/environment"},{"id":793,"kind":65536,"name":"__type","url":"modules/environments_environment.html#environment.__type","classes":"tsd-kind-type-literal tsd-parent-kind-variable","parent":"environments/environment.environment"},{"id":794,"kind":1024,"name":"production","url":"modules/environments_environment.html#environment.__type.production","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":795,"kind":1024,"name":"bloxbergChainId","url":"modules/environments_environment.html#environment.__type.bloxbergchainid","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":796,"kind":1024,"name":"logLevel","url":"modules/environments_environment.html#environment.__type.loglevel","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":797,"kind":1024,"name":"serverLogLevel","url":"modules/environments_environment.html#environment.__type.serverloglevel","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":798,"kind":1024,"name":"loggingUrl","url":"modules/environments_environment.html#environment.__type.loggingurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":799,"kind":1024,"name":"cicMetaUrl","url":"modules/environments_environment.html#environment.__type.cicmetaurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":800,"kind":1024,"name":"publicKeysUrl","url":"modules/environments_environment.html#environment.__type.publickeysurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":801,"kind":1024,"name":"cicCacheUrl","url":"modules/environments_environment.html#environment.__type.ciccacheurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":802,"kind":1024,"name":"web3Provider","url":"modules/environments_environment.html#environment.__type.web3provider","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":803,"kind":1024,"name":"cicUssdUrl","url":"modules/environments_environment.html#environment.__type.cicussdurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":804,"kind":1024,"name":"registryAddress","url":"modules/environments_environment.html#environment.__type.registryaddress","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":805,"kind":1024,"name":"trustedDeclaratorAddress","url":"modules/environments_environment.html#environment.__type.trusteddeclaratoraddress","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":806,"kind":1,"name":"main","url":"modules/main.html","classes":"tsd-kind-module"},{"id":807,"kind":1,"name":"polyfills","url":"modules/polyfills.html","classes":"tsd-kind-module"},{"id":808,"kind":1,"name":"test","url":"modules/test.html","classes":"tsd-kind-module"},{"id":809,"kind":1,"name":"testing/activated-route-stub","url":"modules/testing_activated_route_stub.html","classes":"tsd-kind-module"},{"id":810,"kind":128,"name":"ActivatedRouteStub","url":"classes/testing_activated_route_stub.activatedroutestub.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"testing/activated-route-stub"},{"id":811,"kind":512,"name":"constructor","url":"classes/testing_activated_route_stub.activatedroutestub.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"testing/activated-route-stub.ActivatedRouteStub"},{"id":812,"kind":1024,"name":"subject","url":"classes/testing_activated_route_stub.activatedroutestub.html#subject","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"testing/activated-route-stub.ActivatedRouteStub"},{"id":813,"kind":1024,"name":"paramMap","url":"classes/testing_activated_route_stub.activatedroutestub.html#parammap","classes":"tsd-kind-property tsd-parent-kind-class","parent":"testing/activated-route-stub.ActivatedRouteStub"},{"id":814,"kind":2048,"name":"setParamMap","url":"classes/testing_activated_route_stub.activatedroutestub.html#setparammap","classes":"tsd-kind-method tsd-parent-kind-class","parent":"testing/activated-route-stub.ActivatedRouteStub"},{"id":815,"kind":1,"name":"testing","url":"modules/testing.html","classes":"tsd-kind-module"},{"id":816,"kind":1,"name":"testing/router-link-directive-stub","url":"modules/testing_router_link_directive_stub.html","classes":"tsd-kind-module"},{"id":817,"kind":128,"name":"RouterLinkDirectiveStub","url":"classes/testing_router_link_directive_stub.routerlinkdirectivestub.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"testing/router-link-directive-stub"},{"id":818,"kind":512,"name":"constructor","url":"classes/testing_router_link_directive_stub.routerlinkdirectivestub.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"testing/router-link-directive-stub.RouterLinkDirectiveStub"},{"id":819,"kind":1024,"name":"linkParams","url":"classes/testing_router_link_directive_stub.routerlinkdirectivestub.html#linkparams","classes":"tsd-kind-property tsd-parent-kind-class","parent":"testing/router-link-directive-stub.RouterLinkDirectiveStub"},{"id":820,"kind":1024,"name":"navigatedTo","url":"classes/testing_router_link_directive_stub.routerlinkdirectivestub.html#navigatedto","classes":"tsd-kind-property tsd-parent-kind-class","parent":"testing/router-link-directive-stub.RouterLinkDirectiveStub"},{"id":821,"kind":2048,"name":"onClick","url":"classes/testing_router_link_directive_stub.routerlinkdirectivestub.html#onclick","classes":"tsd-kind-method tsd-parent-kind-class","parent":"testing/router-link-directive-stub.RouterLinkDirectiveStub"},{"id":822,"kind":1,"name":"testing/shared-module-stub","url":"modules/testing_shared_module_stub.html","classes":"tsd-kind-module"},{"id":823,"kind":128,"name":"SidebarStubComponent","url":"classes/testing_shared_module_stub.sidebarstubcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"testing/shared-module-stub"},{"id":824,"kind":512,"name":"constructor","url":"classes/testing_shared_module_stub.sidebarstubcomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"testing/shared-module-stub.SidebarStubComponent"},{"id":825,"kind":128,"name":"TopbarStubComponent","url":"classes/testing_shared_module_stub.topbarstubcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"testing/shared-module-stub"},{"id":826,"kind":512,"name":"constructor","url":"classes/testing_shared_module_stub.topbarstubcomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"testing/shared-module-stub.TopbarStubComponent"},{"id":827,"kind":128,"name":"FooterStubComponent","url":"classes/testing_shared_module_stub.footerstubcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"testing/shared-module-stub"},{"id":828,"kind":512,"name":"constructor","url":"classes/testing_shared_module_stub.footerstubcomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"testing/shared-module-stub.FooterStubComponent"},{"id":829,"kind":1,"name":"testing/token-service-stub","url":"modules/testing_token_service_stub.html","classes":"tsd-kind-module"},{"id":830,"kind":128,"name":"TokenServiceStub","url":"classes/testing_token_service_stub.tokenservicestub.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"testing/token-service-stub"},{"id":831,"kind":512,"name":"constructor","url":"classes/testing_token_service_stub.tokenservicestub.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"testing/token-service-stub.TokenServiceStub"},{"id":832,"kind":2048,"name":"getBySymbol","url":"classes/testing_token_service_stub.tokenservicestub.html#getbysymbol","classes":"tsd-kind-method tsd-parent-kind-class","parent":"testing/token-service-stub.TokenServiceStub"},{"id":833,"kind":1,"name":"testing/transaction-service-stub","url":"modules/testing_transaction_service_stub.html","classes":"tsd-kind-module"},{"id":834,"kind":128,"name":"TransactionServiceStub","url":"classes/testing_transaction_service_stub.transactionservicestub.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"testing/transaction-service-stub"},{"id":835,"kind":512,"name":"constructor","url":"classes/testing_transaction_service_stub.transactionservicestub.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"testing/transaction-service-stub.TransactionServiceStub"},{"id":836,"kind":2048,"name":"setTransaction","url":"classes/testing_transaction_service_stub.transactionservicestub.html#settransaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"testing/transaction-service-stub.TransactionServiceStub"},{"id":837,"kind":2048,"name":"setConversion","url":"classes/testing_transaction_service_stub.transactionservicestub.html#setconversion","classes":"tsd-kind-method tsd-parent-kind-class","parent":"testing/transaction-service-stub.TransactionServiceStub"},{"id":838,"kind":2048,"name":"getAllTransactions","url":"classes/testing_transaction_service_stub.transactionservicestub.html#getalltransactions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"testing/transaction-service-stub.TransactionServiceStub"},{"id":839,"kind":1,"name":"testing/user-service-stub","url":"modules/testing_user_service_stub.html","classes":"tsd-kind-module"},{"id":840,"kind":128,"name":"UserServiceStub","url":"classes/testing_user_service_stub.userservicestub.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"testing/user-service-stub"},{"id":841,"kind":512,"name":"constructor","url":"classes/testing_user_service_stub.userservicestub.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"testing/user-service-stub.UserServiceStub"},{"id":842,"kind":1024,"name":"users","url":"classes/testing_user_service_stub.userservicestub.html#users","classes":"tsd-kind-property tsd-parent-kind-class","parent":"testing/user-service-stub.UserServiceStub"},{"id":843,"kind":1024,"name":"actions","url":"classes/testing_user_service_stub.userservicestub.html#actions","classes":"tsd-kind-property tsd-parent-kind-class","parent":"testing/user-service-stub.UserServiceStub"},{"id":844,"kind":2048,"name":"getUserById","url":"classes/testing_user_service_stub.userservicestub.html#getuserbyid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"testing/user-service-stub.UserServiceStub"},{"id":845,"kind":2048,"name":"getUser","url":"classes/testing_user_service_stub.userservicestub.html#getuser","classes":"tsd-kind-method tsd-parent-kind-class","parent":"testing/user-service-stub.UserServiceStub"},{"id":846,"kind":2048,"name":"getActionById","url":"classes/testing_user_service_stub.userservicestub.html#getactionbyid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"testing/user-service-stub.UserServiceStub"},{"id":847,"kind":2048,"name":"approveAction","url":"classes/testing_user_service_stub.userservicestub.html#approveaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"testing/user-service-stub.UserServiceStub"},{"id":848,"kind":16777216,"name":"AccountIndex","url":"modules/app__eth.html#accountindex","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_eth"},{"id":849,"kind":16777216,"name":"TokenRegistry","url":"modules/app__eth.html#tokenregistry","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_eth"},{"id":850,"kind":16777216,"name":"AuthGuard","url":"modules/app__guards.html#authguard","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_guards"},{"id":851,"kind":16777216,"name":"RoleGuard","url":"modules/app__guards.html#roleguard","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_guards"},{"id":852,"kind":16777216,"name":"arraySum","url":"modules/app__helpers.html#arraysum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":853,"kind":16777216,"name":"copyToClipboard","url":"modules/app__helpers.html#copytoclipboard","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":854,"kind":16777216,"name":"CustomValidator","url":"modules/app__helpers.html#customvalidator","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":855,"kind":16777216,"name":"CustomErrorStateMatcher","url":"modules/app__helpers.html#customerrorstatematcher","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":856,"kind":16777216,"name":"exportCsv","url":"modules/app__helpers.html#exportcsv","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":857,"kind":16777216,"name":"HttpError","url":"modules/app__helpers.html#httperror","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":858,"kind":16777216,"name":"GlobalErrorHandler","url":"modules/app__helpers.html#globalerrorhandler","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":859,"kind":16777216,"name":"HttpGetter","url":"modules/app__helpers.html#httpgetter","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":860,"kind":16777216,"name":"MockBackendInterceptor","url":"modules/app__helpers.html#mockbackendinterceptor","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":861,"kind":16777216,"name":"MockBackendProvider","url":"modules/app__helpers.html#mockbackendprovider","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":862,"kind":16777216,"name":"readCsv","url":"modules/app__helpers.html#readcsv","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":863,"kind":16777216,"name":"personValidation","url":"modules/app__helpers.html#personvalidation","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":864,"kind":16777216,"name":"vcardValidation","url":"modules/app__helpers.html#vcardvalidation","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":865,"kind":16777216,"name":"ErrorInterceptor","url":"modules/app__interceptors.html#errorinterceptor","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_interceptors"},{"id":866,"kind":16777216,"name":"HttpConfigInterceptor","url":"modules/app__interceptors.html#httpconfiginterceptor","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_interceptors"},{"id":867,"kind":16777216,"name":"LoggingInterceptor","url":"modules/app__interceptors.html#logginginterceptor","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_interceptors"},{"id":868,"kind":16777216,"name":"BlocksBloom","url":"modules/app__models.html#blocksbloom","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":869,"kind":16777216,"name":"TxToken","url":"modules/app__models.html#txtoken","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":870,"kind":16777216,"name":"Tx","url":"modules/app__models.html#tx","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":871,"kind":16777216,"name":"Transaction","url":"modules/app__models.html#transaction","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":872,"kind":16777216,"name":"Conversion","url":"modules/app__models.html#conversion","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":873,"kind":16777216,"name":"Settings","url":"modules/app__models.html#settings","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":874,"kind":16777216,"name":"W3","url":"modules/app__models.html#w3","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":875,"kind":16777216,"name":"AccountDetails","url":"modules/app__models.html#accountdetails","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":876,"kind":16777216,"name":"Signature","url":"modules/app__models.html#signature","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":877,"kind":16777216,"name":"Meta","url":"modules/app__models.html#meta","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":878,"kind":16777216,"name":"MetaResponse","url":"modules/app__models.html#metaresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":879,"kind":16777216,"name":"defaultAccount","url":"modules/app__models.html#defaultaccount","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":880,"kind":16777216,"name":"Staff","url":"modules/app__models.html#staff","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":881,"kind":16777216,"name":"Token","url":"modules/app__models.html#token","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":882,"kind":16777216,"name":"Action","url":"modules/app__models.html#action","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":883,"kind":16777216,"name":"Category","url":"modules/app__models.html#category","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":884,"kind":16777216,"name":"AreaName","url":"modules/app__models.html#areaname","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":885,"kind":16777216,"name":"AreaType","url":"modules/app__models.html#areatype","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":886,"kind":16777216,"name":"MutablePgpKeyStore","url":"modules/app__pgp.html#mutablepgpkeystore","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":887,"kind":16777216,"name":"MutableKeyStore","url":"modules/app__pgp.html#mutablekeystore","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":888,"kind":16777216,"name":"Signable","url":"modules/app__pgp.html#signable","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":889,"kind":16777216,"name":"Signature","url":"modules/app__pgp.html#signature","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":890,"kind":16777216,"name":"Signer","url":"modules/app__pgp.html#signer","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":891,"kind":16777216,"name":"PGPSigner","url":"modules/app__pgp.html#pgpsigner","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":892,"kind":16777216,"name":"AuthService","url":"modules/app__services.html#authservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":893,"kind":16777216,"name":"TransactionService","url":"modules/app__services.html#transactionservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":894,"kind":16777216,"name":"UserService","url":"modules/app__services.html#userservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":895,"kind":16777216,"name":"TokenService","url":"modules/app__services.html#tokenservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":896,"kind":16777216,"name":"BlockSyncService","url":"modules/app__services.html#blocksyncservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":897,"kind":16777216,"name":"LocationService","url":"modules/app__services.html#locationservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":898,"kind":16777216,"name":"LoggingService","url":"modules/app__services.html#loggingservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":899,"kind":16777216,"name":"ErrorDialogService","url":"modules/app__services.html#errordialogservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":900,"kind":16777216,"name":"Tx","url":"modules/assets_js_ethtx_dist.html#tx","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"assets/js/ethtx/dist"},{"id":901,"kind":16777216,"name":"ActivatedRouteStub","url":"modules/testing.html#activatedroutestub","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":902,"kind":16777216,"name":"RouterLinkDirectiveStub","url":"modules/testing.html#routerlinkdirectivestub","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":903,"kind":16777216,"name":"SidebarStubComponent","url":"modules/testing.html#sidebarstubcomponent","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":904,"kind":16777216,"name":"TopbarStubComponent","url":"modules/testing.html#topbarstubcomponent","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":905,"kind":16777216,"name":"FooterStubComponent","url":"modules/testing.html#footerstubcomponent","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":906,"kind":16777216,"name":"UserServiceStub","url":"modules/testing.html#userservicestub","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":907,"kind":16777216,"name":"TokenServiceStub","url":"modules/testing.html#tokenservicestub","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":908,"kind":16777216,"name":"TransactionServiceStub","url":"modules/testing.html#transactionservicestub","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"}],"index":{"version":"2.3.9","fields":["name","parent"],"fieldVectors":[["name/0",[0,60.406]],["parent/0",[]],["name/1",[1,60.406]],["parent/1",[0,6.733]],["name/2",[2,24.97]],["parent/2",[3,5.336]],["name/3",[4,60.406]],["parent/3",[3,5.336]],["name/4",[5,60.406]],["parent/4",[3,5.336]],["name/5",[6,60.406]],["parent/5",[3,5.336]],["name/6",[7,65.638]],["parent/6",[3,5.336]],["name/7",[8,65.638]],["parent/7",[3,5.336]],["name/8",[9,65.638]],["parent/8",[3,5.336]],["name/9",[10,65.638]],["parent/9",[3,5.336]],["name/10",[11,56.959]],["parent/10",[]],["name/11",[12,33.506,13,35.242]],["parent/11",[]],["name/12",[14,56.959]],["parent/12",[12,3.93,13,4.134]],["name/13",[2,24.97]],["parent/13",[12,3.93,15,4.134]],["name/14",[4,60.406]],["parent/14",[12,3.93,15,4.134]],["name/15",[5,60.406]],["parent/15",[12,3.93,15,4.134]],["name/16",[6,60.406]],["parent/16",[12,3.93,15,4.134]],["name/17",[16,65.638]],["parent/17",[12,3.93,15,4.134]],["name/18",[17,65.638]],["parent/18",[12,3.93,15,4.134]],["name/19",[18,65.638]],["parent/19",[12,3.93,15,4.134]],["name/20",[19,60.406]],["parent/20",[]],["name/21",[20,60.406]],["parent/21",[19,6.733]],["name/22",[2,24.97]],["parent/22",[21,6.733]],["name/23",[22,60.406]],["parent/23",[21,6.733]],["name/24",[23,56.959]],["parent/24",[]],["name/25",[24,60.406]],["parent/25",[]],["name/26",[25,60.406]],["parent/26",[24,6.733]],["name/27",[2,24.97]],["parent/27",[26,6.733]],["name/28",[22,60.406]],["parent/28",[26,6.733]],["name/29",[27,43.31,28,43.31]],["parent/29",[]],["name/30",[29,60.406]],["parent/30",[27,5.08,28,5.08]],["name/31",[30,43.31,31,43.31]],["parent/31",[]],["name/32",[32,60.406]],["parent/32",[30,5.08,31,5.08]],["name/33",[33,24.9,34,19.099,35,24.9,36,22.504]],["parent/33",[]],["name/34",[37,60.406]],["parent/34",[33,3.068,34,2.353,35,3.068,36,2.773]],["name/35",[2,24.97]],["parent/35",[33,3.068,34,2.353,35,3.068,38,3.407]],["name/36",[39,65.638]],["parent/36",[33,3.068,34,2.353,35,3.068,38,3.407]],["name/37",[40,60.406]],["parent/37",[]],["name/38",[41,60.406]],["parent/38",[40,6.733]],["name/39",[42,65.638]],["parent/39",[43,6.349]],["name/40",[44,65.638]],["parent/40",[43,6.349]],["name/41",[2,24.97]],["parent/41",[43,6.349]],["name/42",[45,43.31,46,38.993]],["parent/42",[]],["name/43",[47,60.406]],["parent/43",[45,5.08,46,4.574]],["name/44",[34,23.312,48,25.021,49,31.831]],["parent/44",[]],["name/45",[50,60.406]],["parent/45",[34,2.817,48,3.023,49,3.846]],["name/46",[51,42.4]],["parent/46",[34,2.817,48,3.023,52,3.846]],["name/47",[2,24.97]],["parent/47",[34,2.817,48,3.023,52,3.846]],["name/48",[53,65.638]],["parent/48",[34,2.817,48,3.023,52,3.846]],["name/49",[54,60.406]],["parent/49",[34,2.817,48,3.023,49,3.846]],["name/50",[2,24.97]],["parent/50",[34,2.817,48,3.023,55,3.534]],["name/51",[56,65.638]],["parent/51",[34,2.817,48,3.023,55,3.534]],["name/52",[57,65.638]],["parent/52",[34,2.817,48,3.023,55,3.534]],["name/53",[58,65.638]],["parent/53",[34,2.817,48,3.023,55,3.534]],["name/54",[59,65.638]],["parent/54",[34,2.817,48,3.023,55,3.534]],["name/55",[60,43.31,61,43.31]],["parent/55",[]],["name/56",[62,60.406]],["parent/56",[60,5.08,61,5.08]],["name/57",[63,42.4]],["parent/57",[]],["name/58",[64,33.506,65,40.839]],["parent/58",[]],["name/59",[66,60.406]],["parent/59",[64,3.93,65,4.79]],["name/60",[2,24.97]],["parent/60",[64,3.93,67,5.08]],["name/61",[68,54.385]],["parent/61",[64,3.93,67,5.08]],["name/62",[69,60.406]],["parent/62",[64,3.93,65,4.79]],["name/63",[51,42.4]],["parent/63",[64,3.93,70,5.52]],["name/64",[71,65.638]],["parent/64",[64,3.93,72,4.79]],["name/65",[73,65.638]],["parent/65",[64,3.93,72,4.79]],["name/66",[74,65.638]],["parent/66",[64,3.93,72,4.79]],["name/67",[46,38.993,75,43.31]],["parent/67",[]],["name/68",[76,60.406]],["parent/68",[46,4.574,75,5.08]],["name/69",[77,40.839,78,40.839]],["parent/69",[]],["name/70",[79,60.406]],["parent/70",[77,4.79,78,4.79]],["name/71",[80,60.406]],["parent/71",[77,4.79,78,4.79]],["name/72",[81,60.406]],["parent/72",[]],["name/73",[82,60.406]],["parent/73",[81,6.733]],["name/74",[2,24.97]],["parent/74",[83,6.733]],["name/75",[68,54.385]],["parent/75",[83,6.733]],["name/76",[84,38.993,85,43.31]],["parent/76",[]],["name/77",[86,60.406]],["parent/77",[84,4.574,85,5.08]],["name/78",[2,24.97]],["parent/78",[84,4.574,87,5.08]],["name/79",[68,54.385]],["parent/79",[84,4.574,87,5.08]],["name/80",[88,54.385]],["parent/80",[]],["name/81",[89,60.406]],["parent/81",[]],["name/82",[90,60.406]],["parent/82",[89,6.733]],["name/83",[2,24.97]],["parent/83",[91,6.733]],["name/84",[68,54.385]],["parent/84",[91,6.733]],["name/85",[92,50.618]],["parent/85",[]],["name/86",[93,60.406]],["parent/86",[92,5.642]],["name/87",[94,65.638]],["parent/87",[95,4.808]],["name/88",[96,65.638]],["parent/88",[95,4.808]],["name/89",[97,65.638]],["parent/89",[95,4.808]],["name/90",[98,60.406]],["parent/90",[95,4.808]],["name/91",[99,60.406]],["parent/91",[95,4.808]],["name/92",[100,65.638]],["parent/92",[95,4.808]],["name/93",[51,42.4]],["parent/93",[95,4.808]],["name/94",[101,65.638]],["parent/94",[102,4.895]],["name/95",[51,42.4]],["parent/95",[102,4.895]],["name/96",[103,65.638]],["parent/96",[104,6.733]],["name/97",[105,65.638]],["parent/97",[104,6.733]],["name/98",[106,65.638]],["parent/98",[102,4.895]],["name/99",[107,65.638]],["parent/99",[102,4.895]],["name/100",[108,65.638]],["parent/100",[95,4.808]],["name/101",[51,42.4]],["parent/101",[95,4.808]],["name/102",[109,60.406]],["parent/102",[102,4.895]],["name/103",[110,65.638]],["parent/103",[102,4.895]],["name/104",[111,65.638]],["parent/104",[102,4.895]],["name/105",[112,60.406]],["parent/105",[95,4.808]],["name/106",[113,56.959]],["parent/106",[95,4.808]],["name/107",[114,65.638]],["parent/107",[95,4.808]],["name/108",[51,42.4]],["parent/108",[95,4.808]],["name/109",[115,60.406]],["parent/109",[102,4.895]],["name/110",[116,65.638]],["parent/110",[102,4.895]],["name/111",[117,65.638]],["parent/111",[102,4.895]],["name/112",[118,65.638]],["parent/112",[102,4.895]],["name/113",[119,65.638]],["parent/113",[102,4.895]],["name/114",[120,50.618]],["parent/114",[92,5.642]],["name/115",[121,56.959]],["parent/115",[122,6.062]],["name/116",[123,52.329]],["parent/116",[122,6.062]],["name/117",[124,56.959]],["parent/117",[122,6.062]],["name/118",[125,54.385]],["parent/118",[122,6.062]],["name/119",[126,60.406]],["parent/119",[92,5.642]],["name/120",[123,52.329]],["parent/120",[127,6.349]],["name/121",[128,54.385]],["parent/121",[127,6.349]],["name/122",[120,50.618]],["parent/122",[127,6.349]],["name/123",[129,60.406]],["parent/123",[92,5.642]],["name/124",[128,54.385]],["parent/124",[130,6.733]],["name/125",[131,65.638]],["parent/125",[130,6.733]],["name/126",[132,60.406]],["parent/126",[92,5.642]],["name/127",[133,39.365]],["parent/127",[]],["name/128",[134,52.329]],["parent/128",[]],["name/129",[135,54.385]],["parent/129",[134,5.833]],["name/130",[128,54.385]],["parent/130",[136,5.833]],["name/131",[137,60.406]],["parent/131",[136,5.833]],["name/132",[138,65.638]],["parent/132",[136,5.833]],["name/133",[135,54.385]],["parent/133",[136,5.833]],["name/134",[139,65.638]],["parent/134",[136,5.833]],["name/135",[113,56.959]],["parent/135",[134,5.833]],["name/136",[140,50.618]],["parent/136",[141,6.733]],["name/137",[112,60.406]],["parent/137",[141,6.733]],["name/138",[142,60.406]],["parent/138",[134,5.833]],["name/139",[140,50.618]],["parent/139",[143,6.733]],["name/140",[144,65.638]],["parent/140",[143,6.733]],["name/141",[145,60.406]],["parent/141",[134,5.833]],["name/142",[140,50.618]],["parent/142",[146,6.733]],["name/143",[109,60.406]],["parent/143",[146,6.733]],["name/144",[147,56.959]],["parent/144",[]],["name/145",[148,60.406]],["parent/145",[147,6.349]],["name/146",[2,24.97]],["parent/146",[149,5.833]],["name/147",[150,56.959]],["parent/147",[149,5.833]],["name/148",[151,65.638]],["parent/148",[149,5.833]],["name/149",[13,49.152]],["parent/149",[149,5.833]],["name/150",[152,65.638]],["parent/150",[149,5.833]],["name/151",[150,56.959]],["parent/151",[147,6.349]],["name/152",[2,24.97]],["parent/152",[153,6.349]],["name/153",[125,54.385]],["parent/153",[153,6.349]],["name/154",[154,65.638]],["parent/154",[153,6.349]],["name/155",[155,60.406]],["parent/155",[]],["name/156",[156,60.406]],["parent/156",[155,6.733]],["name/157",[157,65.638]],["parent/157",[158,5.833]],["name/158",[115,60.406]],["parent/158",[158,5.833]],["name/159",[140,50.618]],["parent/159",[158,5.833]],["name/160",[159,65.638]],["parent/160",[158,5.833]],["name/161",[160,65.638]],["parent/161",[158,5.833]],["name/162",[161,60.406]],["parent/162",[]],["name/163",[162,54.385]],["parent/163",[161,6.733]],["name/164",[140,50.618]],["parent/164",[163,5.209]],["name/165",[164,60.406]],["parent/165",[163,5.209]],["name/166",[165,60.406]],["parent/166",[163,5.209]],["name/167",[166,65.638]],["parent/167",[163,5.209]],["name/168",[167,65.638]],["parent/168",[163,5.209]],["name/169",[168,65.638]],["parent/169",[163,5.209]],["name/170",[51,42.4]],["parent/170",[163,5.209]],["name/171",[169,65.638]],["parent/171",[170,6.733]],["name/172",[51,42.4]],["parent/172",[170,6.733]],["name/173",[171,65.638]],["parent/173",[172,6.733]],["name/174",[99,60.406]],["parent/174",[172,6.733]],["name/175",[173,65.638]],["parent/175",[163,5.209]],["name/176",[174,65.638]],["parent/176",[163,5.209]],["name/177",[175,50.618]],["parent/177",[]],["name/178",[176,60.406]],["parent/178",[175,5.642]],["name/179",[2,24.97]],["parent/179",[177,5.642]],["name/180",[178,65.638]],["parent/180",[177,5.642]],["name/181",[179,65.638]],["parent/181",[177,5.642]],["name/182",[180,65.638]],["parent/182",[177,5.642]],["name/183",[181,65.638]],["parent/183",[177,5.642]],["name/184",[182,65.638]],["parent/184",[177,5.642]],["name/185",[183,60.406]],["parent/185",[175,5.642]],["name/186",[2,24.97]],["parent/186",[184,6.062]],["name/187",[165,60.406]],["parent/187",[184,6.062]],["name/188",[140,50.618]],["parent/188",[184,6.062]],["name/189",[164,60.406]],["parent/189",[184,6.062]],["name/190",[185,50.618]],["parent/190",[175,5.642]],["name/191",[2,24.97]],["parent/191",[186,5.642]],["name/192",[187,65.638]],["parent/192",[186,5.642]],["name/193",[188,65.638]],["parent/193",[186,5.642]],["name/194",[189,65.638]],["parent/194",[186,5.642]],["name/195",[190,65.638]],["parent/195",[186,5.642]],["name/196",[191,65.638]],["parent/196",[186,5.642]],["name/197",[192,52.329]],["parent/197",[175,5.642]],["name/198",[2,24.97]],["parent/198",[193,5.209]],["name/199",[194,65.638]],["parent/199",[193,5.209]],["name/200",[195,65.638]],["parent/200",[193,5.209]],["name/201",[196,60.406]],["parent/201",[193,5.209]],["name/202",[197,65.638]],["parent/202",[193,5.209]],["name/203",[162,54.385]],["parent/203",[193,5.209]],["name/204",[185,50.618]],["parent/204",[193,5.209]],["name/205",[198,60.406]],["parent/205",[193,5.209]],["name/206",[98,60.406]],["parent/206",[193,5.209]],["name/207",[199,60.406]],["parent/207",[175,5.642]],["name/208",[2,24.97]],["parent/208",[200,5.336]],["name/209",[201,65.638]],["parent/209",[200,5.336]],["name/210",[202,65.638]],["parent/210",[200,5.336]],["name/211",[203,65.638]],["parent/211",[200,5.336]],["name/212",[204,60.406]],["parent/212",[200,5.336]],["name/213",[205,65.638]],["parent/213",[200,5.336]],["name/214",[137,60.406]],["parent/214",[200,5.336]],["name/215",[185,50.618]],["parent/215",[200,5.336]],["name/216",[206,49.152]],["parent/216",[]],["name/217",[207,13.471,208,16.115,209,31.831]],["parent/217",[]],["name/218",[210,60.406]],["parent/218",[207,1.628,208,1.947,209,3.846]],["name/219",[2,24.97]],["parent/219",[207,1.628,208,1.947,211,2.446]],["name/220",[212,60.406]],["parent/220",[207,1.628,208,1.947,211,2.446]],["name/221",[213,60.406]],["parent/221",[207,1.628,208,1.947,211,2.446]],["name/222",[214,60.406]],["parent/222",[207,1.628,208,1.947,211,2.446]],["name/223",[215,60.406]],["parent/223",[207,1.628,208,1.947,211,2.446]],["name/224",[216,56.959]],["parent/224",[207,1.628,208,1.947,211,2.446]],["name/225",[217,60.406]],["parent/225",[207,1.628,208,1.947,211,2.446]],["name/226",[218,60.406]],["parent/226",[207,1.628,208,1.947,211,2.446]],["name/227",[219,60.406]],["parent/227",[207,1.628,208,1.947,211,2.446]],["name/228",[220,60.406]],["parent/228",[207,1.628,208,1.947,211,2.446]],["name/229",[221,56.959]],["parent/229",[207,1.628,208,1.947,211,2.446]],["name/230",[222,60.406]],["parent/230",[207,1.628,208,1.947,211,2.446]],["name/231",[223,60.406]],["parent/231",[207,1.628,208,1.947,211,2.446]],["name/232",[224,60.406]],["parent/232",[207,1.628,208,1.947,211,2.446]],["name/233",[225,60.406]],["parent/233",[207,1.628,208,1.947,211,2.446]],["name/234",[226,60.406]],["parent/234",[207,1.628,208,1.947,211,2.446]],["name/235",[227,60.406]],["parent/235",[207,1.628,208,1.947,211,2.446]],["name/236",[228,60.406]],["parent/236",[207,1.628,208,1.947,211,2.446]],["name/237",[229,60.406]],["parent/237",[207,1.628,208,1.947,211,2.446]],["name/238",[230,60.406]],["parent/238",[207,1.628,208,1.947,211,2.446]],["name/239",[231,60.406]],["parent/239",[207,1.628,208,1.947,211,2.446]],["name/240",[232,60.406]],["parent/240",[207,1.628,208,1.947,211,2.446]],["name/241",[233,60.406]],["parent/241",[207,1.628,208,1.947,211,2.446]],["name/242",[234,60.406]],["parent/242",[207,1.628,208,1.947,211,2.446]],["name/243",[235,60.406]],["parent/243",[207,1.628,208,1.947,211,2.446]],["name/244",[236,54.385]],["parent/244",[207,1.628,208,1.947,211,2.446]],["name/245",[237,56.959]],["parent/245",[207,1.628,208,1.947,209,3.846]],["name/246",[212,60.406]],["parent/246",[207,1.628,208,1.947,238,2.473]],["name/247",[213,60.406]],["parent/247",[207,1.628,208,1.947,238,2.473]],["name/248",[214,60.406]],["parent/248",[207,1.628,208,1.947,238,2.473]],["name/249",[215,60.406]],["parent/249",[207,1.628,208,1.947,238,2.473]],["name/250",[216,56.959]],["parent/250",[207,1.628,208,1.947,238,2.473]],["name/251",[217,60.406]],["parent/251",[207,1.628,208,1.947,238,2.473]],["name/252",[218,60.406]],["parent/252",[207,1.628,208,1.947,238,2.473]],["name/253",[219,60.406]],["parent/253",[207,1.628,208,1.947,238,2.473]],["name/254",[220,60.406]],["parent/254",[207,1.628,208,1.947,238,2.473]],["name/255",[221,56.959]],["parent/255",[207,1.628,208,1.947,238,2.473]],["name/256",[222,60.406]],["parent/256",[207,1.628,208,1.947,238,2.473]],["name/257",[223,60.406]],["parent/257",[207,1.628,208,1.947,238,2.473]],["name/258",[224,60.406]],["parent/258",[207,1.628,208,1.947,238,2.473]],["name/259",[225,60.406]],["parent/259",[207,1.628,208,1.947,238,2.473]],["name/260",[226,60.406]],["parent/260",[207,1.628,208,1.947,238,2.473]],["name/261",[227,60.406]],["parent/261",[207,1.628,208,1.947,238,2.473]],["name/262",[228,60.406]],["parent/262",[207,1.628,208,1.947,238,2.473]],["name/263",[229,60.406]],["parent/263",[207,1.628,208,1.947,238,2.473]],["name/264",[230,60.406]],["parent/264",[207,1.628,208,1.947,238,2.473]],["name/265",[231,60.406]],["parent/265",[207,1.628,208,1.947,238,2.473]],["name/266",[232,60.406]],["parent/266",[207,1.628,208,1.947,238,2.473]],["name/267",[233,60.406]],["parent/267",[207,1.628,208,1.947,238,2.473]],["name/268",[234,60.406]],["parent/268",[207,1.628,208,1.947,238,2.473]],["name/269",[235,60.406]],["parent/269",[207,1.628,208,1.947,238,2.473]],["name/270",[236,54.385]],["parent/270",[207,1.628,208,1.947,238,2.473]],["name/271",[207,17.283,239,34.322]],["parent/271",[]],["name/272",[240,60.406]],["parent/272",[207,2.027,239,4.026]],["name/273",[124,56.959]],["parent/273",[207,2.027,241,5.52]],["name/274",[120,50.618]],["parent/274",[207,2.027,239,4.026]],["name/275",[51,42.4]],["parent/275",[207,2.027,242,5.52]],["name/276",[125,54.385]],["parent/276",[207,2.027,243,4.574]],["name/277",[121,56.959]],["parent/277",[207,2.027,243,4.574]],["name/278",[123,52.329]],["parent/278",[207,2.027,243,4.574]],["name/279",[124,56.959]],["parent/279",[207,2.027,243,4.574]],["name/280",[239,47.87]],["parent/280",[207,2.027,239,4.026]],["name/281",[244,60.406]],["parent/281",[207,2.027,245,4.257]],["name/282",[246,60.406]],["parent/282",[207,2.027,245,4.257]],["name/283",[247,60.406]],["parent/283",[207,2.027,245,4.257]],["name/284",[248,60.406]],["parent/284",[207,2.027,245,4.257]],["name/285",[249,60.406]],["parent/285",[207,2.027,245,4.257]],["name/286",[236,54.385]],["parent/286",[207,2.027,245,4.257]],["name/287",[250,60.406]],["parent/287",[207,2.027,239,4.026]],["name/288",[2,24.97]],["parent/288",[207,2.027,251,3.508]],["name/289",[125,54.385]],["parent/289",[207,2.027,251,3.508]],["name/290",[121,56.959]],["parent/290",[207,2.027,251,3.508]],["name/291",[252,65.638]],["parent/291",[207,2.027,251,3.508]],["name/292",[120,50.618]],["parent/292",[207,2.027,251,3.508]],["name/293",[253,60.406]],["parent/293",[207,2.027,251,3.508]],["name/294",[244,60.406]],["parent/294",[207,2.027,251,3.508]],["name/295",[51,42.4]],["parent/295",[207,2.027,251,3.508]],["name/296",[246,60.406]],["parent/296",[207,2.027,251,3.508]],["name/297",[51,42.4]],["parent/297",[207,2.027,251,3.508]],["name/298",[254,56.959]],["parent/298",[207,2.027,251,3.508]],["name/299",[247,60.406]],["parent/299",[207,2.027,251,3.508]],["name/300",[248,60.406]],["parent/300",[207,2.027,251,3.508]],["name/301",[249,60.406]],["parent/301",[207,2.027,251,3.508]],["name/302",[236,54.385]],["parent/302",[207,2.027,251,3.508]],["name/303",[255,60.406]],["parent/303",[]],["name/304",[256,60.406]],["parent/304",[255,6.733]],["name/305",[2,24.97]],["parent/305",[257,4.511]],["name/306",[258,65.638]],["parent/306",[257,4.511]],["name/307",[259,65.638]],["parent/307",[257,4.511]],["name/308",[237,56.959]],["parent/308",[257,4.511]],["name/309",[260,65.638]],["parent/309",[257,4.511]],["name/310",[261,65.638]],["parent/310",[257,4.511]],["name/311",[262,65.638]],["parent/311",[257,4.511]],["name/312",[263,65.638]],["parent/312",[257,4.511]],["name/313",[264,65.638]],["parent/313",[257,4.511]],["name/314",[265,60.406]],["parent/314",[257,4.511]],["name/315",[266,65.638]],["parent/315",[257,4.511]],["name/316",[267,65.638]],["parent/316",[257,4.511]],["name/317",[268,65.638]],["parent/317",[257,4.511]],["name/318",[269,60.406]],["parent/318",[257,4.511]],["name/319",[270,65.638]],["parent/319",[257,4.511]],["name/320",[216,56.959]],["parent/320",[257,4.511]],["name/321",[221,56.959]],["parent/321",[257,4.511]],["name/322",[271,32.102,272,43.31]],["parent/322",[]],["name/323",[273,60.406]],["parent/323",[271,3.766,272,5.08]],["name/324",[2,24.97]],["parent/324",[271,3.766,274,3.93]],["name/325",[275,60.406]],["parent/325",[271,3.766,274,3.93]],["name/326",[276,60.406]],["parent/326",[271,3.766,274,3.93]],["name/327",[277,65.638]],["parent/327",[271,3.766,274,3.93]],["name/328",[278,65.638]],["parent/328",[271,3.766,274,3.93]],["name/329",[279,65.638]],["parent/329",[271,3.766,274,3.93]],["name/330",[280,65.638]],["parent/330",[271,3.766,274,3.93]],["name/331",[281,65.638]],["parent/331",[271,3.766,274,3.93]],["name/332",[282,65.638]],["parent/332",[271,3.766,274,3.93]],["name/333",[283,36.293,284,43.31]],["parent/333",[]],["name/334",[285,60.406]],["parent/334",[283,4.257,284,5.08]],["name/335",[2,24.97]],["parent/335",[283,4.257,286,4.574]],["name/336",[287,65.638]],["parent/336",[283,4.257,286,4.574]],["name/337",[288,65.638]],["parent/337",[283,4.257,286,4.574]],["name/338",[289,65.638]],["parent/338",[283,4.257,286,4.574]],["name/339",[290,46.731]],["parent/339",[]],["name/340",[291,60.406]],["parent/340",[]],["name/341",[292,60.406]],["parent/341",[291,6.733]],["name/342",[2,24.97]],["parent/342",[293,5.833]],["name/343",[294,65.638]],["parent/343",[293,5.833]],["name/344",[295,65.638]],["parent/344",[293,5.833]],["name/345",[296,65.638]],["parent/345",[293,5.833]],["name/346",[297,65.638]],["parent/346",[293,5.833]],["name/347",[298,60.406]],["parent/347",[]],["name/348",[254,56.959]],["parent/348",[298,6.733]],["name/349",[2,24.97]],["parent/349",[299,5.094]],["name/350",[300,65.638]],["parent/350",[299,5.094]],["name/351",[301,65.638]],["parent/351",[299,5.094]],["name/352",[302,65.638]],["parent/352",[299,5.094]],["name/353",[303,65.638]],["parent/353",[299,5.094]],["name/354",[304,65.638]],["parent/354",[299,5.094]],["name/355",[305,65.638]],["parent/355",[299,5.094]],["name/356",[306,65.638]],["parent/356",[299,5.094]],["name/357",[307,65.638]],["parent/357",[299,5.094]],["name/358",[308,65.638]],["parent/358",[299,5.094]],["name/359",[309,60.406]],["parent/359",[]],["name/360",[310,65.638]],["parent/360",[309,6.733]],["name/361",[2,24.97]],["parent/361",[311,5.642]],["name/362",[312,60.406]],["parent/362",[311,5.642]],["name/363",[313,65.638]],["parent/363",[311,5.642]],["name/364",[13,49.152]],["parent/364",[311,5.642]],["name/365",[314,65.638]],["parent/365",[311,5.642]],["name/366",[315,65.638]],["parent/366",[311,5.642]],["name/367",[316,60.406]],["parent/367",[]],["name/368",[317,60.406]],["parent/368",[316,6.733]],["name/369",[2,24.97]],["parent/369",[318,5.479]],["name/370",[13,49.152]],["parent/370",[318,5.479]],["name/371",[14,56.959]],["parent/371",[318,5.479]],["name/372",[319,65.638]],["parent/372",[318,5.479]],["name/373",[320,65.638]],["parent/373",[318,5.479]],["name/374",[321,65.638]],["parent/374",[318,5.479]],["name/375",[322,65.638]],["parent/375",[318,5.479]],["name/376",[323,60.406]],["parent/376",[]],["name/377",[324,60.406]],["parent/377",[323,6.733]],["name/378",[2,24.97]],["parent/378",[325,4.65]],["name/379",[326,56.959]],["parent/379",[325,4.65]],["name/380",[327,65.638]],["parent/380",[325,4.65]],["name/381",[328,65.638]],["parent/381",[325,4.65]],["name/382",[329,65.638]],["parent/382",[325,4.65]],["name/383",[312,60.406]],["parent/383",[325,4.65]],["name/384",[13,49.152]],["parent/384",[325,4.65]],["name/385",[330,60.406]],["parent/385",[325,4.65]],["name/386",[331,65.638]],["parent/386",[325,4.65]],["name/387",[332,60.406]],["parent/387",[325,4.65]],["name/388",[333,60.406]],["parent/388",[325,4.65]],["name/389",[334,65.638]],["parent/389",[325,4.65]],["name/390",[335,65.638]],["parent/390",[325,4.65]],["name/391",[336,65.638]],["parent/391",[325,4.65]],["name/392",[337,65.638]],["parent/392",[325,4.65]],["name/393",[338,60.406]],["parent/393",[]],["name/394",[339,60.406]],["parent/394",[338,6.733]],["name/395",[2,24.97]],["parent/395",[340,3.804]],["name/396",[341,65.638]],["parent/396",[340,3.804]],["name/397",[253,60.406]],["parent/397",[340,3.804]],["name/398",[239,47.87]],["parent/398",[340,3.804]],["name/399",[13,49.152]],["parent/399",[340,3.804]],["name/400",[342,56.959]],["parent/400",[340,3.804]],["name/401",[343,65.638]],["parent/401",[340,3.804]],["name/402",[344,65.638]],["parent/402",[340,3.804]],["name/403",[345,56.959]],["parent/403",[340,3.804]],["name/404",[346,65.638]],["parent/404",[340,3.804]],["name/405",[347,65.638]],["parent/405",[340,3.804]],["name/406",[348,60.406]],["parent/406",[340,3.804]],["name/407",[349,65.638]],["parent/407",[340,3.804]],["name/408",[350,65.638]],["parent/408",[340,3.804]],["name/409",[351,65.638]],["parent/409",[340,3.804]],["name/410",[352,65.638]],["parent/410",[340,3.804]],["name/411",[353,65.638]],["parent/411",[340,3.804]],["name/412",[354,60.406]],["parent/412",[340,3.804]],["name/413",[355,56.959]],["parent/413",[340,3.804]],["name/414",[356,65.638]],["parent/414",[340,3.804]],["name/415",[357,65.638]],["parent/415",[340,3.804]],["name/416",[358,65.638]],["parent/416",[340,3.804]],["name/417",[359,65.638]],["parent/417",[340,3.804]],["name/418",[360,65.638]],["parent/418",[340,3.804]],["name/419",[361,65.638]],["parent/419",[340,3.804]],["name/420",[362,65.638]],["parent/420",[340,3.804]],["name/421",[363,65.638]],["parent/421",[340,3.804]],["name/422",[364,65.638]],["parent/422",[340,3.804]],["name/423",[365,65.638]],["parent/423",[340,3.804]],["name/424",[366,65.638]],["parent/424",[340,3.804]],["name/425",[367,65.638]],["parent/425",[340,3.804]],["name/426",[368,65.638]],["parent/426",[340,3.804]],["name/427",[369,40.839,370,29.451]],["parent/427",[]],["name/428",[371,65.638]],["parent/428",[369,4.79,370,3.455]],["name/429",[2,24.97]],["parent/429",[369,4.79,372,5.52]],["name/430",[373,60.406]],["parent/430",[]],["name/431",[374,65.638]],["parent/431",[373,6.733]],["name/432",[2,24.97]],["parent/432",[375,5.336]],["name/433",[376,65.638]],["parent/433",[375,5.336]],["name/434",[275,60.406]],["parent/434",[375,5.336]],["name/435",[276,60.406]],["parent/435",[375,5.336]],["name/436",[377,65.638]],["parent/436",[375,5.336]],["name/437",[378,65.638]],["parent/437",[375,5.336]],["name/438",[379,65.638]],["parent/438",[375,5.336]],["name/439",[380,65.638]],["parent/439",[375,5.336]],["name/440",[381,60.406]],["parent/440",[]],["name/441",[382,65.638]],["parent/441",[381,6.733]],["name/442",[2,24.97]],["parent/442",[383,7.316]],["name/443",[384,65.638]],["parent/443",[]],["name/444",[385,36.293,386,38.993]],["parent/444",[]],["name/445",[387,65.638]],["parent/445",[385,4.257,386,4.574]],["name/446",[2,24.97]],["parent/446",[385,4.257,388,4.574]],["name/447",[128,54.385]],["parent/447",[385,4.257,388,4.574]],["name/448",[389,65.638]],["parent/448",[385,4.257,388,4.574]],["name/449",[390,65.638]],["parent/449",[385,4.257,388,4.574]],["name/450",[370,29.451,391,40.839]],["parent/450",[]],["name/451",[392,65.638]],["parent/451",[370,3.455,391,4.79]],["name/452",[2,24.97]],["parent/452",[391,4.79,393,5.52]],["name/453",[394,60.406]],["parent/453",[]],["name/454",[395,65.638]],["parent/454",[394,6.733]],["name/455",[2,24.97]],["parent/455",[396,4.991]],["name/456",[397,65.638]],["parent/456",[396,4.991]],["name/457",[398,54.385]],["parent/457",[396,4.991]],["name/458",[399,65.638]],["parent/458",[396,4.991]],["name/459",[36,49.152]],["parent/459",[396,4.991]],["name/460",[400,41.716]],["parent/460",[396,4.991]],["name/461",[401,65.638]],["parent/461",[396,4.991]],["name/462",[402,56.959]],["parent/462",[396,4.991]],["name/463",[265,60.406]],["parent/463",[396,4.991]],["name/464",[403,65.638]],["parent/464",[396,4.991]],["name/465",[404,65.638]],["parent/465",[396,4.991]],["name/466",[405,60.406]],["parent/466",[]],["name/467",[406,65.638]],["parent/467",[405,6.733]],["name/468",[2,24.97]],["parent/468",[407,7.316]],["name/469",[408,15.063,409,17.148,410,28.287]],["parent/469",[]],["name/470",[411,65.638]],["parent/470",[408,1.82,409,2.072,410,3.418]],["name/471",[2,24.97]],["parent/471",[408,1.82,409,2.072,412,2.103]],["name/472",[413,65.638]],["parent/472",[408,1.82,409,2.072,412,2.103]],["name/473",[414,65.638]],["parent/473",[408,1.82,409,2.072,412,2.103]],["name/474",[415,65.638]],["parent/474",[408,1.82,409,2.072,412,2.103]],["name/475",[416,65.638]],["parent/475",[408,1.82,409,2.072,412,2.103]],["name/476",[417,65.638]],["parent/476",[408,1.82,409,2.072,412,2.103]],["name/477",[418,65.638]],["parent/477",[408,1.82,409,2.072,412,2.103]],["name/478",[419,65.638]],["parent/478",[408,1.82,409,2.072,412,2.103]],["name/479",[420,65.638]],["parent/479",[408,1.82,409,2.072,412,2.103]],["name/480",[421,65.638]],["parent/480",[408,1.82,409,2.072,412,2.103]],["name/481",[422,65.638]],["parent/481",[408,1.82,409,2.072,412,2.103]],["name/482",[423,65.638]],["parent/482",[408,1.82,409,2.072,412,2.103]],["name/483",[424,65.638]],["parent/483",[408,1.82,409,2.072,412,2.103]],["name/484",[425,65.638]],["parent/484",[408,1.82,409,2.072,412,2.103]],["name/485",[426,65.638]],["parent/485",[408,1.82,409,2.072,412,2.103]],["name/486",[427,65.638]],["parent/486",[408,1.82,409,2.072,412,2.103]],["name/487",[428,65.638]],["parent/487",[408,1.82,409,2.072,412,2.103]],["name/488",[342,56.959]],["parent/488",[408,1.82,409,2.072,412,2.103]],["name/489",[429,60.406]],["parent/489",[408,1.82,409,2.072,412,2.103]],["name/490",[430,60.406]],["parent/490",[408,1.82,409,2.072,412,2.103]],["name/491",[431,60.406]],["parent/491",[408,1.82,409,2.072,412,2.103]],["name/492",[432,65.638]],["parent/492",[408,1.82,409,2.072,412,2.103]],["name/493",[192,52.329]],["parent/493",[408,1.82,409,2.072,412,2.103]],["name/494",[326,56.959]],["parent/494",[408,1.82,409,2.072,412,2.103]],["name/495",[433,60.406]],["parent/495",[408,1.82,409,2.072,412,2.103]],["name/496",[434,56.959]],["parent/496",[408,1.82,409,2.072,412,2.103]],["name/497",[435,60.406]],["parent/497",[408,1.82,409,2.072,412,2.103]],["name/498",[436,60.406]],["parent/498",[408,1.82,409,2.072,412,2.103]],["name/499",[36,49.152]],["parent/499",[408,1.82,409,2.072,412,2.103]],["name/500",[398,54.385]],["parent/500",[408,1.82,409,2.072,412,2.103]],["name/501",[437,65.638]],["parent/501",[408,1.82,409,2.072,412,2.103]],["name/502",[400,41.716]],["parent/502",[408,1.82,409,2.072,412,2.103]],["name/503",[438,65.638]],["parent/503",[408,1.82,409,2.072,412,2.103]],["name/504",[439,65.638]],["parent/504",[408,1.82,409,2.072,412,2.103]],["name/505",[440,60.406]],["parent/505",[408,1.82,409,2.072,412,2.103]],["name/506",[441,60.406]],["parent/506",[408,1.82,409,2.072,412,2.103]],["name/507",[442,65.638]],["parent/507",[408,1.82,409,2.072,412,2.103]],["name/508",[443,65.638]],["parent/508",[408,1.82,409,2.072,412,2.103]],["name/509",[444,60.406]],["parent/509",[408,1.82,409,2.072,412,2.103]],["name/510",[445,60.406]],["parent/510",[408,1.82,409,2.072,412,2.103]],["name/511",[348,60.406]],["parent/511",[408,1.82,409,2.072,412,2.103]],["name/512",[446,50.618]],["parent/512",[408,1.82,409,2.072,412,2.103]],["name/513",[447,60.406]],["parent/513",[408,1.82,409,2.072,412,2.103]],["name/514",[408,15.063,448,21.712,449,33.757]],["parent/514",[]],["name/515",[450,65.638]],["parent/515",[408,1.82,448,2.624,449,4.079]],["name/516",[2,24.97]],["parent/516",[408,1.82,448,2.624,451,2.695]],["name/517",[452,65.638]],["parent/517",[408,1.82,448,2.624,451,2.695]],["name/518",[453,65.638]],["parent/518",[408,1.82,448,2.624,451,2.695]],["name/519",[454,65.638]],["parent/519",[408,1.82,448,2.624,451,2.695]],["name/520",[455,65.638]],["parent/520",[408,1.82,448,2.624,451,2.695]],["name/521",[456,65.638]],["parent/521",[408,1.82,448,2.624,451,2.695]],["name/522",[457,65.638]],["parent/522",[408,1.82,448,2.624,451,2.695]],["name/523",[458,65.638]],["parent/523",[408,1.82,448,2.624,451,2.695]],["name/524",[459,65.638]],["parent/524",[408,1.82,448,2.624,451,2.695]],["name/525",[460,65.638]],["parent/525",[408,1.82,448,2.624,451,2.695]],["name/526",[36,49.152]],["parent/526",[408,1.82,448,2.624,451,2.695]],["name/527",[400,41.716]],["parent/527",[408,1.82,448,2.624,451,2.695]],["name/528",[461,65.638]],["parent/528",[408,1.82,448,2.624,451,2.695]],["name/529",[462,65.638]],["parent/529",[408,1.82,448,2.624,451,2.695]],["name/530",[463,65.638]],["parent/530",[408,1.82,448,2.624,451,2.695]],["name/531",[464,65.638]],["parent/531",[408,1.82,448,2.624,451,2.695]],["name/532",[465,65.638]],["parent/532",[408,1.82,448,2.624,451,2.695]],["name/533",[466,65.638]],["parent/533",[408,1.82,448,2.624,451,2.695]],["name/534",[370,29.451,467,40.839]],["parent/534",[]],["name/535",[468,65.638]],["parent/535",[370,3.455,467,4.79]],["name/536",[2,24.97]],["parent/536",[467,4.79,469,5.52]],["name/537",[470,60.406]],["parent/537",[]],["name/538",[471,65.638]],["parent/538",[470,6.733]],["name/539",[2,24.97]],["parent/539",[472,4.578]],["name/540",[473,54.385]],["parent/540",[472,4.578]],["name/541",[342,56.959]],["parent/541",[472,4.578]],["name/542",[474,56.959]],["parent/542",[472,4.578]],["name/543",[475,60.406]],["parent/543",[472,4.578]],["name/544",[476,60.406]],["parent/544",[472,4.578]],["name/545",[429,60.406]],["parent/545",[472,4.578]],["name/546",[434,56.959]],["parent/546",[472,4.578]],["name/547",[477,52.329]],["parent/547",[472,4.578]],["name/548",[478,52.329]],["parent/548",[472,4.578]],["name/549",[400,41.716]],["parent/549",[472,4.578]],["name/550",[479,52.329]],["parent/550",[472,4.578]],["name/551",[441,60.406]],["parent/551",[472,4.578]],["name/552",[444,60.406]],["parent/552",[472,4.578]],["name/553",[480,65.638]],["parent/553",[472,4.578]],["name/554",[446,50.618]],["parent/554",[472,4.578]],["name/555",[481,60.406]],["parent/555",[]],["name/556",[482,65.638]],["parent/556",[481,6.733]],["name/557",[2,24.97]],["parent/557",[483,7.316]],["name/558",[484,24.103,485,24.103,486,33.757]],["parent/558",[]],["name/559",[487,65.638]],["parent/559",[484,2.912,485,2.912,486,4.079]],["name/560",[2,24.97]],["parent/560",[484,2.912,485,2.912,488,3.023]],["name/561",[489,65.638]],["parent/561",[484,2.912,485,2.912,488,3.023]],["name/562",[36,49.152]],["parent/562",[484,2.912,485,2.912,488,3.023]],["name/563",[398,54.385]],["parent/563",[484,2.912,485,2.912,488,3.023]],["name/564",[430,60.406]],["parent/564",[484,2.912,485,2.912,488,3.023]],["name/565",[431,60.406]],["parent/565",[484,2.912,485,2.912,488,3.023]],["name/566",[434,56.959]],["parent/566",[484,2.912,485,2.912,488,3.023]],["name/567",[436,60.406]],["parent/567",[484,2.912,485,2.912,488,3.023]],["name/568",[400,41.716]],["parent/568",[484,2.912,485,2.912,488,3.023]],["name/569",[490,65.638]],["parent/569",[484,2.912,485,2.912,488,3.023]],["name/570",[402,56.959]],["parent/570",[484,2.912,485,2.912,488,3.023]],["name/571",[370,29.451,491,40.839]],["parent/571",[]],["name/572",[492,65.638]],["parent/572",[370,3.455,491,4.79]],["name/573",[2,24.97]],["parent/573",[491,4.79,493,5.52]],["name/574",[494,60.406]],["parent/574",[]],["name/575",[495,65.638]],["parent/575",[494,6.733]],["name/576",[2,24.97]],["parent/576",[496,4.726]],["name/577",[473,54.385]],["parent/577",[496,4.726]],["name/578",[474,56.959]],["parent/578",[496,4.726]],["name/579",[135,54.385]],["parent/579",[496,4.726]],["name/580",[345,56.959]],["parent/580",[496,4.726]],["name/581",[477,52.329]],["parent/581",[496,4.726]],["name/582",[478,52.329]],["parent/582",[496,4.726]],["name/583",[400,41.716]],["parent/583",[496,4.726]],["name/584",[479,52.329]],["parent/584",[496,4.726]],["name/585",[497,65.638]],["parent/585",[496,4.726]],["name/586",[355,56.959]],["parent/586",[496,4.726]],["name/587",[498,65.638]],["parent/587",[496,4.726]],["name/588",[499,65.638]],["parent/588",[496,4.726]],["name/589",[446,50.618]],["parent/589",[496,4.726]],["name/590",[500,60.406]],["parent/590",[]],["name/591",[501,65.638]],["parent/591",[500,6.733]],["name/592",[2,24.97]],["parent/592",[502,7.316]],["name/593",[370,29.451,503,40.839]],["parent/593",[]],["name/594",[504,65.638]],["parent/594",[370,3.455,503,4.79]],["name/595",[2,24.97]],["parent/595",[503,4.79,505,5.52]],["name/596",[506,60.406]],["parent/596",[]],["name/597",[507,65.638]],["parent/597",[506,6.733]],["name/598",[2,24.97]],["parent/598",[508,6.733]],["name/599",[509,65.638]],["parent/599",[508,6.733]],["name/600",[510,60.406]],["parent/600",[]],["name/601",[511,65.638]],["parent/601",[510,6.733]],["name/602",[2,24.97]],["parent/602",[512,7.316]],["name/603",[513,60.406]],["parent/603",[]],["name/604",[514,65.638]],["parent/604",[513,6.733]],["name/605",[2,24.97]],["parent/605",[515,5.479]],["name/606",[516,65.638]],["parent/606",[515,5.479]],["name/607",[398,54.385]],["parent/607",[515,5.479]],["name/608",[36,49.152]],["parent/608",[515,5.479]],["name/609",[400,41.716]],["parent/609",[515,5.479]],["name/610",[517,65.638]],["parent/610",[515,5.479]],["name/611",[402,56.959]],["parent/611",[515,5.479]],["name/612",[370,29.451,518,40.839]],["parent/612",[]],["name/613",[519,65.638]],["parent/613",[370,3.455,518,4.79]],["name/614",[2,24.97]],["parent/614",[518,4.79,520,5.52]],["name/615",[521,60.406]],["parent/615",[]],["name/616",[522,65.638]],["parent/616",[521,6.733]],["name/617",[2,24.97]],["parent/617",[523,4.991]],["name/618",[524,65.638]],["parent/618",[523,4.991]],["name/619",[473,54.385]],["parent/619",[523,4.991]],["name/620",[474,56.959]],["parent/620",[523,4.991]],["name/621",[525,65.638]],["parent/621",[523,4.991]],["name/622",[477,52.329]],["parent/622",[523,4.991]],["name/623",[478,52.329]],["parent/623",[523,4.991]],["name/624",[400,41.716]],["parent/624",[523,4.991]],["name/625",[479,52.329]],["parent/625",[523,4.991]],["name/626",[446,50.618]],["parent/626",[523,4.991]],["name/627",[269,60.406]],["parent/627",[523,4.991]],["name/628",[526,60.406]],["parent/628",[]],["name/629",[527,65.638]],["parent/629",[526,6.733]],["name/630",[2,24.97]],["parent/630",[528,7.316]],["name/631",[410,28.287,529,29.243,530,29.243]],["parent/631",[]],["name/632",[531,65.638]],["parent/632",[410,3.418,529,3.534,530,3.534]],["name/633",[2,24.97]],["parent/633",[529,3.534,530,3.534,532,3.846]],["name/634",[162,54.385]],["parent/634",[529,3.534,530,3.534,532,3.846]],["name/635",[400,41.716]],["parent/635",[529,3.534,530,3.534,532,3.846]],["name/636",[370,29.451,533,40.839]],["parent/636",[]],["name/637",[534,65.638]],["parent/637",[370,3.455,533,4.79]],["name/638",[2,24.97]],["parent/638",[533,4.79,535,5.52]],["name/639",[536,60.406]],["parent/639",[]],["name/640",[537,65.638]],["parent/640",[536,6.733]],["name/641",[2,24.97]],["parent/641",[538,5.094]],["name/642",[473,54.385]],["parent/642",[538,5.094]],["name/643",[539,65.638]],["parent/643",[538,5.094]],["name/644",[477,52.329]],["parent/644",[538,5.094]],["name/645",[478,52.329]],["parent/645",[538,5.094]],["name/646",[540,65.638]],["parent/646",[538,5.094]],["name/647",[400,41.716]],["parent/647",[538,5.094]],["name/648",[479,52.329]],["parent/648",[538,5.094]],["name/649",[541,65.638]],["parent/649",[538,5.094]],["name/650",[446,50.618]],["parent/650",[538,5.094]],["name/651",[542,60.406]],["parent/651",[]],["name/652",[543,65.638]],["parent/652",[542,6.733]],["name/653",[2,24.97]],["parent/653",[544,7.316]],["name/654",[410,28.287,545,24.103,546,24.103]],["parent/654",[]],["name/655",[547,65.638]],["parent/655",[410,3.418,545,2.912,546,2.912]],["name/656",[2,24.97]],["parent/656",[545,2.912,546,2.912,548,3.023]],["name/657",[192,52.329]],["parent/657",[545,2.912,546,2.912,548,3.023]],["name/658",[549,65.638]],["parent/658",[545,2.912,546,2.912,548,3.023]],["name/659",[550,65.638]],["parent/659",[545,2.912,546,2.912,548,3.023]],["name/660",[551,65.638]],["parent/660",[545,2.912,546,2.912,548,3.023]],["name/661",[400,41.716]],["parent/661",[545,2.912,546,2.912,548,3.023]],["name/662",[552,65.638]],["parent/662",[545,2.912,546,2.912,548,3.023]],["name/663",[553,65.638]],["parent/663",[545,2.912,546,2.912,548,3.023]],["name/664",[554,65.638]],["parent/664",[545,2.912,546,2.912,548,3.023]],["name/665",[555,65.638]],["parent/665",[545,2.912,546,2.912,548,3.023]],["name/666",[447,60.406]],["parent/666",[545,2.912,546,2.912,548,3.023]],["name/667",[370,29.451,556,40.839]],["parent/667",[]],["name/668",[557,65.638]],["parent/668",[370,3.455,556,4.79]],["name/669",[2,24.97]],["parent/669",[556,4.79,558,5.52]],["name/670",[559,60.406]],["parent/670",[]],["name/671",[560,65.638]],["parent/671",[559,6.733]],["name/672",[2,24.97]],["parent/672",[561,4.511]],["name/673",[562,65.638]],["parent/673",[561,4.511]],["name/674",[563,65.638]],["parent/674",[561,4.511]],["name/675",[475,60.406]],["parent/675",[561,4.511]],["name/676",[476,60.406]],["parent/676",[561,4.511]],["name/677",[326,56.959]],["parent/677",[561,4.511]],["name/678",[192,52.329]],["parent/678",[561,4.511]],["name/679",[433,60.406]],["parent/679",[561,4.511]],["name/680",[435,60.406]],["parent/680",[561,4.511]],["name/681",[477,52.329]],["parent/681",[561,4.511]],["name/682",[478,52.329]],["parent/682",[561,4.511]],["name/683",[400,41.716]],["parent/683",[561,4.511]],["name/684",[440,60.406]],["parent/684",[561,4.511]],["name/685",[479,52.329]],["parent/685",[561,4.511]],["name/686",[445,60.406]],["parent/686",[561,4.511]],["name/687",[564,65.638]],["parent/687",[561,4.511]],["name/688",[446,50.618]],["parent/688",[561,4.511]],["name/689",[565,60.406]],["parent/689",[]],["name/690",[566,65.638]],["parent/690",[565,6.733]],["name/691",[2,24.97]],["parent/691",[567,7.316]],["name/692",[568,34.322,569,43.31]],["parent/692",[]],["name/693",[570,65.638]],["parent/693",[568,4.026,569,5.08]],["name/694",[2,24.97]],["parent/694",[568,4.026,571,5.08]],["name/695",[572,65.638]],["parent/695",[568,4.026,571,5.08]],["name/696",[386,38.993,568,34.322]],["parent/696",[]],["name/697",[573,65.638]],["parent/697",[386,4.574,568,4.026]],["name/698",[2,24.97]],["parent/698",[568,4.026,574,5.08]],["name/699",[575,65.638]],["parent/699",[568,4.026,574,5.08]],["name/700",[576,60.406]],["parent/700",[]],["name/701",[577,65.638]],["parent/701",[576,6.733]],["name/702",[2,24.97]],["parent/702",[578,6.733]],["name/703",[579,60.406]],["parent/703",[578,6.733]],["name/704",[580,38.993,581,43.31]],["parent/704",[]],["name/705",[582,65.638]],["parent/705",[580,4.574,581,5.08]],["name/706",[2,24.97]],["parent/706",[580,4.574,583,5.08]],["name/707",[579,60.406]],["parent/707",[580,4.574,583,5.08]],["name/708",[584,30.392,585,30.392,586,33.757]],["parent/708",[]],["name/709",[587,65.638]],["parent/709",[584,3.672,585,3.672,586,4.079]],["name/710",[2,24.97]],["parent/710",[584,3.672,585,3.672,588,4.079]],["name/711",[123,52.329]],["parent/711",[584,3.672,585,3.672,588,4.079]],["name/712",[589,60.406]],["parent/712",[]],["name/713",[590,65.638]],["parent/713",[589,6.733]],["name/714",[2,24.97]],["parent/714",[591,6.733]],["name/715",[400,41.716]],["parent/715",[591,6.733]],["name/716",[592,60.406]],["parent/716",[]],["name/717",[593,65.638]],["parent/717",[592,6.733]],["name/718",[2,24.97]],["parent/718",[594,7.316]],["name/719",[595,60.406]],["parent/719",[]],["name/720",[596,65.638]],["parent/720",[595,6.733]],["name/721",[2,24.97]],["parent/721",[597,6.733]],["name/722",[400,41.716]],["parent/722",[597,6.733]],["name/723",[598,60.406]],["parent/723",[]],["name/724",[599,65.638]],["parent/724",[598,6.733]],["name/725",[2,24.97]],["parent/725",[600,6.733]],["name/726",[400,41.716]],["parent/726",[600,6.733]],["name/727",[601,52.329]],["parent/727",[]],["name/728",[602,65.638]],["parent/728",[601,5.833]],["name/729",[603,65.638]],["parent/729",[601,5.833]],["name/730",[604,65.638]],["parent/730",[601,5.833]],["name/731",[605,65.638]],["parent/731",[601,5.833]],["name/732",[606,60.406]],["parent/732",[]],["name/733",[607,52.329]],["parent/733",[]],["name/734",[185,50.618]],["parent/734",[607,5.833]],["name/735",[2,24.97]],["parent/735",[608,4.175]],["name/736",[609,65.638]],["parent/736",[608,4.175]],["name/737",[610,65.638]],["parent/737",[608,4.175]],["name/738",[611,65.638]],["parent/738",[608,4.175]],["name/739",[196,60.406]],["parent/739",[608,4.175]],["name/740",[198,60.406]],["parent/740",[608,4.175]],["name/741",[123,52.329]],["parent/741",[608,4.175]],["name/742",[612,65.638]],["parent/742",[608,4.175]],["name/743",[613,65.638]],["parent/743",[608,4.175]],["name/744",[614,65.638]],["parent/744",[608,4.175]],["name/745",[615,65.638]],["parent/745",[608,4.175]],["name/746",[616,65.638]],["parent/746",[608,4.175]],["name/747",[617,65.638]],["parent/747",[608,4.175]],["name/748",[618,65.638]],["parent/748",[608,4.175]],["name/749",[619,65.638]],["parent/749",[608,4.175]],["name/750",[620,65.638]],["parent/750",[608,4.175]],["name/751",[621,65.638]],["parent/751",[608,4.175]],["name/752",[622,65.638]],["parent/752",[608,4.175]],["name/753",[623,65.638]],["parent/753",[608,4.175]],["name/754",[624,65.638]],["parent/754",[608,4.175]],["name/755",[625,65.638]],["parent/755",[608,4.175]],["name/756",[626,65.638]],["parent/756",[608,4.175]],["name/757",[627,65.638]],["parent/757",[608,4.175]],["name/758",[628,65.638]],["parent/758",[607,5.833]],["name/759",[629,65.638]],["parent/759",[607,5.833]],["name/760",[204,60.406]],["parent/760",[607,5.833]],["name/761",[630,60.406]],["parent/761",[]],["name/762",[631,56.959]],["parent/762",[630,6.733]],["name/763",[51,42.4]],["parent/763",[632,7.316]],["name/764",[633,56.959]],["parent/764",[634,4.895]],["name/765",[635,56.959]],["parent/765",[634,4.895]],["name/766",[636,56.959]],["parent/766",[634,4.895]],["name/767",[637,56.959]],["parent/767",[634,4.895]],["name/768",[638,56.959]],["parent/768",[634,4.895]],["name/769",[639,56.959]],["parent/769",[634,4.895]],["name/770",[640,56.959]],["parent/770",[634,4.895]],["name/771",[641,56.959]],["parent/771",[634,4.895]],["name/772",[642,56.959]],["parent/772",[634,4.895]],["name/773",[643,56.959]],["parent/773",[634,4.895]],["name/774",[644,56.959]],["parent/774",[634,4.895]],["name/775",[645,56.959]],["parent/775",[634,4.895]],["name/776",[646,60.406]],["parent/776",[]],["name/777",[631,56.959]],["parent/777",[646,6.733]],["name/778",[51,42.4]],["parent/778",[647,7.316]],["name/779",[633,56.959]],["parent/779",[648,4.895]],["name/780",[635,56.959]],["parent/780",[648,4.895]],["name/781",[636,56.959]],["parent/781",[648,4.895]],["name/782",[637,56.959]],["parent/782",[648,4.895]],["name/783",[638,56.959]],["parent/783",[648,4.895]],["name/784",[639,56.959]],["parent/784",[648,4.895]],["name/785",[640,56.959]],["parent/785",[648,4.895]],["name/786",[641,56.959]],["parent/786",[648,4.895]],["name/787",[642,56.959]],["parent/787",[648,4.895]],["name/788",[643,56.959]],["parent/788",[648,4.895]],["name/789",[644,56.959]],["parent/789",[648,4.895]],["name/790",[645,56.959]],["parent/790",[648,4.895]],["name/791",[649,60.406]],["parent/791",[]],["name/792",[631,56.959]],["parent/792",[649,6.733]],["name/793",[51,42.4]],["parent/793",[650,7.316]],["name/794",[633,56.959]],["parent/794",[651,4.895]],["name/795",[635,56.959]],["parent/795",[651,4.895]],["name/796",[636,56.959]],["parent/796",[651,4.895]],["name/797",[637,56.959]],["parent/797",[651,4.895]],["name/798",[638,56.959]],["parent/798",[651,4.895]],["name/799",[639,56.959]],["parent/799",[651,4.895]],["name/800",[640,56.959]],["parent/800",[651,4.895]],["name/801",[641,56.959]],["parent/801",[651,4.895]],["name/802",[642,56.959]],["parent/802",[651,4.895]],["name/803",[643,56.959]],["parent/803",[651,4.895]],["name/804",[644,56.959]],["parent/804",[651,4.895]],["name/805",[645,56.959]],["parent/805",[651,4.895]],["name/806",[652,65.638]],["parent/806",[]],["name/807",[653,65.638]],["parent/807",[]],["name/808",[654,65.638]],["parent/808",[]],["name/809",[655,28.287,656,28.287,657,23.694]],["parent/809",[]],["name/810",[658,60.406]],["parent/810",[655,3.418,656,3.418,657,2.863]],["name/811",[2,24.97]],["parent/811",[655,3.418,656,3.418,659,3.672]],["name/812",[660,65.638]],["parent/812",[655,3.418,656,3.418,659,3.672]],["name/813",[661,65.638]],["parent/813",[655,3.418,656,3.418,659,3.672]],["name/814",[662,65.638]],["parent/814",[655,3.418,656,3.418,659,3.672]],["name/815",[663,46.731]],["parent/815",[]],["name/816",[657,19.412,664,23.175,665,23.175,666,23.175]],["parent/816",[]],["name/817",[667,60.406]],["parent/817",[657,2.392,664,2.855,665,2.855,666,2.855]],["name/818",[2,24.97]],["parent/818",[664,2.855,665,2.855,666,2.855,668,3.068]],["name/819",[669,65.638]],["parent/819",[664,2.855,665,2.855,666,2.855,668,3.068]],["name/820",[670,65.638]],["parent/820",[664,2.855,665,2.855,666,2.855,668,3.068]],["name/821",[671,65.638]],["parent/821",[664,2.855,665,2.855,666,2.855,668,3.068]],["name/822",[657,23.694,672,27.468,673,27.468]],["parent/822",[]],["name/823",[674,60.406]],["parent/823",[657,2.863,672,3.319,673,3.319]],["name/824",[2,24.97]],["parent/824",[672,3.319,673,3.319,675,4.432]],["name/825",[676,60.406]],["parent/825",[657,2.863,672,3.319,673,3.319]],["name/826",[2,24.97]],["parent/826",[672,3.319,673,3.319,677,4.432]],["name/827",[678,60.406]],["parent/827",[657,2.863,672,3.319,673,3.319]],["name/828",[2,24.97]],["parent/828",[672,3.319,673,3.319,679,4.432]],["name/829",[657,23.694,680,30.392,681,21.998]],["parent/829",[]],["name/830",[682,60.406]],["parent/830",[657,2.863,680,3.672,681,2.658]],["name/831",[2,24.97]],["parent/831",[680,3.672,681,2.658,683,4.079]],["name/832",[684,65.638]],["parent/832",[680,3.672,681,2.658,683,4.079]],["name/833",[657,23.694,681,21.998,685,28.287]],["parent/833",[]],["name/834",[686,60.406]],["parent/834",[657,2.863,681,2.658,685,3.418]],["name/835",[2,24.97]],["parent/835",[681,2.658,685,3.418,687,3.672]],["name/836",[332,60.406]],["parent/836",[681,2.658,685,3.418,687,3.672]],["name/837",[333,60.406]],["parent/837",[681,2.658,685,3.418,687,3.672]],["name/838",[330,60.406]],["parent/838",[681,2.658,685,3.418,687,3.672]],["name/839",[657,23.694,681,21.998,688,26.115]],["parent/839",[]],["name/840",[689,60.406]],["parent/840",[657,2.863,681,2.658,688,3.156]],["name/841",[2,24.97]],["parent/841",[681,2.658,688,3.156,690,3.319]],["name/842",[691,65.638]],["parent/842",[681,2.658,688,3.156,690,3.319]],["name/843",[345,56.959]],["parent/843",[681,2.658,688,3.156,690,3.319]],["name/844",[692,65.638]],["parent/844",[681,2.658,688,3.156,690,3.319]],["name/845",[693,65.638]],["parent/845",[681,2.658,688,3.156,690,3.319]],["name/846",[354,60.406]],["parent/846",[681,2.658,688,3.156,690,3.319]],["name/847",[355,56.959]],["parent/847",[681,2.658,688,3.156,690,3.319]],["name/848",[1,60.406]],["parent/848",[11,6.349]],["name/849",[14,56.959]],["parent/849",[11,6.349]],["name/850",[20,60.406]],["parent/850",[23,6.349]],["name/851",[25,60.406]],["parent/851",[23,6.349]],["name/852",[29,60.406]],["parent/852",[63,4.726]],["name/853",[32,60.406]],["parent/853",[63,4.726]],["name/854",[41,60.406]],["parent/854",[63,4.726]],["name/855",[37,60.406]],["parent/855",[63,4.726]],["name/856",[47,60.406]],["parent/856",[63,4.726]],["name/857",[50,60.406]],["parent/857",[63,4.726]],["name/858",[54,60.406]],["parent/858",[63,4.726]],["name/859",[62,60.406]],["parent/859",[63,4.726]],["name/860",[66,60.406]],["parent/860",[63,4.726]],["name/861",[69,60.406]],["parent/861",[63,4.726]],["name/862",[76,60.406]],["parent/862",[63,4.726]],["name/863",[79,60.406]],["parent/863",[63,4.726]],["name/864",[80,60.406]],["parent/864",[63,4.726]],["name/865",[82,60.406]],["parent/865",[88,6.062]],["name/866",[86,60.406]],["parent/866",[88,6.062]],["name/867",[90,60.406]],["parent/867",[88,6.062]],["name/868",[176,60.406]],["parent/868",[133,4.388]],["name/869",[183,60.406]],["parent/869",[133,4.388]],["name/870",[185,50.618]],["parent/870",[133,4.388]],["name/871",[192,52.329]],["parent/871",[133,4.388]],["name/872",[199,60.406]],["parent/872",[133,4.388]],["name/873",[148,60.406]],["parent/873",[133,4.388]],["name/874",[150,56.959]],["parent/874",[133,4.388]],["name/875",[93,60.406]],["parent/875",[133,4.388]],["name/876",[120,50.618]],["parent/876",[133,4.388]],["name/877",[126,60.406]],["parent/877",[133,4.388]],["name/878",[129,60.406]],["parent/878",[133,4.388]],["name/879",[132,60.406]],["parent/879",[133,4.388]],["name/880",[156,60.406]],["parent/880",[133,4.388]],["name/881",[162,54.385]],["parent/881",[133,4.388]],["name/882",[135,54.385]],["parent/882",[133,4.388]],["name/883",[113,56.959]],["parent/883",[133,4.388]],["name/884",[142,60.406]],["parent/884",[133,4.388]],["name/885",[145,60.406]],["parent/885",[133,4.388]],["name/886",[210,60.406]],["parent/886",[206,5.479]],["name/887",[237,56.959]],["parent/887",[206,5.479]],["name/888",[240,60.406]],["parent/888",[206,5.479]],["name/889",[120,50.618]],["parent/889",[206,5.479]],["name/890",[239,47.87]],["parent/890",[206,5.479]],["name/891",[250,60.406]],["parent/891",[206,5.479]],["name/892",[256,60.406]],["parent/892",[290,5.209]],["name/893",[324,60.406]],["parent/893",[290,5.209]],["name/894",[339,60.406]],["parent/894",[290,5.209]],["name/895",[317,60.406]],["parent/895",[290,5.209]],["name/896",[273,60.406]],["parent/896",[290,5.209]],["name/897",[292,60.406]],["parent/897",[290,5.209]],["name/898",[254,56.959]],["parent/898",[290,5.209]],["name/899",[285,60.406]],["parent/899",[290,5.209]],["name/900",[185,50.618]],["parent/900",[606,6.733]],["name/901",[658,60.406]],["parent/901",[663,5.209]],["name/902",[667,60.406]],["parent/902",[663,5.209]],["name/903",[674,60.406]],["parent/903",[663,5.209]],["name/904",[676,60.406]],["parent/904",[663,5.209]],["name/905",[678,60.406]],["parent/905",[663,5.209]],["name/906",[689,60.406]],["parent/906",[663,5.209]],["name/907",[682,60.406]],["parent/907",[663,5.209]],["name/908",[686,60.406]],["parent/908",[663,5.209]]],"invertedIndex":[["0xa686005ce37dce7738436256982c3903f2e4ea8e",{"_index":169,"name":{"171":{}},"parent":{}}],["__type",{"_index":51,"name":{"46":{},"63":{},"93":{},"95":{},"101":{},"108":{},"170":{},"172":{},"275":{},"295":{},"297":{},"763":{},"778":{},"793":{}},"parent":{}}],["_outbuffer",{"_index":618,"name":{"748":{}},"parent":{}}],["_outbuffercursor",{"_index":619,"name":{"749":{}},"parent":{}}],["_signatureset",{"_index":616,"name":{"746":{}},"parent":{}}],["_workbuffer",{"_index":617,"name":{"747":{}},"parent":{}}],["account",{"_index":426,"name":{"485":{}},"parent":{}}],["account.component",{"_index":486,"name":{"558":{}},"parent":{"559":{}}}],["account.component.createaccountcomponent",{"_index":488,"name":{},"parent":{"560":{},"561":{},"562":{},"563":{},"564":{},"565":{},"566":{},"567":{},"568":{},"569":{},"570":{}}}],["account/create",{"_index":485,"name":{"558":{}},"parent":{"559":{},"560":{},"561":{},"562":{},"563":{},"564":{},"565":{},"566":{},"567":{},"568":{},"569":{},"570":{}}}],["accountaddress",{"_index":427,"name":{"486":{}},"parent":{}}],["accountdetails",{"_index":93,"name":{"86":{},"875":{}},"parent":{}}],["accountdetailscomponent",{"_index":411,"name":{"470":{}},"parent":{}}],["accountindex",{"_index":1,"name":{"1":{},"848":{}},"parent":{}}],["accountinfoform",{"_index":425,"name":{"484":{}},"parent":{}}],["accountinfoformstub",{"_index":442,"name":{"507":{}},"parent":{}}],["accounts",{"_index":342,"name":{"400":{},"488":{},"541":{}},"parent":{}}],["accountscomponent",{"_index":471,"name":{"538":{}},"parent":{}}],["accountsearchcomponent",{"_index":450,"name":{"515":{}},"parent":{}}],["accountslist",{"_index":343,"name":{"401":{}},"parent":{}}],["accountsmodule",{"_index":482,"name":{"556":{}},"parent":{}}],["accountsroutingmodule",{"_index":468,"name":{"535":{}},"parent":{}}],["accountssubject",{"_index":344,"name":{"402":{}},"parent":{}}],["accountstatus",{"_index":428,"name":{"487":{}},"parent":{}}],["accountstype",{"_index":429,"name":{"489":{},"545":{}},"parent":{}}],["accounttypes",{"_index":434,"name":{"496":{},"546":{},"566":{}},"parent":{}}],["action",{"_index":135,"name":{"129":{},"133":{},"579":{},"882":{}},"parent":{}}],["actions",{"_index":345,"name":{"403":{},"580":{},"843":{}},"parent":{}}],["actionslist",{"_index":346,"name":{"404":{}},"parent":{}}],["actionssubject",{"_index":347,"name":{"405":{}},"parent":{}}],["activatedroutestub",{"_index":658,"name":{"810":{},"901":{}},"parent":{}}],["add0x",{"_index":605,"name":{"731":{}},"parent":{}}],["address",{"_index":165,"name":{"166":{},"187":{}},"parent":{}}],["addressof",{"_index":16,"name":{"17":{}},"parent":{}}],["addresssearchform",{"_index":458,"name":{"523":{}},"parent":{}}],["addresssearchformstub",{"_index":463,"name":{"530":{}},"parent":{}}],["addresssearchloading",{"_index":460,"name":{"525":{}},"parent":{}}],["addresssearchsubmitted",{"_index":459,"name":{"524":{}},"parent":{}}],["addtoaccountregistry",{"_index":7,"name":{"6":{}},"parent":{}}],["addtransaction",{"_index":334,"name":{"389":{}},"parent":{}}],["admincomponent",{"_index":495,"name":{"575":{}},"parent":{}}],["adminmodule",{"_index":501,"name":{"591":{}},"parent":{}}],["adminroutingmodule",{"_index":492,"name":{"572":{}},"parent":{}}],["age",{"_index":97,"name":{"89":{}},"parent":{}}],["alg",{"_index":181,"name":{"183":{}},"parent":{}}],["algo",{"_index":121,"name":{"115":{},"277":{},"290":{}},"parent":{}}],["app/_eth",{"_index":11,"name":{"10":{}},"parent":{"848":{},"849":{}}}],["app/_eth/accountindex",{"_index":0,"name":{"0":{}},"parent":{"1":{}}}],["app/_eth/accountindex.accountindex",{"_index":3,"name":{},"parent":{"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{}}}],["app/_eth/token",{"_index":12,"name":{"11":{}},"parent":{"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{}}}],["app/_guards",{"_index":23,"name":{"24":{}},"parent":{"850":{},"851":{}}}],["app/_guards/auth.guard",{"_index":19,"name":{"20":{}},"parent":{"21":{}}}],["app/_guards/auth.guard.authguard",{"_index":21,"name":{},"parent":{"22":{},"23":{}}}],["app/_guards/role.guard",{"_index":24,"name":{"25":{}},"parent":{"26":{}}}],["app/_guards/role.guard.roleguard",{"_index":26,"name":{},"parent":{"27":{},"28":{}}}],["app/_helpers",{"_index":63,"name":{"57":{}},"parent":{"852":{},"853":{},"854":{},"855":{},"856":{},"857":{},"858":{},"859":{},"860":{},"861":{},"862":{},"863":{},"864":{}}}],["app/_helpers/array",{"_index":27,"name":{"29":{}},"parent":{"30":{}}}],["app/_helpers/clipboard",{"_index":30,"name":{"31":{}},"parent":{"32":{}}}],["app/_helpers/custom",{"_index":33,"name":{"33":{}},"parent":{"34":{},"35":{},"36":{}}}],["app/_helpers/custom.validator",{"_index":40,"name":{"37":{}},"parent":{"38":{}}}],["app/_helpers/custom.validator.customvalidator",{"_index":43,"name":{},"parent":{"39":{},"40":{},"41":{}}}],["app/_helpers/export",{"_index":45,"name":{"42":{}},"parent":{"43":{}}}],["app/_helpers/global",{"_index":48,"name":{"44":{}},"parent":{"45":{},"46":{},"47":{},"48":{},"49":{},"50":{},"51":{},"52":{},"53":{},"54":{}}}],["app/_helpers/http",{"_index":60,"name":{"55":{}},"parent":{"56":{}}}],["app/_helpers/mock",{"_index":64,"name":{"58":{}},"parent":{"59":{},"60":{},"61":{},"62":{},"63":{},"64":{},"65":{},"66":{}}}],["app/_helpers/read",{"_index":75,"name":{"67":{}},"parent":{"68":{}}}],["app/_helpers/schema",{"_index":77,"name":{"69":{}},"parent":{"70":{},"71":{}}}],["app/_interceptors",{"_index":88,"name":{"80":{}},"parent":{"865":{},"866":{},"867":{}}}],["app/_interceptors/error.interceptor",{"_index":81,"name":{"72":{}},"parent":{"73":{}}}],["app/_interceptors/error.interceptor.errorinterceptor",{"_index":83,"name":{},"parent":{"74":{},"75":{}}}],["app/_interceptors/http",{"_index":84,"name":{"76":{}},"parent":{"77":{},"78":{},"79":{}}}],["app/_interceptors/logging.interceptor",{"_index":89,"name":{"81":{}},"parent":{"82":{}}}],["app/_interceptors/logging.interceptor.logginginterceptor",{"_index":91,"name":{},"parent":{"83":{},"84":{}}}],["app/_models",{"_index":133,"name":{"127":{}},"parent":{"868":{},"869":{},"870":{},"871":{},"872":{},"873":{},"874":{},"875":{},"876":{},"877":{},"878":{},"879":{},"880":{},"881":{},"882":{},"883":{},"884":{},"885":{}}}],["app/_models/account",{"_index":92,"name":{"85":{}},"parent":{"86":{},"114":{},"119":{},"123":{},"126":{}}}],["app/_models/account.accountdetails",{"_index":95,"name":{},"parent":{"87":{},"88":{},"89":{},"90":{},"91":{},"92":{},"93":{},"100":{},"101":{},"105":{},"106":{},"107":{},"108":{}}}],["app/_models/account.accountdetails.__type",{"_index":102,"name":{},"parent":{"94":{},"95":{},"98":{},"99":{},"102":{},"103":{},"104":{},"109":{},"110":{},"111":{},"112":{},"113":{}}}],["app/_models/account.accountdetails.__type.__type",{"_index":104,"name":{},"parent":{"96":{},"97":{}}}],["app/_models/account.meta",{"_index":127,"name":{},"parent":{"120":{},"121":{},"122":{}}}],["app/_models/account.metaresponse",{"_index":130,"name":{},"parent":{"124":{},"125":{}}}],["app/_models/account.signature",{"_index":122,"name":{},"parent":{"115":{},"116":{},"117":{},"118":{}}}],["app/_models/mappings",{"_index":134,"name":{"128":{}},"parent":{"129":{},"135":{},"138":{},"141":{}}}],["app/_models/mappings.action",{"_index":136,"name":{},"parent":{"130":{},"131":{},"132":{},"133":{},"134":{}}}],["app/_models/mappings.areaname",{"_index":143,"name":{},"parent":{"139":{},"140":{}}}],["app/_models/mappings.areatype",{"_index":146,"name":{},"parent":{"142":{},"143":{}}}],["app/_models/mappings.category",{"_index":141,"name":{},"parent":{"136":{},"137":{}}}],["app/_models/settings",{"_index":147,"name":{"144":{}},"parent":{"145":{},"151":{}}}],["app/_models/settings.settings",{"_index":149,"name":{},"parent":{"146":{},"147":{},"148":{},"149":{},"150":{}}}],["app/_models/settings.w3",{"_index":153,"name":{},"parent":{"152":{},"153":{},"154":{}}}],["app/_models/staff",{"_index":155,"name":{"155":{}},"parent":{"156":{}}}],["app/_models/staff.staff",{"_index":158,"name":{},"parent":{"157":{},"158":{},"159":{},"160":{},"161":{}}}],["app/_models/token",{"_index":161,"name":{"162":{}},"parent":{"163":{}}}],["app/_models/token.token",{"_index":163,"name":{},"parent":{"164":{},"165":{},"166":{},"167":{},"168":{},"169":{},"170":{},"175":{},"176":{}}}],["app/_models/token.token.__type",{"_index":170,"name":{},"parent":{"171":{},"172":{}}}],["app/_models/token.token.__type.__type",{"_index":172,"name":{},"parent":{"173":{},"174":{}}}],["app/_models/transaction",{"_index":175,"name":{"177":{}},"parent":{"178":{},"185":{},"190":{},"197":{},"207":{}}}],["app/_models/transaction.blocksbloom",{"_index":177,"name":{},"parent":{"179":{},"180":{},"181":{},"182":{},"183":{},"184":{}}}],["app/_models/transaction.conversion",{"_index":200,"name":{},"parent":{"208":{},"209":{},"210":{},"211":{},"212":{},"213":{},"214":{},"215":{}}}],["app/_models/transaction.transaction",{"_index":193,"name":{},"parent":{"198":{},"199":{},"200":{},"201":{},"202":{},"203":{},"204":{},"205":{},"206":{}}}],["app/_models/transaction.tx",{"_index":186,"name":{},"parent":{"191":{},"192":{},"193":{},"194":{},"195":{},"196":{}}}],["app/_models/transaction.txtoken",{"_index":184,"name":{},"parent":{"186":{},"187":{},"188":{},"189":{}}}],["app/_pgp",{"_index":206,"name":{"216":{}},"parent":{"886":{},"887":{},"888":{},"889":{},"890":{},"891":{}}}],["app/_pgp/pgp",{"_index":207,"name":{"217":{},"271":{}},"parent":{"218":{},"219":{},"220":{},"221":{},"222":{},"223":{},"224":{},"225":{},"226":{},"227":{},"228":{},"229":{},"230":{},"231":{},"232":{},"233":{},"234":{},"235":{},"236":{},"237":{},"238":{},"239":{},"240":{},"241":{},"242":{},"243":{},"244":{},"245":{},"246":{},"247":{},"248":{},"249":{},"250":{},"251":{},"252":{},"253":{},"254":{},"255":{},"256":{},"257":{},"258":{},"259":{},"260":{},"261":{},"262":{},"263":{},"264":{},"265":{},"266":{},"267":{},"268":{},"269":{},"270":{},"272":{},"273":{},"274":{},"275":{},"276":{},"277":{},"278":{},"279":{},"280":{},"281":{},"282":{},"283":{},"284":{},"285":{},"286":{},"287":{},"288":{},"289":{},"290":{},"291":{},"292":{},"293":{},"294":{},"295":{},"296":{},"297":{},"298":{},"299":{},"300":{},"301":{},"302":{}}}],["app/_services",{"_index":290,"name":{"339":{}},"parent":{"892":{},"893":{},"894":{},"895":{},"896":{},"897":{},"898":{},"899":{}}}],["app/_services/auth.service",{"_index":255,"name":{"303":{}},"parent":{"304":{}}}],["app/_services/auth.service.authservice",{"_index":257,"name":{},"parent":{"305":{},"306":{},"307":{},"308":{},"309":{},"310":{},"311":{},"312":{},"313":{},"314":{},"315":{},"316":{},"317":{},"318":{},"319":{},"320":{},"321":{}}}],["app/_services/block",{"_index":271,"name":{"322":{}},"parent":{"323":{},"324":{},"325":{},"326":{},"327":{},"328":{},"329":{},"330":{},"331":{},"332":{}}}],["app/_services/error",{"_index":283,"name":{"333":{}},"parent":{"334":{},"335":{},"336":{},"337":{},"338":{}}}],["app/_services/location.service",{"_index":291,"name":{"340":{}},"parent":{"341":{}}}],["app/_services/location.service.locationservice",{"_index":293,"name":{},"parent":{"342":{},"343":{},"344":{},"345":{},"346":{}}}],["app/_services/logging.service",{"_index":298,"name":{"347":{}},"parent":{"348":{}}}],["app/_services/logging.service.loggingservice",{"_index":299,"name":{},"parent":{"349":{},"350":{},"351":{},"352":{},"353":{},"354":{},"355":{},"356":{},"357":{},"358":{}}}],["app/_services/registry.service",{"_index":309,"name":{"359":{}},"parent":{"360":{}}}],["app/_services/registry.service.registryservice",{"_index":311,"name":{},"parent":{"361":{},"362":{},"363":{},"364":{},"365":{},"366":{}}}],["app/_services/token.service",{"_index":316,"name":{"367":{}},"parent":{"368":{}}}],["app/_services/token.service.tokenservice",{"_index":318,"name":{},"parent":{"369":{},"370":{},"371":{},"372":{},"373":{},"374":{},"375":{}}}],["app/_services/transaction.service",{"_index":323,"name":{"376":{}},"parent":{"377":{}}}],["app/_services/transaction.service.transactionservice",{"_index":325,"name":{},"parent":{"378":{},"379":{},"380":{},"381":{},"382":{},"383":{},"384":{},"385":{},"386":{},"387":{},"388":{},"389":{},"390":{},"391":{},"392":{}}}],["app/_services/user.service",{"_index":338,"name":{"393":{}},"parent":{"394":{}}}],["app/_services/user.service.userservice",{"_index":340,"name":{},"parent":{"395":{},"396":{},"397":{},"398":{},"399":{},"400":{},"401":{},"402":{},"403":{},"404":{},"405":{},"406":{},"407":{},"408":{},"409":{},"410":{},"411":{},"412":{},"413":{},"414":{},"415":{},"416":{},"417":{},"418":{},"419":{},"420":{},"421":{},"422":{},"423":{},"424":{},"425":{},"426":{}}}],["app/app",{"_index":369,"name":{"427":{}},"parent":{"428":{},"429":{}}}],["app/app.component",{"_index":373,"name":{"430":{}},"parent":{"431":{}}}],["app/app.component.appcomponent",{"_index":375,"name":{},"parent":{"432":{},"433":{},"434":{},"435":{},"436":{},"437":{},"438":{},"439":{}}}],["app/app.module",{"_index":381,"name":{"440":{}},"parent":{"441":{}}}],["app/app.module.appmodule",{"_index":383,"name":{},"parent":{"442":{}}}],["app/auth/_directives",{"_index":384,"name":{"443":{}},"parent":{}}],["app/auth/_directives/password",{"_index":385,"name":{"444":{}},"parent":{"445":{},"446":{},"447":{},"448":{},"449":{}}}],["app/auth/auth",{"_index":391,"name":{"450":{}},"parent":{"451":{},"452":{}}}],["app/auth/auth.component",{"_index":394,"name":{"453":{}},"parent":{"454":{}}}],["app/auth/auth.component.authcomponent",{"_index":396,"name":{},"parent":{"455":{},"456":{},"457":{},"458":{},"459":{},"460":{},"461":{},"462":{},"463":{},"464":{},"465":{}}}],["app/auth/auth.module",{"_index":405,"name":{"466":{}},"parent":{"467":{}}}],["app/auth/auth.module.authmodule",{"_index":407,"name":{},"parent":{"468":{}}}],["app/pages/accounts/account",{"_index":408,"name":{"469":{},"514":{}},"parent":{"470":{},"471":{},"472":{},"473":{},"474":{},"475":{},"476":{},"477":{},"478":{},"479":{},"480":{},"481":{},"482":{},"483":{},"484":{},"485":{},"486":{},"487":{},"488":{},"489":{},"490":{},"491":{},"492":{},"493":{},"494":{},"495":{},"496":{},"497":{},"498":{},"499":{},"500":{},"501":{},"502":{},"503":{},"504":{},"505":{},"506":{},"507":{},"508":{},"509":{},"510":{},"511":{},"512":{},"513":{},"515":{},"516":{},"517":{},"518":{},"519":{},"520":{},"521":{},"522":{},"523":{},"524":{},"525":{},"526":{},"527":{},"528":{},"529":{},"530":{},"531":{},"532":{},"533":{}}}],["app/pages/accounts/accounts",{"_index":467,"name":{"534":{}},"parent":{"535":{},"536":{}}}],["app/pages/accounts/accounts.component",{"_index":470,"name":{"537":{}},"parent":{"538":{}}}],["app/pages/accounts/accounts.component.accountscomponent",{"_index":472,"name":{},"parent":{"539":{},"540":{},"541":{},"542":{},"543":{},"544":{},"545":{},"546":{},"547":{},"548":{},"549":{},"550":{},"551":{},"552":{},"553":{},"554":{}}}],["app/pages/accounts/accounts.module",{"_index":481,"name":{"555":{}},"parent":{"556":{}}}],["app/pages/accounts/accounts.module.accountsmodule",{"_index":483,"name":{},"parent":{"557":{}}}],["app/pages/accounts/create",{"_index":484,"name":{"558":{}},"parent":{"559":{},"560":{},"561":{},"562":{},"563":{},"564":{},"565":{},"566":{},"567":{},"568":{},"569":{},"570":{}}}],["app/pages/admin/admin",{"_index":491,"name":{"571":{}},"parent":{"572":{},"573":{}}}],["app/pages/admin/admin.component",{"_index":494,"name":{"574":{}},"parent":{"575":{}}}],["app/pages/admin/admin.component.admincomponent",{"_index":496,"name":{},"parent":{"576":{},"577":{},"578":{},"579":{},"580":{},"581":{},"582":{},"583":{},"584":{},"585":{},"586":{},"587":{},"588":{},"589":{}}}],["app/pages/admin/admin.module",{"_index":500,"name":{"590":{}},"parent":{"591":{}}}],["app/pages/admin/admin.module.adminmodule",{"_index":502,"name":{},"parent":{"592":{}}}],["app/pages/pages",{"_index":503,"name":{"593":{}},"parent":{"594":{},"595":{}}}],["app/pages/pages.component",{"_index":506,"name":{"596":{}},"parent":{"597":{}}}],["app/pages/pages.component.pagescomponent",{"_index":508,"name":{},"parent":{"598":{},"599":{}}}],["app/pages/pages.module",{"_index":510,"name":{"600":{}},"parent":{"601":{}}}],["app/pages/pages.module.pagesmodule",{"_index":512,"name":{},"parent":{"602":{}}}],["app/pages/settings/organization/organization.component",{"_index":513,"name":{"603":{}},"parent":{"604":{}}}],["app/pages/settings/organization/organization.component.organizationcomponent",{"_index":515,"name":{},"parent":{"605":{},"606":{},"607":{},"608":{},"609":{},"610":{},"611":{}}}],["app/pages/settings/settings",{"_index":518,"name":{"612":{}},"parent":{"613":{},"614":{}}}],["app/pages/settings/settings.component",{"_index":521,"name":{"615":{}},"parent":{"616":{}}}],["app/pages/settings/settings.component.settingscomponent",{"_index":523,"name":{},"parent":{"617":{},"618":{},"619":{},"620":{},"621":{},"622":{},"623":{},"624":{},"625":{},"626":{},"627":{}}}],["app/pages/settings/settings.module",{"_index":526,"name":{"628":{}},"parent":{"629":{}}}],["app/pages/settings/settings.module.settingsmodule",{"_index":528,"name":{},"parent":{"630":{}}}],["app/pages/tokens/token",{"_index":529,"name":{"631":{}},"parent":{"632":{},"633":{},"634":{},"635":{}}}],["app/pages/tokens/tokens",{"_index":533,"name":{"636":{}},"parent":{"637":{},"638":{}}}],["app/pages/tokens/tokens.component",{"_index":536,"name":{"639":{}},"parent":{"640":{}}}],["app/pages/tokens/tokens.component.tokenscomponent",{"_index":538,"name":{},"parent":{"641":{},"642":{},"643":{},"644":{},"645":{},"646":{},"647":{},"648":{},"649":{},"650":{}}}],["app/pages/tokens/tokens.module",{"_index":542,"name":{"651":{}},"parent":{"652":{}}}],["app/pages/tokens/tokens.module.tokensmodule",{"_index":544,"name":{},"parent":{"653":{}}}],["app/pages/transactions/transaction",{"_index":545,"name":{"654":{}},"parent":{"655":{},"656":{},"657":{},"658":{},"659":{},"660":{},"661":{},"662":{},"663":{},"664":{},"665":{},"666":{}}}],["app/pages/transactions/transactions",{"_index":556,"name":{"667":{}},"parent":{"668":{},"669":{}}}],["app/pages/transactions/transactions.component",{"_index":559,"name":{"670":{}},"parent":{"671":{}}}],["app/pages/transactions/transactions.component.transactionscomponent",{"_index":561,"name":{},"parent":{"672":{},"673":{},"674":{},"675":{},"676":{},"677":{},"678":{},"679":{},"680":{},"681":{},"682":{},"683":{},"684":{},"685":{},"686":{},"687":{},"688":{}}}],["app/pages/transactions/transactions.module",{"_index":565,"name":{"689":{}},"parent":{"690":{}}}],["app/pages/transactions/transactions.module.transactionsmodule",{"_index":567,"name":{},"parent":{"691":{}}}],["app/shared/_directives/menu",{"_index":568,"name":{"692":{},"696":{}},"parent":{"693":{},"694":{},"695":{},"697":{},"698":{},"699":{}}}],["app/shared/_pipes/safe.pipe",{"_index":576,"name":{"700":{}},"parent":{"701":{}}}],["app/shared/_pipes/safe.pipe.safepipe",{"_index":578,"name":{},"parent":{"702":{},"703":{}}}],["app/shared/_pipes/token",{"_index":580,"name":{"704":{}},"parent":{"705":{},"706":{},"707":{}}}],["app/shared/error",{"_index":584,"name":{"708":{}},"parent":{"709":{},"710":{},"711":{}}}],["app/shared/footer/footer.component",{"_index":589,"name":{"712":{}},"parent":{"713":{}}}],["app/shared/footer/footer.component.footercomponent",{"_index":591,"name":{},"parent":{"714":{},"715":{}}}],["app/shared/shared.module",{"_index":592,"name":{"716":{}},"parent":{"717":{}}}],["app/shared/shared.module.sharedmodule",{"_index":594,"name":{},"parent":{"718":{}}}],["app/shared/sidebar/sidebar.component",{"_index":595,"name":{"719":{}},"parent":{"720":{}}}],["app/shared/sidebar/sidebar.component.sidebarcomponent",{"_index":597,"name":{},"parent":{"721":{},"722":{}}}],["app/shared/topbar/topbar.component",{"_index":598,"name":{"723":{}},"parent":{"724":{}}}],["app/shared/topbar/topbar.component.topbarcomponent",{"_index":600,"name":{},"parent":{"725":{},"726":{}}}],["appcomponent",{"_index":374,"name":{"431":{}},"parent":{}}],["appmodule",{"_index":382,"name":{"441":{}},"parent":{}}],["approutingmodule",{"_index":371,"name":{"428":{}},"parent":{}}],["approval",{"_index":139,"name":{"134":{}},"parent":{}}],["approvalstatus",{"_index":497,"name":{"585":{}},"parent":{}}],["approveaction",{"_index":355,"name":{"413":{},"586":{},"847":{}},"parent":{}}],["area",{"_index":109,"name":{"102":{},"143":{}},"parent":{}}],["area_name",{"_index":110,"name":{"103":{}},"parent":{}}],["area_type",{"_index":111,"name":{"104":{}},"parent":{}}],["areaname",{"_index":142,"name":{"138":{},"884":{}},"parent":{}}],["areanames",{"_index":431,"name":{"491":{},"565":{}},"parent":{}}],["areatype",{"_index":145,"name":{"141":{},"885":{}},"parent":{}}],["areatypes",{"_index":432,"name":{"492":{}},"parent":{}}],["arraysum",{"_index":29,"name":{"30":{},"852":{}},"parent":{}}],["assets/js/ethtx/dist",{"_index":606,"name":{"732":{}},"parent":{"900":{}}}],["assets/js/ethtx/dist/hex",{"_index":601,"name":{"727":{}},"parent":{"728":{},"729":{},"730":{},"731":{}}}],["assets/js/ethtx/dist/tx",{"_index":607,"name":{"733":{}},"parent":{"734":{},"758":{},"759":{},"760":{}}}],["assets/js/ethtx/dist/tx.tx",{"_index":608,"name":{},"parent":{"735":{},"736":{},"737":{},"738":{},"739":{},"740":{},"741":{},"742":{},"743":{},"744":{},"745":{},"746":{},"747":{},"748":{},"749":{},"750":{},"751":{},"752":{},"753":{},"754":{},"755":{},"756":{},"757":{}}}],["authcomponent",{"_index":395,"name":{"454":{}},"parent":{}}],["authguard",{"_index":20,"name":{"21":{},"850":{}},"parent":{}}],["authmodule",{"_index":406,"name":{"467":{}},"parent":{}}],["authroutingmodule",{"_index":392,"name":{"451":{}},"parent":{}}],["authservice",{"_index":256,"name":{"304":{},"892":{}},"parent":{}}],["backend",{"_index":65,"name":{"58":{}},"parent":{"59":{},"62":{}}}],["backend.mockbackendinterceptor",{"_index":67,"name":{},"parent":{"60":{},"61":{}}}],["backend.mockbackendprovider",{"_index":70,"name":{},"parent":{"63":{}}}],["backend.mockbackendprovider.__type",{"_index":72,"name":{},"parent":{"64":{},"65":{},"66":{}}}],["balance",{"_index":99,"name":{"91":{},"174":{}},"parent":{}}],["block",{"_index":187,"name":{"192":{}},"parent":{}}],["blockfilter",{"_index":179,"name":{"181":{}},"parent":{}}],["blocksbloom",{"_index":176,"name":{"178":{},"868":{}},"parent":{}}],["blocksync",{"_index":277,"name":{"327":{}},"parent":{}}],["blocksyncservice",{"_index":273,"name":{"323":{},"896":{}},"parent":{}}],["blocktxfilter",{"_index":180,"name":{"182":{}},"parent":{}}],["bloxberg:8996",{"_index":103,"name":{"96":{}},"parent":{}}],["bloxbergchainid",{"_index":635,"name":{"765":{},"780":{},"795":{}},"parent":{}}],["bloxberglink",{"_index":437,"name":{"501":{}},"parent":{}}],["canactivate",{"_index":22,"name":{"23":{},"28":{}},"parent":{}}],["candebug",{"_index":301,"name":{"351":{}},"parent":{}}],["canonicalorder",{"_index":623,"name":{"753":{}},"parent":{}}],["categories",{"_index":430,"name":{"490":{},"564":{}},"parent":{}}],["category",{"_index":113,"name":{"106":{},"135":{},"883":{}},"parent":{}}],["chainid",{"_index":615,"name":{"745":{}},"parent":{}}],["changeaccountinfo",{"_index":351,"name":{"409":{}},"parent":{}}],["ciccacheurl",{"_index":641,"name":{"771":{},"786":{},"801":{}},"parent":{}}],["cicconvert",{"_index":380,"name":{"439":{}},"parent":{}}],["cicmetaurl",{"_index":639,"name":{"769":{},"784":{},"799":{}},"parent":{}}],["cictransfer",{"_index":379,"name":{"438":{}},"parent":{}}],["cicussdurl",{"_index":643,"name":{"773":{},"788":{},"803":{}},"parent":{}}],["clearkeysinkeyring",{"_index":235,"name":{"243":{},"269":{}},"parent":{}}],["clearsignature",{"_index":627,"name":{"757":{}},"parent":{}}],["columnstodisplay",{"_index":539,"name":{"643":{}},"parent":{}}],["comment",{"_index":157,"name":{"157":{}},"parent":{}}],["config.interceptor",{"_index":85,"name":{"76":{}},"parent":{"77":{}}}],["config.interceptor.httpconfiginterceptor",{"_index":87,"name":{},"parent":{"78":{},"79":{}}}],["constructor",{"_index":2,"name":{"2":{},"13":{},"22":{},"27":{},"35":{},"41":{},"47":{},"50":{},"60":{},"74":{},"78":{},"83":{},"146":{},"152":{},"179":{},"186":{},"191":{},"198":{},"208":{},"219":{},"288":{},"305":{},"324":{},"335":{},"342":{},"349":{},"361":{},"369":{},"378":{},"395":{},"429":{},"432":{},"442":{},"446":{},"452":{},"455":{},"468":{},"471":{},"516":{},"536":{},"539":{},"557":{},"560":{},"573":{},"576":{},"592":{},"595":{},"598":{},"602":{},"605":{},"614":{},"617":{},"630":{},"633":{},"638":{},"641":{},"653":{},"656":{},"669":{},"672":{},"691":{},"694":{},"698":{},"702":{},"706":{},"710":{},"714":{},"718":{},"721":{},"725":{},"735":{},"811":{},"818":{},"824":{},"826":{},"828":{},"831":{},"835":{},"841":{}},"parent":{}}],["contract",{"_index":4,"name":{"3":{},"14":{}},"parent":{}}],["contractaddress",{"_index":5,"name":{"4":{},"15":{}},"parent":{}}],["conversion",{"_index":199,"name":{"207":{},"872":{}},"parent":{}}],["copy",{"_index":31,"name":{"31":{}},"parent":{"32":{}}}],["copyaddress",{"_index":447,"name":{"513":{},"666":{}},"parent":{}}],["copytoclipboard",{"_index":32,"name":{"32":{},"853":{}},"parent":{}}],["createaccountcomponent",{"_index":487,"name":{"559":{}},"parent":{}}],["createform",{"_index":489,"name":{"561":{}},"parent":{}}],["createformstub",{"_index":490,"name":{"569":{}},"parent":{}}],["csv",{"_index":46,"name":{"42":{},"67":{}},"parent":{"43":{},"68":{}}}],["customerrorstatematcher",{"_index":37,"name":{"34":{},"855":{}},"parent":{}}],["customvalidator",{"_index":41,"name":{"38":{},"854":{}},"parent":{}}],["data",{"_index":123,"name":{"116":{},"120":{},"278":{},"711":{},"741":{}},"parent":{}}],["datasource",{"_index":473,"name":{"540":{},"577":{},"619":{},"642":{}},"parent":{}}],["date",{"_index":524,"name":{"618":{}},"parent":{}}],["date_registered",{"_index":94,"name":{"87":{}},"parent":{}}],["decimals",{"_index":167,"name":{"168":{}},"parent":{}}],["defaultaccount",{"_index":132,"name":{"126":{},"879":{}},"parent":{}}],["defaultpagesize",{"_index":475,"name":{"543":{},"675":{}},"parent":{}}],["destinationtoken",{"_index":201,"name":{"209":{}},"parent":{}}],["details.component",{"_index":410,"name":{"469":{},"631":{},"654":{}},"parent":{"470":{},"632":{},"655":{}}}],["details.component.accountdetailscomponent",{"_index":412,"name":{},"parent":{"471":{},"472":{},"473":{},"474":{},"475":{},"476":{},"477":{},"478":{},"479":{},"480":{},"481":{},"482":{},"483":{},"484":{},"485":{},"486":{},"487":{},"488":{},"489":{},"490":{},"491":{},"492":{},"493":{},"494":{},"495":{},"496":{},"497":{},"498":{},"499":{},"500":{},"501":{},"502":{},"503":{},"504":{},"505":{},"506":{},"507":{},"508":{},"509":{},"510":{},"511":{},"512":{},"513":{}}}],["details.component.tokendetailscomponent",{"_index":532,"name":{},"parent":{"633":{},"634":{},"635":{}}}],["details.component.transactiondetailscomponent",{"_index":548,"name":{},"parent":{"656":{},"657":{},"658":{},"659":{},"660":{},"661":{},"662":{},"663":{},"664":{},"665":{},"666":{}}}],["details/account",{"_index":409,"name":{"469":{}},"parent":{"470":{},"471":{},"472":{},"473":{},"474":{},"475":{},"476":{},"477":{},"478":{},"479":{},"480":{},"481":{},"482":{},"483":{},"484":{},"485":{},"486":{},"487":{},"488":{},"489":{},"490":{},"491":{},"492":{},"493":{},"494":{},"495":{},"496":{},"497":{},"498":{},"499":{},"500":{},"501":{},"502":{},"503":{},"504":{},"505":{},"506":{},"507":{},"508":{},"509":{},"510":{},"511":{},"512":{},"513":{}}}],["details/token",{"_index":530,"name":{"631":{}},"parent":{"632":{},"633":{},"634":{},"635":{}}}],["details/transaction",{"_index":546,"name":{"654":{}},"parent":{"655":{},"656":{},"657":{},"658":{},"659":{},"660":{},"661":{},"662":{},"663":{},"664":{},"665":{},"666":{}}}],["dgst",{"_index":252,"name":{"291":{}},"parent":{}}],["dialog",{"_index":288,"name":{"337":{}},"parent":{}}],["dialog.component",{"_index":586,"name":{"708":{}},"parent":{"709":{}}}],["dialog.component.errordialogcomponent",{"_index":588,"name":{},"parent":{"710":{},"711":{}}}],["dialog.service",{"_index":284,"name":{"333":{}},"parent":{"334":{}}}],["dialog.service.errordialogservice",{"_index":286,"name":{},"parent":{"335":{},"336":{},"337":{},"338":{}}}],["dialog/error",{"_index":585,"name":{"708":{}},"parent":{"709":{},"710":{},"711":{}}}],["digest",{"_index":124,"name":{"117":{},"273":{},"279":{}},"parent":{}}],["directive",{"_index":666,"name":{"816":{}},"parent":{"817":{},"818":{},"819":{},"820":{},"821":{}}}],["disapproveaction",{"_index":498,"name":{"587":{}},"parent":{}}],["displayedcolumns",{"_index":474,"name":{"542":{},"578":{},"620":{}},"parent":{}}],["dofilter",{"_index":479,"name":{"550":{},"584":{},"625":{},"648":{},"685":{}},"parent":{}}],["dotransactionfilter",{"_index":438,"name":{"503":{}},"parent":{}}],["douserfilter",{"_index":439,"name":{"504":{}},"parent":{}}],["downloadcsv",{"_index":446,"name":{"512":{},"554":{},"589":{},"626":{},"650":{},"688":{}},"parent":{}}],["email",{"_index":115,"name":{"109":{},"158":{}},"parent":{}}],["engine",{"_index":125,"name":{"118":{},"153":{},"276":{},"289":{}},"parent":{}}],["entry",{"_index":17,"name":{"18":{}},"parent":{}}],["env",{"_index":300,"name":{"350":{}},"parent":{}}],["environment",{"_index":631,"name":{"762":{},"777":{},"792":{}},"parent":{}}],["environments/environment",{"_index":649,"name":{"791":{}},"parent":{"792":{}}}],["environments/environment.dev",{"_index":630,"name":{"761":{}},"parent":{"762":{}}}],["environments/environment.dev.environment",{"_index":632,"name":{},"parent":{"763":{}}}],["environments/environment.dev.environment.__type",{"_index":634,"name":{},"parent":{"764":{},"765":{},"766":{},"767":{},"768":{},"769":{},"770":{},"771":{},"772":{},"773":{},"774":{},"775":{}}}],["environments/environment.environment",{"_index":650,"name":{},"parent":{"793":{}}}],["environments/environment.environment.__type",{"_index":651,"name":{},"parent":{"794":{},"795":{},"796":{},"797":{},"798":{},"799":{},"800":{},"801":{},"802":{},"803":{},"804":{},"805":{}}}],["environments/environment.prod",{"_index":646,"name":{"776":{}},"parent":{"777":{}}}],["environments/environment.prod.environment",{"_index":647,"name":{},"parent":{"778":{}}}],["environments/environment.prod.environment.__type",{"_index":648,"name":{},"parent":{"779":{},"780":{},"781":{},"782":{},"783":{},"784":{},"785":{},"786":{},"787":{},"788":{},"789":{},"790":{}}}],["error",{"_index":34,"name":{"33":{},"44":{}},"parent":{"34":{},"35":{},"36":{},"45":{},"46":{},"47":{},"48":{},"49":{},"50":{},"51":{},"52":{},"53":{},"54":{}}}],["errordialogcomponent",{"_index":587,"name":{"709":{}},"parent":{}}],["errordialogservice",{"_index":285,"name":{"334":{},"899":{}},"parent":{}}],["errorinterceptor",{"_index":82,"name":{"73":{},"865":{}},"parent":{}}],["evm",{"_index":101,"name":{"94":{}},"parent":{}}],["expandcollapse",{"_index":499,"name":{"588":{}},"parent":{}}],["exportcsv",{"_index":47,"name":{"43":{},"856":{}},"parent":{}}],["fetcher",{"_index":282,"name":{"332":{}},"parent":{}}],["filegetter",{"_index":313,"name":{"363":{}},"parent":{}}],["filteraccounts",{"_index":444,"name":{"509":{},"552":{}},"parent":{}}],["filterrounds",{"_index":182,"name":{"184":{}},"parent":{}}],["filtertransactions",{"_index":445,"name":{"510":{},"686":{}},"parent":{}}],["fingerprint",{"_index":247,"name":{"283":{},"299":{}},"parent":{}}],["fn",{"_index":116,"name":{"110":{}},"parent":{}}],["footercomponent",{"_index":590,"name":{"713":{}},"parent":{}}],["footerstubcomponent",{"_index":678,"name":{"827":{},"905":{}},"parent":{}}],["from",{"_index":194,"name":{"199":{}},"parent":{}}],["fromhex",{"_index":602,"name":{"728":{}},"parent":{}}],["fromvalue",{"_index":202,"name":{"210":{}},"parent":{}}],["gaslimit",{"_index":611,"name":{"738":{}},"parent":{}}],["gasprice",{"_index":610,"name":{"737":{}},"parent":{}}],["gender",{"_index":96,"name":{"88":{}},"parent":{}}],["genders",{"_index":436,"name":{"498":{},"567":{}},"parent":{}}],["getaccountbyaddress",{"_index":360,"name":{"418":{}},"parent":{}}],["getaccountbyphone",{"_index":361,"name":{"419":{}},"parent":{}}],["getaccountdetailsfrommeta",{"_index":357,"name":{"415":{}},"parent":{}}],["getaccountinfo",{"_index":336,"name":{"391":{}},"parent":{}}],["getaccountstatus",{"_index":349,"name":{"407":{}},"parent":{}}],["getaccounttypes",{"_index":366,"name":{"424":{}},"parent":{}}],["getactionbyid",{"_index":354,"name":{"412":{},"846":{}},"parent":{}}],["getactions",{"_index":353,"name":{"411":{}},"parent":{}}],["getaddresstransactions",{"_index":331,"name":{"386":{}},"parent":{}}],["getalltransactions",{"_index":330,"name":{"385":{},"838":{}},"parent":{}}],["getareanamebylocation",{"_index":295,"name":{"344":{}},"parent":{}}],["getareanames",{"_index":294,"name":{"343":{}},"parent":{}}],["getareatypebyarea",{"_index":297,"name":{"346":{}},"parent":{}}],["getareatypes",{"_index":296,"name":{"345":{}},"parent":{}}],["getbysymbol",{"_index":684,"name":{"832":{}},"parent":{}}],["getcategories",{"_index":364,"name":{"422":{}},"parent":{}}],["getcategorybyproduct",{"_index":365,"name":{"423":{}},"parent":{}}],["getchallenge",{"_index":264,"name":{"313":{}},"parent":{}}],["getencryptkeys",{"_index":219,"name":{"227":{},"253":{}},"parent":{}}],["getfingerprint",{"_index":224,"name":{"232":{},"258":{}},"parent":{}}],["getgenders",{"_index":368,"name":{"426":{}},"parent":{}}],["getkeyid",{"_index":225,"name":{"233":{},"259":{}},"parent":{}}],["getkeysforid",{"_index":227,"name":{"235":{},"261":{}},"parent":{}}],["getlockedaccounts",{"_index":350,"name":{"408":{}},"parent":{}}],["getprivatekey",{"_index":221,"name":{"229":{},"255":{},"321":{}},"parent":{}}],["getprivatekeyforid",{"_index":229,"name":{"237":{},"263":{}},"parent":{}}],["getprivatekeyid",{"_index":226,"name":{"234":{},"260":{}},"parent":{}}],["getprivatekeys",{"_index":220,"name":{"228":{},"254":{}},"parent":{}}],["getpublickeyforid",{"_index":228,"name":{"236":{},"262":{}},"parent":{}}],["getpublickeyforsubkeyid",{"_index":230,"name":{"238":{},"264":{}},"parent":{}}],["getpublickeys",{"_index":216,"name":{"224":{},"250":{},"320":{}},"parent":{}}],["getpublickeysforaddress",{"_index":231,"name":{"239":{},"265":{}},"parent":{}}],["getregistry",{"_index":314,"name":{"365":{}},"parent":{}}],["getter",{"_index":61,"name":{"55":{}},"parent":{"56":{}}}],["gettokenbalance",{"_index":322,"name":{"375":{}},"parent":{}}],["gettokenbysymbol",{"_index":321,"name":{"374":{}},"parent":{}}],["gettokens",{"_index":320,"name":{"373":{}},"parent":{}}],["gettransactiontypes",{"_index":367,"name":{"425":{}},"parent":{}}],["gettrustedactivekeys",{"_index":218,"name":{"226":{},"252":{}},"parent":{}}],["gettrustedkeys",{"_index":217,"name":{"225":{},"251":{}},"parent":{}}],["gettrustedusers",{"_index":270,"name":{"319":{}},"parent":{}}],["getuser",{"_index":693,"name":{"845":{}},"parent":{}}],["getuserbyid",{"_index":692,"name":{"844":{}},"parent":{}}],["getweb3",{"_index":315,"name":{"366":{}},"parent":{}}],["getwithtoken",{"_index":262,"name":{"311":{}},"parent":{}}],["globalerrorhandler",{"_index":54,"name":{"49":{},"858":{}},"parent":{}}],["handleerror",{"_index":57,"name":{"52":{}},"parent":{}}],["handler",{"_index":49,"name":{"44":{}},"parent":{"45":{},"49":{}}}],["handler.globalerrorhandler",{"_index":55,"name":{},"parent":{"50":{},"51":{},"52":{},"53":{},"54":{}}}],["handler.httperror",{"_index":52,"name":{},"parent":{"46":{},"47":{},"48":{}}}],["haveaccount",{"_index":8,"name":{"7":{}},"parent":{}}],["headers",{"_index":341,"name":{"396":{}},"parent":{}}],["hextovalue",{"_index":629,"name":{"759":{}},"parent":{}}],["httpconfiginterceptor",{"_index":86,"name":{"77":{},"866":{}},"parent":{}}],["httperror",{"_index":50,"name":{"45":{},"857":{}},"parent":{}}],["httpgetter",{"_index":62,"name":{"56":{},"859":{}},"parent":{}}],["iconid",{"_index":389,"name":{"448":{}},"parent":{}}],["id",{"_index":128,"name":{"121":{},"124":{},"130":{},"447":{}},"parent":{}}],["identities",{"_index":100,"name":{"92":{}},"parent":{}}],["importkeypair",{"_index":213,"name":{"221":{},"247":{}},"parent":{}}],["importprivatekey",{"_index":215,"name":{"223":{},"249":{}},"parent":{}}],["importpublickey",{"_index":214,"name":{"222":{},"248":{}},"parent":{}}],["init",{"_index":260,"name":{"309":{}},"parent":{}}],["intercept",{"_index":68,"name":{"61":{},"75":{},"79":{},"84":{}},"parent":{}}],["isdialogopen",{"_index":287,"name":{"336":{}},"parent":{}}],["isencryptedprivatekey",{"_index":223,"name":{"231":{},"257":{}},"parent":{}}],["iserrorstate",{"_index":39,"name":{"36":{}},"parent":{}}],["isvalidkey",{"_index":222,"name":{"230":{},"256":{}},"parent":{}}],["iswarning",{"_index":58,"name":{"53":{}},"parent":{}}],["key",{"_index":208,"name":{"217":{}},"parent":{"218":{},"219":{},"220":{},"221":{},"222":{},"223":{},"224":{},"225":{},"226":{},"227":{},"228":{},"229":{},"230":{},"231":{},"232":{},"233":{},"234":{},"235":{},"236":{},"237":{},"238":{},"239":{},"240":{},"241":{},"242":{},"243":{},"244":{},"245":{},"246":{},"247":{},"248":{},"249":{},"250":{},"251":{},"252":{},"253":{},"254":{},"255":{},"256":{},"257":{},"258":{},"259":{},"260":{},"261":{},"262":{},"263":{},"264":{},"265":{},"266":{},"267":{},"268":{},"269":{},"270":{}}}],["keyform",{"_index":397,"name":{"456":{}},"parent":{}}],["keyformstub",{"_index":401,"name":{"461":{}},"parent":{}}],["keystore",{"_index":253,"name":{"293":{},"397":{}},"parent":{}}],["last",{"_index":9,"name":{"8":{}},"parent":{}}],["latitude",{"_index":106,"name":{"98":{}},"parent":{}}],["link",{"_index":665,"name":{"816":{}},"parent":{"817":{},"818":{},"819":{},"820":{},"821":{}}}],["linkparams",{"_index":669,"name":{"819":{}},"parent":{}}],["loadaccounts",{"_index":359,"name":{"417":{}},"parent":{}}],["loadevent",{"_index":319,"name":{"372":{}},"parent":{}}],["loading",{"_index":399,"name":{"458":{}},"parent":{}}],["loadkeyring",{"_index":212,"name":{"220":{},"246":{}},"parent":{}}],["location",{"_index":108,"name":{"100":{}},"parent":{}}],["locations",{"_index":144,"name":{"140":{}},"parent":{}}],["locationservice",{"_index":292,"name":{"341":{},"897":{}},"parent":{}}],["logerror",{"_index":59,"name":{"54":{}},"parent":{}}],["logginginterceptor",{"_index":90,"name":{"82":{},"867":{}},"parent":{}}],["loggingservice",{"_index":254,"name":{"298":{},"348":{},"898":{}},"parent":{}}],["loggingurl",{"_index":638,"name":{"768":{},"783":{},"798":{}},"parent":{}}],["login",{"_index":265,"name":{"314":{},"463":{}},"parent":{}}],["loginresponse",{"_index":266,"name":{"315":{}},"parent":{}}],["loginview",{"_index":267,"name":{"316":{}},"parent":{}}],["loglevel",{"_index":636,"name":{"766":{},"781":{},"796":{}},"parent":{}}],["logout",{"_index":269,"name":{"318":{},"627":{}},"parent":{}}],["longitude",{"_index":107,"name":{"99":{}},"parent":{}}],["low",{"_index":178,"name":{"180":{}},"parent":{}}],["m",{"_index":131,"name":{"125":{}},"parent":{}}],["main",{"_index":652,"name":{"806":{}},"parent":{}}],["matcher",{"_index":36,"name":{"33":{},"459":{},"499":{},"526":{},"562":{},"608":{}},"parent":{"34":{}}}],["matcher.customerrorstatematcher",{"_index":38,"name":{},"parent":{"35":{},"36":{}}}],["mediaquery",{"_index":377,"name":{"436":{}},"parent":{}}],["menuselectiondirective",{"_index":570,"name":{"693":{}},"parent":{}}],["menutoggledirective",{"_index":573,"name":{"697":{}},"parent":{}}],["message",{"_index":625,"name":{"755":{}},"parent":{}}],["meta",{"_index":126,"name":{"119":{},"877":{}},"parent":{}}],["metaresponse",{"_index":129,"name":{"123":{},"878":{}},"parent":{}}],["mockbackendinterceptor",{"_index":66,"name":{"59":{},"860":{}},"parent":{}}],["mockbackendprovider",{"_index":69,"name":{"62":{},"861":{}},"parent":{}}],["module",{"_index":673,"name":{"822":{}},"parent":{"823":{},"824":{},"825":{},"826":{},"827":{},"828":{}}}],["multi",{"_index":74,"name":{"66":{}},"parent":{}}],["mutablekeystore",{"_index":237,"name":{"245":{},"308":{},"887":{}},"parent":{}}],["mutablepgpkeystore",{"_index":210,"name":{"218":{},"886":{}},"parent":{}}],["n",{"_index":117,"name":{"111":{}},"parent":{}}],["name",{"_index":140,"name":{"136":{},"139":{},"142":{},"159":{},"164":{},"188":{}},"parent":{}}],["namesearchform",{"_index":452,"name":{"517":{}},"parent":{}}],["namesearchformstub",{"_index":461,"name":{"528":{}},"parent":{}}],["namesearchloading",{"_index":454,"name":{"519":{}},"parent":{}}],["namesearchsubmitted",{"_index":453,"name":{"518":{}},"parent":{}}],["navigatedto",{"_index":670,"name":{"820":{}},"parent":{}}],["newconversionevent",{"_index":280,"name":{"330":{}},"parent":{}}],["newtransferevent",{"_index":279,"name":{"329":{}},"parent":{}}],["ngafterviewinit",{"_index":564,"name":{"687":{}},"parent":{}}],["ngoninit",{"_index":400,"name":{"460":{},"502":{},"527":{},"549":{},"568":{},"583":{},"609":{},"624":{},"635":{},"647":{},"661":{},"683":{},"715":{},"722":{},"726":{}},"parent":{}}],["nonce",{"_index":609,"name":{"736":{}},"parent":{}}],["oldchain:1",{"_index":105,"name":{"97":{}},"parent":{}}],["onaddresssearch",{"_index":466,"name":{"533":{}},"parent":{}}],["onclick",{"_index":671,"name":{"821":{}},"parent":{}}],["onmenuselect",{"_index":572,"name":{"695":{}},"parent":{}}],["onmenutoggle",{"_index":575,"name":{"699":{}},"parent":{}}],["onnamesearch",{"_index":464,"name":{"531":{}},"parent":{}}],["onphonesearch",{"_index":465,"name":{"532":{}},"parent":{}}],["onresize",{"_index":378,"name":{"437":{}},"parent":{}}],["onsign",{"_index":244,"name":{"281":{},"294":{}},"parent":{}}],["onsubmit",{"_index":402,"name":{"462":{},"570":{},"611":{}},"parent":{}}],["onverify",{"_index":246,"name":{"282":{},"296":{}},"parent":{}}],["opendialog",{"_index":289,"name":{"338":{}},"parent":{}}],["organizationcomponent",{"_index":514,"name":{"604":{}},"parent":{}}],["organizationform",{"_index":516,"name":{"606":{}},"parent":{}}],["organizationformstub",{"_index":517,"name":{"610":{}},"parent":{}}],["owner",{"_index":174,"name":{"176":{}},"parent":{}}],["pagescomponent",{"_index":507,"name":{"597":{}},"parent":{}}],["pagesizeoptions",{"_index":476,"name":{"544":{},"676":{}},"parent":{}}],["pagesmodule",{"_index":511,"name":{"601":{}},"parent":{}}],["pagesroutingmodule",{"_index":504,"name":{"594":{}},"parent":{}}],["paginator",{"_index":477,"name":{"547":{},"581":{},"622":{},"644":{},"681":{}},"parent":{}}],["parammap",{"_index":661,"name":{"813":{}},"parent":{}}],["passwordmatchvalidator",{"_index":42,"name":{"39":{}},"parent":{}}],["passwordtoggledirective",{"_index":387,"name":{"445":{}},"parent":{}}],["patternvalidator",{"_index":44,"name":{"40":{}},"parent":{}}],["personvalidation",{"_index":79,"name":{"70":{},"863":{}},"parent":{}}],["pgpsigner",{"_index":250,"name":{"287":{},"891":{}},"parent":{}}],["phonesearchform",{"_index":455,"name":{"520":{}},"parent":{}}],["phonesearchformstub",{"_index":462,"name":{"529":{}},"parent":{}}],["phonesearchloading",{"_index":457,"name":{"522":{}},"parent":{}}],["phonesearchsubmitted",{"_index":456,"name":{"521":{}},"parent":{}}],["polyfills",{"_index":653,"name":{"807":{}},"parent":{}}],["prepare",{"_index":248,"name":{"284":{},"300":{}},"parent":{}}],["production",{"_index":633,"name":{"764":{},"779":{},"794":{}},"parent":{}}],["products",{"_index":112,"name":{"105":{},"137":{}},"parent":{}}],["provide",{"_index":71,"name":{"64":{}},"parent":{}}],["provider",{"_index":154,"name":{"154":{}},"parent":{}}],["publickeysurl",{"_index":640,"name":{"770":{},"785":{},"800":{}},"parent":{}}],["r",{"_index":613,"name":{"743":{}},"parent":{}}],["ratio.pipe",{"_index":581,"name":{"704":{}},"parent":{"705":{}}}],["ratio.pipe.tokenratiopipe",{"_index":583,"name":{},"parent":{"706":{},"707":{}}}],["readcsv",{"_index":76,"name":{"68":{},"862":{}},"parent":{}}],["readystate",{"_index":276,"name":{"326":{},"435":{}},"parent":{}}],["readystateprocessor",{"_index":278,"name":{"328":{}},"parent":{}}],["readystatetarget",{"_index":275,"name":{"325":{},"434":{}},"parent":{}}],["recipient",{"_index":197,"name":{"202":{}},"parent":{}}],["recipientbloxberglink",{"_index":550,"name":{"659":{}},"parent":{}}],["refreshpaginator",{"_index":480,"name":{"553":{}},"parent":{}}],["registry",{"_index":13,"name":{"11":{},"149":{},"364":{},"370":{},"384":{},"399":{}},"parent":{"12":{}}}],["registry.tokenregistry",{"_index":15,"name":{},"parent":{"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{}}}],["registryaddress",{"_index":644,"name":{"774":{},"789":{},"804":{}},"parent":{}}],["registryservice",{"_index":310,"name":{"360":{}},"parent":{}}],["removekeysforid",{"_index":232,"name":{"240":{},"266":{}},"parent":{}}],["removepublickey",{"_index":234,"name":{"242":{},"268":{}},"parent":{}}],["removepublickeyforid",{"_index":233,"name":{"241":{},"267":{}},"parent":{}}],["reserveratio",{"_index":173,"name":{"175":{}},"parent":{}}],["reserves",{"_index":168,"name":{"169":{}},"parent":{}}],["resetaccountslist",{"_index":362,"name":{"420":{}},"parent":{}}],["resetpin",{"_index":348,"name":{"406":{},"511":{}},"parent":{}}],["resettransactionslist",{"_index":335,"name":{"390":{}},"parent":{}}],["reversetransaction",{"_index":555,"name":{"665":{}},"parent":{}}],["revokeaction",{"_index":356,"name":{"414":{}},"parent":{}}],["role",{"_index":138,"name":{"132":{}},"parent":{}}],["roleguard",{"_index":25,"name":{"26":{},"851":{}},"parent":{}}],["route",{"_index":656,"name":{"809":{}},"parent":{"810":{},"811":{},"812":{},"813":{},"814":{}}}],["routerlinkdirectivestub",{"_index":667,"name":{"817":{},"902":{}},"parent":{}}],["routing.module",{"_index":370,"name":{"427":{},"450":{},"534":{},"571":{},"593":{},"612":{},"636":{},"667":{}},"parent":{"428":{},"451":{},"535":{},"572":{},"594":{},"613":{},"637":{},"668":{}}}],["routing.module.accountsroutingmodule",{"_index":469,"name":{},"parent":{"536":{}}}],["routing.module.adminroutingmodule",{"_index":493,"name":{},"parent":{"573":{}}}],["routing.module.approutingmodule",{"_index":372,"name":{},"parent":{"429":{}}}],["routing.module.authroutingmodule",{"_index":393,"name":{},"parent":{"452":{}}}],["routing.module.pagesroutingmodule",{"_index":505,"name":{},"parent":{"595":{}}}],["routing.module.settingsroutingmodule",{"_index":520,"name":{},"parent":{"614":{}}}],["routing.module.tokensroutingmodule",{"_index":535,"name":{},"parent":{"638":{}}}],["routing.module.transactionsroutingmodule",{"_index":558,"name":{},"parent":{"669":{}}}],["s",{"_index":614,"name":{"744":{}},"parent":{}}],["safepipe",{"_index":577,"name":{"701":{}},"parent":{}}],["saveinfo",{"_index":443,"name":{"508":{}},"parent":{}}],["scan",{"_index":281,"name":{"331":{}},"parent":{}}],["scanfilter",{"_index":151,"name":{"148":{}},"parent":{}}],["search.component",{"_index":449,"name":{"514":{}},"parent":{"515":{}}}],["search.component.accountsearchcomponent",{"_index":451,"name":{},"parent":{"516":{},"517":{},"518":{},"519":{},"520":{},"521":{},"522":{},"523":{},"524":{},"525":{},"526":{},"527":{},"528":{},"529":{},"530":{},"531":{},"532":{},"533":{}}}],["search/account",{"_index":448,"name":{"514":{}},"parent":{"515":{},"516":{},"517":{},"518":{},"519":{},"520":{},"521":{},"522":{},"523":{},"524":{},"525":{},"526":{},"527":{},"528":{},"529":{},"530":{},"531":{},"532":{},"533":{}}}],["searchaccountbyname",{"_index":363,"name":{"421":{}},"parent":{}}],["selection.directive",{"_index":569,"name":{"692":{}},"parent":{"693":{}}}],["selection.directive.menuselectiondirective",{"_index":571,"name":{},"parent":{"694":{},"695":{}}}],["senddebuglevelmessage",{"_index":303,"name":{"353":{}},"parent":{}}],["sender",{"_index":195,"name":{"200":{}},"parent":{}}],["senderbloxberglink",{"_index":549,"name":{"658":{}},"parent":{}}],["senderrorlevelmessage",{"_index":307,"name":{"357":{}},"parent":{}}],["sendfatallevelmessage",{"_index":308,"name":{"358":{}},"parent":{}}],["sendinfolevelmessage",{"_index":304,"name":{"354":{}},"parent":{}}],["sendloglevelmessage",{"_index":305,"name":{"355":{}},"parent":{}}],["sendresponse",{"_index":263,"name":{"312":{}},"parent":{}}],["sendtracelevelmessage",{"_index":302,"name":{"352":{}},"parent":{}}],["sendwarnlevelmessage",{"_index":306,"name":{"356":{}},"parent":{}}],["sentencesforwarninglogging",{"_index":56,"name":{"51":{}},"parent":{}}],["serializebytes",{"_index":622,"name":{"752":{}},"parent":{}}],["serializenumber",{"_index":620,"name":{"750":{}},"parent":{}}],["serializerlp",{"_index":624,"name":{"754":{}},"parent":{}}],["serverloglevel",{"_index":637,"name":{"767":{},"782":{},"797":{}},"parent":{}}],["service",{"_index":681,"name":{"829":{},"833":{},"839":{}},"parent":{"830":{},"831":{},"832":{},"834":{},"835":{},"836":{},"837":{},"838":{},"840":{},"841":{},"842":{},"843":{},"844":{},"845":{},"846":{},"847":{}}}],["sessionlogincount",{"_index":259,"name":{"307":{}},"parent":{}}],["sessiontoken",{"_index":258,"name":{"306":{}},"parent":{}}],["setconversion",{"_index":333,"name":{"388":{},"837":{}},"parent":{}}],["setkey",{"_index":268,"name":{"317":{}},"parent":{}}],["setparammap",{"_index":662,"name":{"814":{}},"parent":{}}],["setsignature",{"_index":626,"name":{"756":{}},"parent":{}}],["setstate",{"_index":261,"name":{"310":{}},"parent":{}}],["settings",{"_index":148,"name":{"145":{},"873":{}},"parent":{}}],["settingscomponent",{"_index":522,"name":{"616":{}},"parent":{}}],["settingsmodule",{"_index":527,"name":{"629":{}},"parent":{}}],["settingsroutingmodule",{"_index":519,"name":{"613":{}},"parent":{}}],["settransaction",{"_index":332,"name":{"387":{},"836":{}},"parent":{}}],["sharedmodule",{"_index":593,"name":{"717":{}},"parent":{}}],["sidebarcomponent",{"_index":596,"name":{"720":{}},"parent":{}}],["sidebarstubcomponent",{"_index":674,"name":{"823":{},"903":{}},"parent":{}}],["sign",{"_index":236,"name":{"244":{},"270":{},"286":{},"302":{}},"parent":{}}],["signable",{"_index":240,"name":{"272":{},"888":{}},"parent":{}}],["signature",{"_index":120,"name":{"114":{},"122":{},"274":{},"292":{},"876":{},"889":{}},"parent":{}}],["signer",{"_index":239,"name":{"271":{},"280":{},"398":{},"890":{}},"parent":{"272":{},"274":{},"280":{},"287":{}}}],["signer.pgpsigner",{"_index":251,"name":{},"parent":{"288":{},"289":{},"290":{},"291":{},"292":{},"293":{},"294":{},"295":{},"296":{},"297":{},"298":{},"299":{},"300":{},"301":{},"302":{}}}],["signer.signable",{"_index":241,"name":{},"parent":{"273":{}}}],["signer.signature",{"_index":242,"name":{},"parent":{"275":{}}}],["signer.signature.__type",{"_index":243,"name":{},"parent":{"276":{},"277":{},"278":{},"279":{}}}],["signer.signer",{"_index":245,"name":{},"parent":{"281":{},"282":{},"283":{},"284":{},"285":{},"286":{}}}],["signeraddress",{"_index":6,"name":{"5":{},"16":{}},"parent":{}}],["sort",{"_index":478,"name":{"548":{},"582":{},"623":{},"645":{},"682":{}},"parent":{}}],["sourcetoken",{"_index":203,"name":{"211":{}},"parent":{}}],["staff",{"_index":156,"name":{"156":{},"880":{}},"parent":{}}],["state",{"_index":35,"name":{"33":{}},"parent":{"34":{},"35":{},"36":{}}}],["status",{"_index":53,"name":{"48":{}},"parent":{}}],["store",{"_index":209,"name":{"217":{}},"parent":{"218":{},"245":{}}}],["store.mutablekeystore",{"_index":238,"name":{},"parent":{"246":{},"247":{},"248":{},"249":{},"250":{},"251":{},"252":{},"253":{},"254":{},"255":{},"256":{},"257":{},"258":{},"259":{},"260":{},"261":{},"262":{},"263":{},"264":{},"265":{},"266":{},"267":{},"268":{},"269":{},"270":{}}}],["store.mutablepgpkeystore",{"_index":211,"name":{},"parent":{"219":{},"220":{},"221":{},"222":{},"223":{},"224":{},"225":{},"226":{},"227":{},"228":{},"229":{},"230":{},"231":{},"232":{},"233":{},"234":{},"235":{},"236":{},"237":{},"238":{},"239":{},"240":{},"241":{},"242":{},"243":{},"244":{}}}],["stringtovalue",{"_index":628,"name":{"758":{}},"parent":{}}],["strip0x",{"_index":604,"name":{"730":{}},"parent":{}}],["stub",{"_index":657,"name":{"809":{},"816":{},"822":{},"829":{},"833":{},"839":{}},"parent":{"810":{},"817":{},"823":{},"825":{},"827":{},"830":{},"834":{},"840":{}}}],["stub.activatedroutestub",{"_index":659,"name":{},"parent":{"811":{},"812":{},"813":{},"814":{}}}],["stub.footerstubcomponent",{"_index":679,"name":{},"parent":{"828":{}}}],["stub.routerlinkdirectivestub",{"_index":668,"name":{},"parent":{"818":{},"819":{},"820":{},"821":{}}}],["stub.sidebarstubcomponent",{"_index":675,"name":{},"parent":{"824":{}}}],["stub.tokenservicestub",{"_index":683,"name":{},"parent":{"831":{},"832":{}}}],["stub.topbarstubcomponent",{"_index":677,"name":{},"parent":{"826":{}}}],["stub.transactionservicestub",{"_index":687,"name":{},"parent":{"835":{},"836":{},"837":{},"838":{}}}],["stub.userservicestub",{"_index":690,"name":{},"parent":{"841":{},"842":{},"843":{},"844":{},"845":{},"846":{},"847":{}}}],["subject",{"_index":660,"name":{"812":{}},"parent":{}}],["submitted",{"_index":398,"name":{"457":{},"500":{},"563":{},"607":{}},"parent":{}}],["success",{"_index":188,"name":{"193":{}},"parent":{}}],["sum",{"_index":28,"name":{"29":{}},"parent":{"30":{}}}],["supply",{"_index":166,"name":{"167":{}},"parent":{}}],["switchwindows",{"_index":403,"name":{"464":{}},"parent":{}}],["symbol",{"_index":164,"name":{"165":{},"189":{}},"parent":{}}],["sync.service",{"_index":272,"name":{"322":{}},"parent":{"323":{}}}],["sync.service.blocksyncservice",{"_index":274,"name":{},"parent":{"324":{},"325":{},"326":{},"327":{},"328":{},"329":{},"330":{},"331":{},"332":{}}}],["tag",{"_index":159,"name":{"160":{}},"parent":{}}],["tel",{"_index":118,"name":{"112":{}},"parent":{}}],["test",{"_index":654,"name":{"808":{}},"parent":{}}],["testing",{"_index":663,"name":{"815":{}},"parent":{"901":{},"902":{},"903":{},"904":{},"905":{},"906":{},"907":{},"908":{}}}],["testing/activated",{"_index":655,"name":{"809":{}},"parent":{"810":{},"811":{},"812":{},"813":{},"814":{}}}],["testing/router",{"_index":664,"name":{"816":{}},"parent":{"817":{},"818":{},"819":{},"820":{},"821":{}}}],["testing/shared",{"_index":672,"name":{"822":{}},"parent":{"823":{},"824":{},"825":{},"826":{},"827":{},"828":{}}}],["testing/token",{"_index":680,"name":{"829":{}},"parent":{"830":{},"831":{},"832":{}}}],["testing/transaction",{"_index":685,"name":{"833":{}},"parent":{"834":{},"835":{},"836":{},"837":{},"838":{}}}],["testing/user",{"_index":688,"name":{"839":{}},"parent":{"840":{},"841":{},"842":{},"843":{},"844":{},"845":{},"846":{},"847":{}}}],["timestamp",{"_index":189,"name":{"194":{}},"parent":{}}],["title",{"_index":376,"name":{"433":{}},"parent":{}}],["to",{"_index":196,"name":{"201":{},"739":{}},"parent":{}}],["toggle.directive",{"_index":386,"name":{"444":{},"696":{}},"parent":{"445":{},"697":{}}}],["toggle.directive.menutoggledirective",{"_index":574,"name":{},"parent":{"698":{},"699":{}}}],["toggle.directive.passwordtoggledirective",{"_index":388,"name":{},"parent":{"446":{},"447":{},"448":{},"449":{}}}],["toggledisplay",{"_index":404,"name":{"465":{}},"parent":{}}],["togglepasswordvisibility",{"_index":390,"name":{"449":{}},"parent":{}}],["tohex",{"_index":603,"name":{"729":{}},"parent":{}}],["token",{"_index":162,"name":{"163":{},"203":{},"634":{},"881":{}},"parent":{}}],["tokendetailscomponent",{"_index":531,"name":{"632":{}},"parent":{}}],["tokenratiopipe",{"_index":582,"name":{"705":{}},"parent":{}}],["tokenregistry",{"_index":14,"name":{"12":{},"371":{},"849":{}},"parent":{}}],["tokens",{"_index":540,"name":{"646":{}},"parent":{}}],["tokenscomponent",{"_index":537,"name":{"640":{}},"parent":{}}],["tokenservice",{"_index":317,"name":{"368":{},"895":{}},"parent":{}}],["tokenservicestub",{"_index":682,"name":{"830":{},"907":{}},"parent":{}}],["tokensmodule",{"_index":543,"name":{"652":{}},"parent":{}}],["tokensroutingmodule",{"_index":534,"name":{"637":{}},"parent":{}}],["topbarcomponent",{"_index":599,"name":{"724":{}},"parent":{}}],["topbarstubcomponent",{"_index":676,"name":{"825":{},"904":{}},"parent":{}}],["totalaccounts",{"_index":10,"name":{"9":{}},"parent":{}}],["totaltokens",{"_index":18,"name":{"19":{}},"parent":{}}],["tovalue",{"_index":204,"name":{"212":{},"760":{}},"parent":{}}],["trader",{"_index":205,"name":{"213":{}},"parent":{}}],["traderbloxberglink",{"_index":551,"name":{"660":{}},"parent":{}}],["transaction",{"_index":192,"name":{"197":{},"493":{},"657":{},"678":{},"871":{}},"parent":{}}],["transactiondatasource",{"_index":562,"name":{"673":{}},"parent":{}}],["transactiondetailscomponent",{"_index":547,"name":{"655":{}},"parent":{}}],["transactiondisplayedcolumns",{"_index":563,"name":{"674":{}},"parent":{}}],["transactionlist",{"_index":327,"name":{"380":{}},"parent":{}}],["transactions",{"_index":326,"name":{"379":{},"494":{},"677":{}},"parent":{}}],["transactionscomponent",{"_index":560,"name":{"671":{}},"parent":{}}],["transactionsdatasource",{"_index":413,"name":{"472":{}},"parent":{}}],["transactionsdefaultpagesize",{"_index":415,"name":{"474":{}},"parent":{}}],["transactionsdisplayedcolumns",{"_index":414,"name":{"473":{}},"parent":{}}],["transactionservice",{"_index":324,"name":{"377":{},"893":{}},"parent":{}}],["transactionservicestub",{"_index":686,"name":{"834":{},"908":{}},"parent":{}}],["transactionsmodule",{"_index":566,"name":{"690":{}},"parent":{}}],["transactionspagesizeoptions",{"_index":416,"name":{"475":{}},"parent":{}}],["transactionsroutingmodule",{"_index":557,"name":{"668":{}},"parent":{}}],["transactionssubject",{"_index":328,"name":{"381":{}},"parent":{}}],["transactionstype",{"_index":433,"name":{"495":{},"679":{}},"parent":{}}],["transactionstypes",{"_index":435,"name":{"497":{},"680":{}},"parent":{}}],["transactiontablepaginator",{"_index":417,"name":{"476":{}},"parent":{}}],["transactiontablesort",{"_index":418,"name":{"477":{}},"parent":{}}],["transferrequest",{"_index":337,"name":{"392":{}},"parent":{}}],["transform",{"_index":579,"name":{"703":{},"707":{}},"parent":{}}],["trusteddeclaratoraddress",{"_index":645,"name":{"775":{},"790":{},"805":{}},"parent":{}}],["trustedusers",{"_index":525,"name":{"621":{}},"parent":{}}],["tx",{"_index":185,"name":{"190":{},"204":{},"215":{},"734":{},"870":{},"900":{}},"parent":{}}],["txhash",{"_index":190,"name":{"195":{}},"parent":{}}],["txhelper",{"_index":152,"name":{"150":{}},"parent":{}}],["txindex",{"_index":191,"name":{"196":{}},"parent":{}}],["txtoken",{"_index":183,"name":{"185":{},"869":{}},"parent":{}}],["type",{"_index":98,"name":{"90":{},"206":{}},"parent":{}}],["updatemeta",{"_index":352,"name":{"410":{}},"parent":{}}],["url",{"_index":509,"name":{"599":{}},"parent":{}}],["useclass",{"_index":73,"name":{"65":{}},"parent":{}}],["user",{"_index":137,"name":{"131":{},"214":{}},"parent":{}}],["userdatasource",{"_index":419,"name":{"478":{}},"parent":{}}],["userdisplayedcolumns",{"_index":420,"name":{"479":{}},"parent":{}}],["userid",{"_index":160,"name":{"161":{}},"parent":{}}],["userinfo",{"_index":329,"name":{"382":{}},"parent":{}}],["users",{"_index":691,"name":{"842":{}},"parent":{}}],["usersdefaultpagesize",{"_index":421,"name":{"480":{}},"parent":{}}],["userservice",{"_index":339,"name":{"394":{},"894":{}},"parent":{}}],["userservicestub",{"_index":689,"name":{"840":{},"906":{}},"parent":{}}],["userspagesizeoptions",{"_index":422,"name":{"481":{}},"parent":{}}],["usertablepaginator",{"_index":423,"name":{"482":{}},"parent":{}}],["usertablesort",{"_index":424,"name":{"483":{}},"parent":{}}],["v",{"_index":612,"name":{"742":{}},"parent":{}}],["validation",{"_index":78,"name":{"69":{}},"parent":{"70":{},"71":{}}}],["value",{"_index":198,"name":{"205":{},"740":{}},"parent":{}}],["vcard",{"_index":114,"name":{"107":{}},"parent":{}}],["vcardvalidation",{"_index":80,"name":{"71":{},"864":{}},"parent":{}}],["verify",{"_index":249,"name":{"285":{},"301":{}},"parent":{}}],["version",{"_index":119,"name":{"113":{}},"parent":{}}],["viewaccount",{"_index":441,"name":{"506":{},"551":{}},"parent":{}}],["viewrecipient",{"_index":553,"name":{"663":{}},"parent":{}}],["viewsender",{"_index":552,"name":{"662":{}},"parent":{}}],["viewtoken",{"_index":541,"name":{"649":{}},"parent":{}}],["viewtrader",{"_index":554,"name":{"664":{}},"parent":{}}],["viewtransaction",{"_index":440,"name":{"505":{},"684":{}},"parent":{}}],["w3",{"_index":150,"name":{"147":{},"151":{},"874":{}},"parent":{}}],["web3",{"_index":312,"name":{"362":{},"383":{}},"parent":{}}],["web3provider",{"_index":642,"name":{"772":{},"787":{},"802":{}},"parent":{}}],["weight",{"_index":171,"name":{"173":{}},"parent":{}}],["wrap",{"_index":358,"name":{"416":{}},"parent":{}}],["write",{"_index":621,"name":{"751":{}},"parent":{}}]],"pipeline":[]}} \ No newline at end of file diff --git a/docs/typedoc/classes/app__helpers_custom_error_state_matcher.customerrorstatematcher.html b/docs/typedoc/classes/app__helpers_custom_error_state_matcher.customerrorstatematcher.html index dc442c1..09f6b81 100644 --- a/docs/typedoc/classes/app__helpers_custom_error_state_matcher.customerrorstatematcher.html +++ b/docs/typedoc/classes/app__helpers_custom_error_state_matcher.customerrorstatematcher.html @@ -68,6 +68,18 @@
    +
    +
    +
    +

    Custom provider that defines how form controls behave with regards to displaying error messages.

    +
    +
    +
    implements
    +

    ErrorStateMatcher

    +
    +
    +
    +

    Hierarchy

      @@ -131,19 +143,31 @@ +
      +
      +

      Checks whether an invalid input has been made and an error should be made.

      +
      +

      Parameters

      • control: FormControl
        +
        +

        Tracks the value and validation status of an individual form control.

        +
      • form: FormGroupDirective | NgForm
        +
        +

        Binding of an existing FormGroup to a DOM element.

        +

      Returns boolean

      +

      true - If an invalid input has been made to the form control.

    diff --git a/docs/typedoc/classes/app__helpers_custom_validator.customvalidator.html b/docs/typedoc/classes/app__helpers_custom_validator.customvalidator.html index 6ff6ea9..e6c5f11 100644 --- a/docs/typedoc/classes/app__helpers_custom_validator.customvalidator.html +++ b/docs/typedoc/classes/app__helpers_custom_validator.customvalidator.html @@ -68,6 +68,13 @@
    +
    +
    +
    +

    Provides methods to perform custom validation to form inputs.

    +
    +
    +

    Hierarchy

      @@ -125,13 +132,21 @@
    • +
      +
      +

      Sets errors to the confirm password input field if it does not match with the value in the password input field.

      +
      +

      Parameters

      • control: AbstractControl
        +
        +

        The control object of the form being validated.

        +

      Returns void

      @@ -148,19 +163,31 @@
    • +
      +
      +

      Sets errors to a form field if it does not match with the regular expression given.

      +
      +

      Parameters

      • regex: RegExp
        +
        +

        The regular expression to match with the form field.

        +
      • error: ValidationErrors
        +
        +

        Defines the map of errors to return from failed validation checks.

        +

      Returns ValidationErrors

      +

      The map of errors returned from failed validation checks.

    diff --git a/docs/typedoc/classes/app__helpers_global_error_handler.globalerrorhandler.html b/docs/typedoc/classes/app__helpers_global_error_handler.globalerrorhandler.html index 1518749..5eed410 100644 --- a/docs/typedoc/classes/app__helpers_global_error_handler.globalerrorhandler.html +++ b/docs/typedoc/classes/app__helpers_global_error_handler.globalerrorhandler.html @@ -68,6 +68,13 @@
    +
    +
    +
    +

    Provides a hook for centralized exception handling.

    +
    +
    +

    Hierarchy

      @@ -121,16 +128,27 @@ +
      +
      +

      Initialization of the Global Error Handler.

      +
      +

      Parameters

      • loggingService: LoggingService
        +
        +

        A service that provides logging capabilities.

        +
      • router: Router
        +
        +

        A service that provides navigation among views and URL manipulation capabilities.

        +

      Returns GlobalErrorHandler

      @@ -146,9 +164,14 @@
      sentencesForWarningLogging: string[] = []
      +
      +
      +

      An array of sentence sections that denote warnings.

      +
      +
    @@ -164,13 +187,21 @@ +
    +
    +

    Handles different types of errors.

    +
    +

    Parameters

    • error: Error
      +
      +

      An error objects thrown when a runtime errors occurs.

      +

    Returns void

    @@ -187,16 +218,25 @@
  • +
    +
    +

    Checks if an error is of type warning.

    +
    +

    Parameters

    • errorTraceString: string
      +
      +

      A description of the error and it's stack trace.

      +

    Returns boolean

    +

    true - If the error is of type warning.

  • @@ -210,13 +250,21 @@
  • +
    +
    +

    Write appropriate logs according to the type of error.

    +
    +

    Parameters

    • error: any
      +
      +

      An error objects thrown when a runtime errors occurs.

      +

    Returns void

    diff --git a/docs/typedoc/classes/app__helpers_global_error_handler.httperror.html b/docs/typedoc/classes/app__helpers_global_error_handler.httperror.html index 7e62f8f..801c8d6 100644 --- a/docs/typedoc/classes/app__helpers_global_error_handler.httperror.html +++ b/docs/typedoc/classes/app__helpers_global_error_handler.httperror.html @@ -68,6 +68,13 @@
    +
    +
    +
    +

    A generalized http response error.

    +
    +
    +

    Hierarchy

      @@ -124,16 +131,27 @@ +
      +
      +

      Initialize the HttpError class.

      +
      +

      Parameters

      • message: string
        +
        +

        The message given by the error.

        +
      • status: number
        +
        +

        The status code given by the error.

        +

      Returns HttpError

      @@ -182,9 +200,14 @@
      status: number
      +
      +
      +

      The error's status code.

      +
      +
    diff --git a/docs/typedoc/classes/app__helpers_mock_backend.mockbackendinterceptor.html b/docs/typedoc/classes/app__helpers_mock_backend.mockbackendinterceptor.html index edd37be..d4cb6de 100644 --- a/docs/typedoc/classes/app__helpers_mock_backend.mockbackendinterceptor.html +++ b/docs/typedoc/classes/app__helpers_mock_backend.mockbackendinterceptor.html @@ -68,6 +68,19 @@
    +
    +
    +
    +

    Intercepts HTTP requests and handles some specified requests internally. + Provides a backend that can handle requests for certain data items.

    +
    +
    +
    implements
    +

    HttpInterceptor

    +
    +
    +
    +

    Hierarchy

      @@ -131,19 +144,31 @@ +
      +
      +

      Intercepts HTTP requests.

      +
      +

      Parameters

      • request: HttpRequest<any>
        +
        +

        An outgoing HTTP request with an optional typed body.

        +
      • next: HttpHandler
        +
        +

        The next HTTP handler or the outgoing request dispatcher.

        +

      Returns Observable<HttpEvent<any>>

      +

      The response from the resolved request.

    diff --git a/docs/typedoc/modules/app__helpers_array_sum.html b/docs/typedoc/modules/app__helpers_array_sum.html index c4cd5f4..664e2a4 100644 --- a/docs/typedoc/modules/app__helpers_array_sum.html +++ b/docs/typedoc/modules/app__helpers_array_sum.html @@ -90,16 +90,32 @@
  • +
    +
    +

    Returns the sum of all values in an array.

    +
    +
    +
    example
    +

    Prints 6 for the array [1, 2, 3]:

    +
    console.log(arraySum([1, 2, 3]));
    +
    +
    +
    +

    Parameters

    • arr: number[]
      +
      +

      An array of numbers.

      +

    Returns number

    +

    The sum of all values in the array.

  • diff --git a/docs/typedoc/modules/app__helpers_clipboard_copy.html b/docs/typedoc/modules/app__helpers_clipboard_copy.html index 9de983b..4f20248 100644 --- a/docs/typedoc/modules/app__helpers_clipboard_copy.html +++ b/docs/typedoc/modules/app__helpers_clipboard_copy.html @@ -90,16 +90,32 @@
  • +
    +
    +

    Copies set text to clipboard.

    +
    +
    +
    example
    +

    copies 'Hello World!' to the clipboard and prints "true":

    +
    console.log(copyToClipboard('Hello World!'));
    +
    +
    +
    +

    Parameters

    • text: any
      +
      +

      The text to be copied to the clipboard.

      +

    Returns boolean

    +

    true - If the copy operation is successful.

  • diff --git a/docs/typedoc/modules/app__helpers_export_csv.html b/docs/typedoc/modules/app__helpers_export_csv.html index 4529d68..a7fbe5c 100644 --- a/docs/typedoc/modules/app__helpers_export_csv.html +++ b/docs/typedoc/modules/app__helpers_export_csv.html @@ -90,19 +90,34 @@
  • +
    +
    +

    Exports data to a CSV format and provides a download file.

    +
    +

    Parameters

    • arrayData: any[]
      +
      +

      An array of data to be converted to CSV format.

      +
    • filename: string
      +
      +

      The name of the file to be downloaded.

      +
    • delimiter: string = ','
      +
      +

      The delimiter to be used when converting to CSV format. + Defaults to commas.

      +

    Returns void

    diff --git a/docs/typedoc/modules/app__helpers_http_getter.html b/docs/typedoc/modules/app__helpers_http_getter.html index c440863..b768dbe 100644 --- a/docs/typedoc/modules/app__helpers_http_getter.html +++ b/docs/typedoc/modules/app__helpers_http_getter.html @@ -90,9 +90,14 @@
  • +
    +
    +

    Provides an avenue of fetching resources via HTTP calls.

    +
    +

    Returns void

  • diff --git a/docs/typedoc/modules/app__helpers_mock_backend.html b/docs/typedoc/modules/app__helpers_mock_backend.html index ef88458..b22ad98 100644 --- a/docs/typedoc/modules/app__helpers_mock_backend.html +++ b/docs/typedoc/modules/app__helpers_mock_backend.html @@ -92,9 +92,18 @@
    MockBackendProvider: { multi: boolean; provide: InjectionToken<HttpInterceptor[]>; useClass: typeof MockBackendInterceptor } = ...
    +
    +
    +

    Exports the MockBackendInterceptor as an Angular provider.

    +
    +
    +
    exports
    +
    +
    +

    Type declaration

      diff --git a/docs/typedoc/modules/app__helpers_read_csv.html b/docs/typedoc/modules/app__helpers_read_csv.html index 1903899..60e3bd1 100644 --- a/docs/typedoc/modules/app__helpers_read_csv.html +++ b/docs/typedoc/modules/app__helpers_read_csv.html @@ -90,16 +90,25 @@
    • +
      +
      +

      Reads a csv file and converts it to an array.

      +
      +

      Parameters

      • input: any
        +
        +

        The file to be read.

        +

      Returns any[] | void

      +

      An array of the read data.

    diff --git a/docs/typedoc/modules/app__helpers_schema_validation.html b/docs/typedoc/modules/app__helpers_schema_validation.html index b353ef3..8d12139 100644 --- a/docs/typedoc/modules/app__helpers_schema_validation.html +++ b/docs/typedoc/modules/app__helpers_schema_validation.html @@ -91,13 +91,21 @@
  • +
    +
    +

    Validates a person object against the defined Person schema.

    +
    +

    Parameters

    • person: any
      +
      +

      A person object to be validated.

      +

    Returns Promise<void>

    @@ -114,13 +122,21 @@
  • +
    +
    +

    Validates a vcard object against the defined Vcard schema.

    +
    +

    Parameters

    • vcard: any
      +
      +

      A vcard object to be validated.

      +

    Returns Promise<void>

    diff --git a/src/app/_helpers/array-sum.ts b/src/app/_helpers/array-sum.ts index 67cf305..ba94510 100644 --- a/src/app/_helpers/array-sum.ts +++ b/src/app/_helpers/array-sum.ts @@ -1,7 +1,20 @@ +/** + * Returns the sum of all values in an array. + * + * @example + * Prints 6 for the array [1, 2, 3]: + * ```typescript + * console.log(arraySum([1, 2, 3])); + * ``` + * + * @param arr - An array of numbers. + * @return The sum of all values in the array. + */ function arraySum(arr: Array): number { return arr.reduce((accumulator, current) => accumulator + current, 0); } +/** @exports */ export { arraySum }; diff --git a/src/app/_helpers/clipboard-copy.ts b/src/app/_helpers/clipboard-copy.ts index 59d9f18..3ecf21c 100644 --- a/src/app/_helpers/clipboard-copy.ts +++ b/src/app/_helpers/clipboard-copy.ts @@ -1,3 +1,15 @@ +/** + * Copies set text to clipboard. + * + * @example + * copies 'Hello World!' to the clipboard and prints "true": + * ```typescript + * console.log(copyToClipboard('Hello World!')); + * ``` + * + * @param text - The text to be copied to the clipboard. + * @returns true - If the copy operation is successful. + */ function copyToClipboard(text: any): boolean { // create our hidden div element const hiddenCopy: HTMLDivElement = document.createElement('div'); @@ -48,6 +60,7 @@ function copyToClipboard(text: any): boolean { return true; } +/** @exports */ export { copyToClipboard }; diff --git a/src/app/_helpers/custom-error-state-matcher.spec.ts b/src/app/_helpers/custom-error-state-matcher.spec.ts index 2395c25..e6a5c81 100644 --- a/src/app/_helpers/custom-error-state-matcher.spec.ts +++ b/src/app/_helpers/custom-error-state-matcher.spec.ts @@ -1,3 +1,4 @@ +// Application imports import { CustomErrorStateMatcher } from '@app/_helpers/custom-error-state-matcher'; describe('CustomErrorStateMatcher', () => { diff --git a/src/app/_helpers/custom-error-state-matcher.ts b/src/app/_helpers/custom-error-state-matcher.ts index b33c367..8bb94ee 100644 --- a/src/app/_helpers/custom-error-state-matcher.ts +++ b/src/app/_helpers/custom-error-state-matcher.ts @@ -1,7 +1,20 @@ -import {ErrorStateMatcher} from '@angular/material/core'; +// Core imports import {FormControl, FormGroupDirective, NgForm} from '@angular/forms'; +import {ErrorStateMatcher} from '@angular/material/core'; +/** + * Custom provider that defines how form controls behave with regards to displaying error messages. + * + * @implements ErrorStateMatcher + */ export class CustomErrorStateMatcher implements ErrorStateMatcher{ + /** + * Checks whether an invalid input has been made and an error should be made. + * + * @param control - Tracks the value and validation status of an individual form control. + * @param form - Binding of an existing FormGroup to a DOM element. + * @returns true - If an invalid input has been made to the form control. + */ isErrorState(control: FormControl | null, form: FormGroupDirective | NgForm | null): boolean { const isSubmitted: boolean = form && form.submitted; return !!(control && control.invalid && (control.dirty || control.touched || isSubmitted)); diff --git a/src/app/_helpers/custom.validator.spec.ts b/src/app/_helpers/custom.validator.spec.ts index fcddcc1..35ba1b8 100644 --- a/src/app/_helpers/custom.validator.spec.ts +++ b/src/app/_helpers/custom.validator.spec.ts @@ -1,3 +1,4 @@ +// Application imports import { CustomValidator } from '@app/_helpers/custom.validator'; describe('Custom.Validator', () => { diff --git a/src/app/_helpers/custom.validator.ts b/src/app/_helpers/custom.validator.ts index a5a3b59..c4ac62e 100644 --- a/src/app/_helpers/custom.validator.ts +++ b/src/app/_helpers/custom.validator.ts @@ -1,6 +1,15 @@ +// Core imports import {AbstractControl, ValidationErrors} from '@angular/forms'; +/** + * Provides methods to perform custom validation to form inputs. + */ export class CustomValidator { + /** + * Sets errors to the confirm password input field if it does not match with the value in the password input field. + * + * @param control - The control object of the form being validated. + */ static passwordMatchValidator(control: AbstractControl): void { const password: string = control.get('password').value; const confirmPassword: string = control.get('confirmPassword').value; @@ -9,6 +18,13 @@ export class CustomValidator { } } + /** + * Sets errors to a form field if it does not match with the regular expression given. + * + * @param regex - The regular expression to match with the form field. + * @param error - Defines the map of errors to return from failed validation checks. + * @returns The map of errors returned from failed validation checks. + */ static patternValidator(regex: RegExp, error: ValidationErrors): ValidationErrors | null { return (control: AbstractControl): { [key: string]: any } => { if (!control.value) { diff --git a/src/app/_helpers/export-csv.ts b/src/app/_helpers/export-csv.ts index 46b5262..ceb84d3 100644 --- a/src/app/_helpers/export-csv.ts +++ b/src/app/_helpers/export-csv.ts @@ -1,3 +1,11 @@ +/** + * Exports data to a CSV format and provides a download file. + * + * @param arrayData - An array of data to be converted to CSV format. + * @param filename - The name of the file to be downloaded. + * @param delimiter - The delimiter to be used when converting to CSV format. + * Defaults to commas. + */ function exportCsv(arrayData: Array, filename: string, delimiter: string = ','): void { if (arrayData === undefined || arrayData.length === 0) { alert('No data to be exported!'); @@ -26,13 +34,7 @@ function exportCsv(arrayData: Array, filename: string, delimiter: string = downloadLink.click(); } -function removeSpecialChar(str: string): string { - if (str === null || str === '') { - return ''; - } - return str.replace(/[^a-zA-Z0-9 ]/g, ''); -} - +/** @exports */ export { exportCsv }; diff --git a/src/app/_helpers/global-error-handler.spec.ts b/src/app/_helpers/global-error-handler.spec.ts index 33ec288..e1faac6 100644 --- a/src/app/_helpers/global-error-handler.spec.ts +++ b/src/app/_helpers/global-error-handler.spec.ts @@ -1,4 +1,5 @@ -import { GlobalErrorHandler } from './global-error-handler'; +// Application imports +import { GlobalErrorHandler } from '@app/_helpers/global-error-handler'; describe('GlobalErrorHandler', () => { it('should create an instance', () => { diff --git a/src/app/_helpers/global-error-handler.ts b/src/app/_helpers/global-error-handler.ts index fd708b2..552a8e5 100644 --- a/src/app/_helpers/global-error-handler.ts +++ b/src/app/_helpers/global-error-handler.ts @@ -1,11 +1,26 @@ -import {ErrorHandler, Injectable} from '@angular/core'; -import {LoggingService} from '@app/_services/logging.service'; +// Core imports import {HttpErrorResponse} from '@angular/common/http'; +import {ErrorHandler, Injectable} from '@angular/core'; import {Router} from '@angular/router'; -// A generalized http response error +// Application imports +import {LoggingService} from '@app/_services/logging.service'; + +/** + * A generalized http response error. + * + * @extends Error + */ export class HttpError extends Error { + /** The error's status code. */ public status: number; + + /** + * Initialize the HttpError class. + * + * @param message - The message given by the error. + * @param status - The status code given by the error. + */ constructor(message: string, status: number) { super(message); this.status = status; @@ -13,10 +28,25 @@ export class HttpError extends Error { } } +/** + * Provides a hook for centralized exception handling. + * + * @extends ErrorHandler + */ @Injectable() export class GlobalErrorHandler extends ErrorHandler { + /** + * An array of sentence sections that denote warnings. + * @private + */ private sentencesForWarningLogging: Array = []; + /** + * Initialization of the Global Error Handler. + * + * @param loggingService - A service that provides logging capabilities. + * @param router - A service that provides navigation among views and URL manipulation capabilities. + */ constructor( private loggingService: LoggingService, private router: Router @@ -24,6 +54,11 @@ export class GlobalErrorHandler extends ErrorHandler { super(); } + /** + * Handles different types of errors. + * + * @param error - An error objects thrown when a runtime errors occurs. + */ handleError(error: Error): void { this.logError(error); const message: string = error.message ? error.message : error.toString(); @@ -44,21 +79,13 @@ export class GlobalErrorHandler extends ErrorHandler { throw error; } - logError(error: any): void { - const route: string = this.router.url; - if (error instanceof HttpErrorResponse) { - this.loggingService.sendErrorLevelMessage( - `There was an HTTP error on route ${route}.\n${error.message}.\nStatus code: ${(error as HttpErrorResponse).status}`, - this, {error}); - } else if (error instanceof TypeError) { - this.loggingService.sendErrorLevelMessage(`There was a Type error on route ${route}.\n${error.message}`, this, {error}); - } else if (error instanceof Error) { - this.loggingService.sendErrorLevelMessage(`There was a general error on route ${route}.\n${error.message}`, this, {error}); - } else { - this.loggingService.sendErrorLevelMessage(`Nobody threw an error but something happened on route ${route}!`, this, {error}); - } - } - + /** + * Checks if an error is of type warning. + * + * @param errorTraceString - A description of the error and it's stack trace. + * @returns true - If the error is of type warning. + * @private + */ private isWarning(errorTraceString: string): boolean { let isWarning: boolean = true; if (errorTraceString.includes('/src/app/')) { @@ -73,4 +100,24 @@ export class GlobalErrorHandler extends ErrorHandler { return isWarning; } + + /** + * Write appropriate logs according to the type of error. + * + * @param error - An error objects thrown when a runtime errors occurs. + */ + logError(error: any): void { + const route: string = this.router.url; + if (error instanceof HttpErrorResponse) { + this.loggingService.sendErrorLevelMessage( + `There was an HTTP error on route ${route}.\n${error.message}.\nStatus code: ${(error as HttpErrorResponse).status}`, + this, {error}); + } else if (error instanceof TypeError) { + this.loggingService.sendErrorLevelMessage(`There was a Type error on route ${route}.\n${error.message}`, this, {error}); + } else if (error instanceof Error) { + this.loggingService.sendErrorLevelMessage(`There was a general error on route ${route}.\n${error.message}`, this, {error}); + } else { + this.loggingService.sendErrorLevelMessage(`Nobody threw an error but something happened on route ${route}!`, this, {error}); + } + } } diff --git a/src/app/_helpers/http-getter.ts b/src/app/_helpers/http-getter.ts index dd59444..47482db 100644 --- a/src/app/_helpers/http-getter.ts +++ b/src/app/_helpers/http-getter.ts @@ -1,6 +1,13 @@ +/** Provides an avenue of fetching resources via HTTP calls. */ function HttpGetter(): void {} -HttpGetter.prototype.get = filename => new Promise((resolve, reject) => { +/** + * Fetches files using HTTP get requests. + * + * @param filename - The filename to fetch. + * @returns The HTTP response text. + */ +HttpGetter.prototype.get = (filename: string) => new Promise((resolve, reject) => { const xhr: XMLHttpRequest = new XMLHttpRequest(); xhr.addEventListener('load', (e) => { if (xhr.status === 200) { @@ -13,6 +20,7 @@ HttpGetter.prototype.get = filename => new Promise((resolve, reject) => { xhr.send(); }); +/** @exports */ export { HttpGetter }; diff --git a/src/app/_helpers/index.ts b/src/app/_helpers/index.ts index 28fb61f..46ddbe2 100644 --- a/src/app/_helpers/index.ts +++ b/src/app/_helpers/index.ts @@ -1,10 +1,10 @@ +export * from '@app/_helpers/array-sum'; +export * from '@app/_helpers/clipboard-copy'; export * from '@app/_helpers/custom.validator'; export * from '@app/_helpers/custom-error-state-matcher'; -export * from '@app/_helpers/mock-backend'; -export * from '@app/_helpers/array-sum'; -export * from '@app/_helpers/http-getter'; -export * from '@app/_helpers/global-error-handler'; export * from '@app/_helpers/export-csv'; +export * from '@app/_helpers/global-error-handler'; +export * from '@app/_helpers/http-getter'; +export * from '@app/_helpers/mock-backend'; export * from '@app/_helpers/read-csv'; -export * from '@app/_helpers/clipboard-copy'; export * from '@app/_helpers/schema-validation'; diff --git a/src/app/_helpers/mock-backend.ts b/src/app/_helpers/mock-backend.ts index c1a1c25..1c7788a 100644 --- a/src/app/_helpers/mock-backend.ts +++ b/src/app/_helpers/mock-backend.ts @@ -1,9 +1,18 @@ +// Core imports import {HTTP_INTERCEPTORS, HttpEvent, HttpHandler, HttpInterceptor, HttpRequest, HttpResponse} from '@angular/common/http'; import {Injectable} from '@angular/core'; + +// Third party imports import {Observable, of, throwError} from 'rxjs'; import {delay, dematerialize, materialize, mergeMap} from 'rxjs/operators'; + +// Application imports import {Action, AreaName, AreaType, Category, Token} from '@app/_models'; +/** A mock of the curated account types. */ +const accountTypes: Array = ['user', 'cashier', 'vendor', 'tokenagent', 'group']; + +/** A mock of actions made by the admin staff. */ const actions: Array = [ { id: 1, user: 'Tom', role: 'enroller', action: 'Disburse RSV 100', approval: false }, { id: 2, user: 'Christine', role: 'admin', action: 'Change user phone number', approval: true }, @@ -13,38 +22,93 @@ const actions: Array = [ { id: 6, user: 'Patience', role: 'enroller', action: 'Change user information', approval: false } ]; -const tokens: Array = [ +/** A mock of curated area names. */ +const areaNames: Array = [ { - name: 'Giftable Reserve', symbol: 'GRZ', address: '0xa686005CE37Dce7738436256982C3903f2E4ea8E', supply: '1000000001000000000000000000', - decimals: '18', reserves: {} + name: 'Mukuru Nairobi', + locations: ['kayaba', 'kayba', 'kambi', 'mukuru', 'masai', 'hazina', 'south', 'tetra', 'tetrapak', 'ruben', 'rueben', 'kingston', + 'korokocho', 'kingstone', 'kamongo', 'lungalunga', 'sinai', 'sigei', 'lungu', 'lunga lunga', 'owino road', 'seigei'] }, { - name: 'Demo Token', symbol: 'DEMO', address: '0xc80D6aFF8194114c52AEcD84c9f15fd5c8abb187', supply: '99999999999999998976', - decimals: '18', reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '99999999999999998976'}}, - reserveRatio: '1000000', owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a' + name: 'Kinango Kwale', + locations: ['amani', 'bofu', 'chibuga', 'chikomani', 'chilongoni', 'chigojoni', 'chinguluni', 'chigato', 'chigale', 'chikole', + 'chilongoni', 'chilumani', 'chigojoni', 'chikomani', 'chizini', 'chikomeni', 'chidzuvini', 'chidzivuni', 'chikuyu', 'chizingo', + 'doti', 'dzugwe', 'dzivani', 'dzovuni', 'hanje', 'kasemeni', 'katundani', 'kibandaogo', 'kibandaongo', 'kwale', 'kinango', + 'kidzuvini', 'kalalani', 'kafuduni', 'kaloleni', 'kilibole', 'lutsangani', 'peku', 'gona', 'guro', 'gandini', 'mkanyeni', 'myenzeni', + 'miyenzeni', 'miatsiani', 'mienzeni', 'mnyenzeni', 'minyenzeni', 'miyani', 'mioleni', 'makuluni', 'mariakani', 'makobeni', 'madewani', + 'mwangaraba', 'mwashanga', 'miloeni', 'mabesheni', 'mazeras', 'mazera', 'mlola', 'muugano', 'mulunguni', 'mabesheni', 'miatsani', + 'miatsiani', 'mwache', 'mwangani', 'mwehavikonje', 'miguneni', 'nzora', 'nzovuni', 'vikinduni', 'vikolani', 'vitangani', 'viogato', + 'vyogato', 'vistangani', 'yapha', 'yava', 'yowani', 'ziwani', 'majengo', 'matuga', 'vigungani', 'vidziweni', 'vinyunduni', 'ukunda', + 'kokotoni', 'mikindani'] }, { - name: 'Foo Token', symbol: 'FOO', address: '0x9ceD86089f7aBB5A97B40eb0E7521e7aa308d354', supply: '1000000000000000001014', - decimals: '18', reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '1000000000000000001014'}}, - reserveRatio: '1000000', owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a' + name: 'Misc Nairobi', + locations: ['nairobi', 'west', 'lindi', 'kibera', 'kibira', 'kibra', 'makina', 'soweto', 'olympic', 'kangemi', 'ruiru', 'congo', + 'kawangware', 'kwangware', 'donholm', 'dagoreti', 'dandora', 'kabete', 'sinai', 'donhom', 'donholm', 'huruma', 'kitengela', + 'makadara', ',mlolongo', 'kenyatta', 'mlolongo', 'tassia', 'tasia', 'gatina', '56', 'industrial', 'kariobangi', 'kasarani', 'kayole', + 'mathare', 'pipe', 'juja', 'uchumi', 'jogoo', 'umoja', 'thika', 'kikuyu', 'stadium', 'buru buru', 'ngong', 'starehe', 'mwiki', + 'fuata', 'kware', 'kabiro', 'embakassi', 'embakasi', 'kmoja', 'east', 'githurai', 'landi', 'langata', 'limuru', 'mathere', + 'dagoretti', 'kirembe', 'muugano', 'mwiki', 'toi market'] }, { - name: 'testb', symbol: 'tstb', address: '0xC63cFA91A3BFf41cE31Ff436f67D3ACBC977DB95', supply: '99000', decimals: '18', - reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '99000'}}, reserveRatio: '1000000', - owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a' + name: 'Misc Mombasa', + locations: ['mombasa', 'likoni', 'bangla', 'bangladesh', 'kizingo', 'old town', 'makupa', 'mvita', 'ngombeni', 'ngómbeni', 'ombeni', + 'magongo', 'miritini', 'changamwe', 'jomvu', 'ohuru', 'tudor', 'diani'] }, { - name: 'testa', symbol: 'tsta', address: '0x8fA4101ef19D0a078239d035659e92b278bD083C', supply: '9981', decimals: '18', - reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '9981'}}, reserveRatio: '1000000', - owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a' + name: 'Kisauni', + locations: ['bamburi', 'kisauni', 'mworoni', 'nyali', 'shanzu', 'bombolulu', 'mtopanga', 'mjambere', 'majaoni', 'manyani', 'magogoni', + 'junda', 'mwakirunge', 'mshomoroni'] }, { - name: 'testc', symbol: 'tstc', address: '0x4A6fA6bc3BfE4C9661bC692D9798425350C9e3D4', supply: '100990', decimals: '18', - reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '100990'}}, reserveRatio: '1000000', - owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a' + name: 'Kilifi', + locations: ['kilfi', 'kilifi', 'mtwapa', 'takaungu', 'makongeni', 'mnarani', 'mnarani', 'office', 'g.e', 'ge', 'raibai', 'ribe'] + }, + { + name: 'Kakuma', + locations: ['kakuma'] + }, + { + name: 'Kitui', + locations: ['kitui', 'mwingi'] + }, + { + name: 'Nyanza', + locations: ['busia', 'nyalgunga', 'mbita', 'siaya', 'kisumu', 'nyalenda', 'hawinga', 'rangala', 'uyoma', 'mumias', 'homabay', 'homaboy', + 'migori', 'kusumu'] + }, + { + name: 'Misc Rural Counties', + locations: ['makueni', 'meru', 'kisii', 'bomet', 'machakos', 'bungoma', 'eldoret', 'kakamega', 'kericho', 'kajiado', 'nandi', 'nyeri', + 'wote', 'kiambu', 'mwea', 'nakuru', 'narok'] + }, + { + name: 'other', + locations: ['other', 'none', 'unknown'] } ]; +/** A mock of curated area types. */ +const areaTypes: Array = [ + { + name: 'urban', + area: ['urban', 'nairobi', 'mombasa'] + }, + { + name: 'rural', + area: ['rural', 'kakuma', 'kwale', 'kinango', 'kitui', 'nyanza'] + }, + { + name: 'periurban', + area: ['kilifi', 'periurban'] + }, + { + name: 'other', + area: ['other'] + } +]; + +/** A mock of the user's business categories */ const categories: Array = [ { name: 'system', @@ -147,96 +211,60 @@ const categories: Array = [ } ]; -const areaNames: Array = [ - { - name: 'Mukuru Nairobi', - locations: ['kayaba', 'kayba', 'kambi', 'mukuru', 'masai', 'hazina', 'south', 'tetra', 'tetrapak', 'ruben', 'rueben', 'kingston', - 'korokocho', 'kingstone', 'kamongo', 'lungalunga', 'sinai', 'sigei', 'lungu', 'lunga lunga', 'owino road', 'seigei'] - }, - { - name: 'Kinango Kwale', - locations: ['amani', 'bofu', 'chibuga', 'chikomani', 'chilongoni', 'chigojoni', 'chinguluni', 'chigato', 'chigale', 'chikole', - 'chilongoni', 'chilumani', 'chigojoni', 'chikomani', 'chizini', 'chikomeni', 'chidzuvini', 'chidzivuni', 'chikuyu', 'chizingo', - 'doti', 'dzugwe', 'dzivani', 'dzovuni', 'hanje', 'kasemeni', 'katundani', 'kibandaogo', 'kibandaongo', 'kwale', 'kinango', - 'kidzuvini', 'kalalani', 'kafuduni', 'kaloleni', 'kilibole', 'lutsangani', 'peku', 'gona', 'guro', 'gandini', 'mkanyeni', 'myenzeni', - 'miyenzeni', 'miatsiani', 'mienzeni', 'mnyenzeni', 'minyenzeni', 'miyani', 'mioleni', 'makuluni', 'mariakani', 'makobeni', 'madewani', - 'mwangaraba', 'mwashanga', 'miloeni', 'mabesheni', 'mazeras', 'mazera', 'mlola', 'muugano', 'mulunguni', 'mabesheni', 'miatsani', - 'miatsiani', 'mwache', 'mwangani', 'mwehavikonje', 'miguneni', 'nzora', 'nzovuni', 'vikinduni', 'vikolani', 'vitangani', 'viogato', - 'vyogato', 'vistangani', 'yapha', 'yava', 'yowani', 'ziwani', 'majengo', 'matuga', 'vigungani', 'vidziweni', 'vinyunduni', 'ukunda', - 'kokotoni', 'mikindani'] - }, - { - name: 'Misc Nairobi', - locations: ['nairobi', 'west', 'lindi', 'kibera', 'kibira', 'kibra', 'makina', 'soweto', 'olympic', 'kangemi', 'ruiru', 'congo', - 'kawangware', 'kwangware', 'donholm', 'dagoreti', 'dandora', 'kabete', 'sinai', 'donhom', 'donholm', 'huruma', 'kitengela', - 'makadara', ',mlolongo', 'kenyatta', 'mlolongo', 'tassia', 'tasia', 'gatina', '56', 'industrial', 'kariobangi', 'kasarani', 'kayole', - 'mathare', 'pipe', 'juja', 'uchumi', 'jogoo', 'umoja', 'thika', 'kikuyu', 'stadium', 'buru buru', 'ngong', 'starehe', 'mwiki', - 'fuata', 'kware', 'kabiro', 'embakassi', 'embakasi', 'kmoja', 'east', 'githurai', 'landi', 'langata', 'limuru', 'mathere', - 'dagoretti', 'kirembe', 'muugano', 'mwiki', 'toi market'] - }, - { - name: 'Misc Mombasa', - locations: ['mombasa', 'likoni', 'bangla', 'bangladesh', 'kizingo', 'old town', 'makupa', 'mvita', 'ngombeni', 'ngómbeni', 'ombeni', - 'magongo', 'miritini', 'changamwe', 'jomvu', 'ohuru', 'tudor', 'diani'] - }, - { - name: 'Kisauni', - locations: ['bamburi', 'kisauni', 'mworoni', 'nyali', 'shanzu', 'bombolulu', 'mtopanga', 'mjambere', 'majaoni', 'manyani', 'magogoni', - 'junda', 'mwakirunge', 'mshomoroni'] - }, - { - name: 'Kilifi', - locations: ['kilfi', 'kilifi', 'mtwapa', 'takaungu', 'makongeni', 'mnarani', 'mnarani', 'office', 'g.e', 'ge', 'raibai', 'ribe'] - }, - { - name: 'Kakuma', - locations: ['kakuma'] - }, - { - name: 'Kitui', - locations: ['kitui', 'mwingi'] - }, - { - name: 'Nyanza', - locations: ['busia', 'nyalgunga', 'mbita', 'siaya', 'kisumu', 'nyalenda', 'hawinga', 'rangala', 'uyoma', 'mumias', 'homabay', 'homaboy', - 'migori', 'kusumu'] - }, - { - name: 'Misc Rural Counties', - locations: ['makueni', 'meru', 'kisii', 'bomet', 'machakos', 'bungoma', 'eldoret', 'kakamega', 'kericho', 'kajiado', 'nandi', 'nyeri', - 'wote', 'kiambu', 'mwea', 'nakuru', 'narok'] - }, - { - name: 'other', - locations: ['other', 'none', 'unknown'] - } -]; - -const areaTypes: Array = [ - { - name: 'urban', - area: ['urban', 'nairobi', 'mombasa'] - }, - { - name: 'rural', - area: ['rural', 'kakuma', 'kwale', 'kinango', 'kitui', 'nyanza'] - }, - { - name: 'periurban', - area: ['kilifi', 'periurban'] - }, - { - name: 'other', - area: ['other'] - } -]; - -const accountTypes: Array = ['user', 'cashier', 'vendor', 'tokenagent', 'group']; -const transactionTypes: Array = ['transactions', 'conversions', 'disbursements', 'rewards', 'reclamation']; +/** A mock of curated genders */ const genders: Array = ['male', 'female', 'other']; +/** A mock of the tokens in the system. */ +const tokens: Array = [ + { + name: 'Giftable Reserve', symbol: 'GRZ', address: '0xa686005CE37Dce7738436256982C3903f2E4ea8E', supply: '1000000001000000000000000000', + decimals: '18', reserves: {} + }, + { + name: 'Demo Token', symbol: 'DEMO', address: '0xc80D6aFF8194114c52AEcD84c9f15fd5c8abb187', supply: '99999999999999998976', + decimals: '18', reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '99999999999999998976'}}, + reserveRatio: '1000000', owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a' + }, + { + name: 'Foo Token', symbol: 'FOO', address: '0x9ceD86089f7aBB5A97B40eb0E7521e7aa308d354', supply: '1000000000000000001014', + decimals: '18', reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '1000000000000000001014'}}, + reserveRatio: '1000000', owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a' + }, + { + name: 'testb', symbol: 'tstb', address: '0xC63cFA91A3BFf41cE31Ff436f67D3ACBC977DB95', supply: '99000', decimals: '18', + reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '99000'}}, reserveRatio: '1000000', + owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a' + }, + { + name: 'testa', symbol: 'tsta', address: '0x8fA4101ef19D0a078239d035659e92b278bD083C', supply: '9981', decimals: '18', + reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '9981'}}, reserveRatio: '1000000', + owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a' + }, + { + name: 'testc', symbol: 'tstc', address: '0x4A6fA6bc3BfE4C9661bC692D9798425350C9e3D4', supply: '100990', decimals: '18', + reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '100990'}}, reserveRatio: '1000000', + owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a' + } +]; + +/** A mock of curated transaction types. */ +const transactionTypes: Array = ['transactions', 'conversions', 'disbursements', 'rewards', 'reclamation']; + +/** + * Intercepts HTTP requests and handles some specified requests internally. + * Provides a backend that can handle requests for certain data items. + * + * @implements HttpInterceptor + */ @Injectable() export class MockBackendInterceptor implements HttpInterceptor { + /** + * Intercepts HTTP requests. + * + * @param request - An outgoing HTTP request with an optional typed body. + * @param next - The next HTTP handler or the outgoing request dispatcher. + * @returns The response from the resolved request. + */ intercept(request: HttpRequest, next: HttpHandler): Observable> { const { url, method, headers, body } = request; @@ -248,22 +276,17 @@ export class MockBackendInterceptor implements HttpInterceptor { .pipe(delay(500)) .pipe(dematerialize()); + /** Forward requests from select routes to their internal handlers. */ function handleRoute(): Observable { switch (true) { + case url.endsWith('/accounttypes') && method === 'GET': + return getAccountTypes(); case url.endsWith('/actions') && method === 'GET': return getActions(); case url.match(/\/actions\/\d+$/) && method === 'GET': return getActionById(); case url.match(/\/actions\/\d+$/) && method === 'POST': return approveAction(); - case url.endsWith('/tokens') && method === 'GET': - return getTokens(); - case url.match(/\/tokens\/\w+$/) && method === 'GET': - return getTokenBySymbol(); - case url.endsWith('/categories') && method === 'GET': - return getCategories(); - case url.match(/\/categories\/\w+$/) && method === 'GET': - return getCategoryByProduct(); case url.endsWith('/areanames') && method === 'GET': return getAreaNames(); case url.match(/\/areanames\/\w+$/) && method === 'GET': @@ -272,12 +295,18 @@ export class MockBackendInterceptor implements HttpInterceptor { return getAreaTypes(); case url.match(/\/areatypes\/\w+$/) && method === 'GET': return getAreaTypeByArea(); - case url.endsWith('/accounttypes') && method === 'GET': - return getAccountTypes(); - case url.endsWith('/transactiontypes') && method === 'GET': - return getTransactionTypes(); + case url.endsWith('/categories') && method === 'GET': + return getCategories(); + case url.match(/\/categories\/\w+$/) && method === 'GET': + return getCategoryByProduct(); case url.endsWith('/genders') && method === 'GET': return getGenders(); + case url.endsWith('/tokens') && method === 'GET': + return getTokens(); + case url.match(/\/tokens\/\w+$/) && method === 'GET': + return getTokenBySymbol(); + case url.endsWith('/transactiontypes') && method === 'GET': + return getTransactionTypes(); default: // pass through any requests not handled above return next.handle(request); @@ -286,15 +315,6 @@ export class MockBackendInterceptor implements HttpInterceptor { // route functions - function getActions(): Observable> { - return ok(actions); - } - - function getActionById(): Observable> { - const queriedAction: Action = actions.find(action => action.id === idFromUrl()); - return ok(queriedAction); - } - function approveAction(): Observable> { const queriedAction: Action = actions.find(action => action.id === idFromUrl()); queriedAction.approval = body.approval; @@ -302,23 +322,17 @@ export class MockBackendInterceptor implements HttpInterceptor { return ok(message); } - function getTokens(): Observable> { - return ok(tokens); + function getAccountTypes(): Observable> { + return ok(accountTypes); } - function getTokenBySymbol(): Observable> { - const queriedToken: Token = tokens.find(token => token.symbol === stringFromUrl()); - return ok(queriedToken); + function getActions(): Observable> { + return ok(actions); } - function getCategories(): Observable> { - const categoryList: Array = categories.map(category => category.name); - return ok(categoryList); - } - - function getCategoryByProduct(): Observable> { - const queriedCategory: Category = categories.find(category => category.products.includes(stringFromUrl())); - return ok(queriedCategory.name); + function getActionById(): Observable> { + const queriedAction: Action = actions.find(action => action.id === idFromUrl()); + return ok(queriedAction); } function getAreaNames(): Observable> { @@ -341,24 +355,35 @@ export class MockBackendInterceptor implements HttpInterceptor { return ok(queriedAreaType.name); } - function getAccountTypes(): Observable> { - return ok(accountTypes); + function getCategories(): Observable> { + const categoryList: Array = categories.map(category => category.name); + return ok(categoryList); } - function getTransactionTypes(): Observable> { - return ok(transactionTypes); + function getCategoryByProduct(): Observable> { + const queriedCategory: Category = categories.find(category => category.products.includes(stringFromUrl())); + return ok(queriedCategory.name); } function getGenders(): Observable> { return ok(genders); } - // helper functions - - function ok(responseBody: any): Observable> { - return of(new HttpResponse({ status: 200, body: responseBody })); + function getTokens(): Observable> { + return ok(tokens); } + function getTokenBySymbol(): Observable> { + const queriedToken: Token = tokens.find(token => token.symbol === stringFromUrl()); + return ok(queriedToken); + } + + function getTransactionTypes(): Observable> { + return ok(transactionTypes); + } + + // helper functions + function error(message): Observable { return throwError({ status: 400, error: { message } }); } @@ -368,6 +393,10 @@ export class MockBackendInterceptor implements HttpInterceptor { return parseInt(urlParts[urlParts.length - 1], 10); } + function ok(responseBody: any): Observable> { + return of(new HttpResponse({ status: 200, body: responseBody })); + } + function stringFromUrl(): string { const urlParts: Array = url.split('/'); return urlParts[urlParts.length - 1]; @@ -375,6 +404,11 @@ export class MockBackendInterceptor implements HttpInterceptor { } } +/** + * Exports the MockBackendInterceptor as an Angular provider. + * + * @exports + */ export const MockBackendProvider = { provide: HTTP_INTERCEPTORS, useClass: MockBackendInterceptor, diff --git a/src/app/_helpers/read-csv.ts b/src/app/_helpers/read-csv.ts index 0e81715..09b0aa9 100644 --- a/src/app/_helpers/read-csv.ts +++ b/src/app/_helpers/read-csv.ts @@ -1,8 +1,15 @@ +/** An object defining the properties of the data read. */ const objCsv: { size: number, dataFile: any } = { size: 0, dataFile: [] }; +/** + * Reads a csv file and converts it to an array. + * + * @param input - The file to be read. + * @returns An array of the read data. + */ function readCsv(input: any): Array | void { if (input.files && input.files[0]) { const reader: FileReader = new FileReader(); @@ -15,6 +22,12 @@ function readCsv(input: any): Array | void { } } +/** + * Parses data to CSV format. + * + * @param data - The data to be parsed. + * @returns An array of the parsed data. + */ function parseData(data: any): Array { const csvData: Array = []; const lineBreak: Array = data.split('\n'); @@ -25,6 +38,7 @@ function parseData(data: any): Array { return csvData; } +/** @exports */ export { readCsv }; diff --git a/src/app/_helpers/schema-validation.ts b/src/app/_helpers/schema-validation.ts index 113202e..61c837e 100644 --- a/src/app/_helpers/schema-validation.ts +++ b/src/app/_helpers/schema-validation.ts @@ -1,5 +1,11 @@ +// Third party imports import { validatePerson, validateVcard } from 'cic-schemas-data-validator'; +/** + * Validates a person object against the defined Person schema. + * + * @param person - A person object to be validated. + */ async function personValidation(person: any): Promise { const personValidationErrors: any = await validatePerson(person); @@ -8,6 +14,11 @@ async function personValidation(person: any): Promise { } } +/** + * Validates a vcard object against the defined Vcard schema. + * + * @param vcard - A vcard object to be validated. + */ async function vcardValidation(vcard: any): Promise { const vcardValidationErrors: any = await validateVcard(vcard); @@ -16,6 +27,7 @@ async function vcardValidation(vcard: any): Promise { } } +/** @exports */ export { personValidation, vcardValidation,